
This PR implements the `Selectable` trait for `ButtonLike`, `Button`, and `IconButton`. Release Notes: - N/A
22 lines
524 B
Rust
22 lines
524 B
Rust
/// A trait for elements that can be selected.
|
|
pub trait Selectable {
|
|
/// Sets whether the element is selected.
|
|
fn selected(self, selected: bool) -> Self;
|
|
}
|
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Hash, Clone, Copy)]
|
|
pub enum Selection {
|
|
#[default]
|
|
Unselected,
|
|
Indeterminate,
|
|
Selected,
|
|
}
|
|
|
|
impl Selection {
|
|
pub fn inverse(&self) -> Self {
|
|
match self {
|
|
Self::Unselected | Self::Indeterminate => Self::Selected,
|
|
Self::Selected => Self::Unselected,
|
|
}
|
|
}
|
|
}
|