pub type MultiSelectModel<Item, Category> = Model<MultiSelect, Item, Category>;
Aliased Type§
struct MultiSelectModel<Item, Category> { /* private fields */ }
Implementations
Source§impl<Item: ItemInterface<Category>, Category: ItemCategory> Model<MultiSelect, Item, Category>
impl<Item: ItemInterface<Category>, Category: ItemCategory> Model<MultiSelect, Item, Category>
Source§impl<SelectionMode: Default, Item: ItemInterface<Category>, Category: ItemCategory> Model<SelectionMode, Item, Category>where
Self: Selectable,
impl<SelectionMode: Default, Item: ItemInterface<Category>, Category: ItemCategory> Model<SelectionMode, Item, Category>where
Self: Selectable,
pub fn new(categories: Vec<Category>) -> Self
pub fn categories(&mut self, cats: Vec<Category>)
Sourcepub fn activate_position(&mut self, position: u16) -> bool
pub fn activate_position(&mut self, position: u16) -> bool
Activates the item at the given position, returning true if it was activated.
Sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Removes all items from the model.
Any IDs held elsewhere by the application will no longer be usable with the map.
The generation is incremented on removal, so the stale IDs will return None
for
any attempt to get values from the map.
model.clear();
Sourcepub fn contains_item(&self, id: Entity) -> bool
pub fn contains_item(&self, id: Entity) -> bool
Check if an item exists in the map.
if model.contains_item(id) {
println!("ID is still valid");
}
Sourcepub fn item(&self, id: Entity) -> Option<&Item>
pub fn item(&self, id: Entity) -> Option<&Item>
Get an immutable reference to data associated with an item.
if let Some(data) = model.data::<String>(id) {
println!("found string on {:?}: {}", id, data);
}
Sourcepub fn item_mut(&mut self, id: Entity) -> Option<&mut Item>
pub fn item_mut(&mut self, id: Entity) -> Option<&mut Item>
Get a mutable reference to data associated with an item.
Sourcepub fn item_set(&mut self, id: Entity, data: Item)
pub fn item_set(&mut self, id: Entity, data: Item)
Associates data with the item.
There may only be one data component per Rust type.
model.data_set::<String>(id, String::from("custom string"));
Sourcepub fn data<Data: 'static>(&self, id: Entity) -> Option<&Data>
pub fn data<Data: 'static>(&self, id: Entity) -> Option<&Data>
Get an immutable reference to data associated with an item.
if let Some(data) = model.data::<String>(id) {
println!("found string on {:?}: {}", id, data);
}
Sourcepub fn data_mut<Data: 'static>(&mut self, id: Entity) -> Option<&mut Data>
pub fn data_mut<Data: 'static>(&mut self, id: Entity) -> Option<&mut Data>
Get a mutable reference to data associated with an item.
Sourcepub fn data_set<Data: 'static>(&mut self, id: Entity, data: Data)
pub fn data_set<Data: 'static>(&mut self, id: Entity, data: Data)
Associates data with the item.
There may only be one data component per Rust type.
model.data_set::<String>(id, String::from("custom string"));
Sourcepub fn data_remove<Data: 'static>(&mut self, id: Entity)
pub fn data_remove<Data: 'static>(&mut self, id: Entity)
Removes a specific data type from the item.
model.data.remove::<String>(id);
Sourcepub fn enable(&mut self, id: Entity, enable: bool)
pub fn enable(&mut self, id: Entity, enable: bool)
Enable or disable an item.
model.enable(id, true);
Sourcepub fn entity_at(&mut self, position: u16) -> Option<Entity>
pub fn entity_at(&mut self, position: u16) -> Option<Entity>
Get the item that is located at a given position.
Sourcepub fn insert(
&mut self,
item: Item,
) -> EntityMut<'_, SelectionMode, Item, Category>
pub fn insert( &mut self, item: Item, ) -> EntityMut<'_, SelectionMode, Item, Category>
Inserts a new item in the model.
let id = model.insert().text("Item A").icon("custom-icon").id();
Sourcepub fn is_enabled(&self, id: Entity) -> bool
pub fn is_enabled(&self, id: Entity) -> bool
Check if the item is enabled.
if model.is_enabled(id) {
if let Some(text) = model.text(id) {
println!("{text} is enabled");
}
}
Sourcepub fn iter(&self) -> impl Iterator<Item = Entity> + '_
pub fn iter(&self) -> impl Iterator<Item = Entity> + '_
Iterates across items in the model in the order that they are displayed.
pub fn indent(&self, id: Entity) -> Option<u16>
pub fn indent_set(&mut self, id: Entity, indent: u16) -> Option<u16>
pub fn indent_remove(&mut self, id: Entity) -> Option<u16>
Sourcepub fn position(&self, id: Entity) -> Option<u16>
pub fn position(&self, id: Entity) -> Option<u16>
The position of the item in the model.
if let Some(position) = model.position(id) {
println!("found item at {}", position);
}
Sourcepub fn position_set(&mut self, id: Entity, position: u16) -> Option<usize>
pub fn position_set(&mut self, id: Entity, position: u16) -> Option<usize>
Change the position of an item in the model.
if let Some(new_position) = model.position_set(id, 0) {
println!("placed item at {}", new_position);
}
Sourcepub fn position_swap(&mut self, first: Entity, second: Entity) -> bool
pub fn position_swap(&mut self, first: Entity, second: Entity) -> bool
Swap the position of two items in the model.
Returns false if the swap cannot be performed.
if model.position_swap(first_id, second_id) {
println!("positions swapped");
}