cosmic::widget::table::model

Struct Model

Source
pub struct Model<SelectionMode: Default, Item: ItemInterface<Category>, Category>
where Category: ItemCategory,
{ /* private fields */ }

Implementations§

Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Model<SingleSelect, Item, Category>

Source

pub fn active_data<Data: 'static>(&self) -> Option<&Data>

Get an immutable reference to the data associated with the active item.

Source

pub fn active_data_mut<Data: 'static>(&mut self) -> Option<&mut Data>

Get a mutable reference to the data associated with the active item.

Source

pub fn deactivate(&mut self)

Deactivates the active item.

Source

pub fn active(&self) -> Entity

The ID of the active item.

Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Model<MultiSelect, Item, Category>

Source

pub fn deactivate(&mut self, id: Entity)

Deactivates the item in the model.

Source

pub fn active(&self) -> impl Iterator<Item = Entity> + '_

The IDs of the active items.

Source§

impl<SelectionMode: Default, Item: ItemInterface<Category>, Category: ItemCategory> Model<SelectionMode, Item, Category>
where Self: Selectable,

Source

pub fn new(categories: Vec<Category>) -> Self

Source

pub fn categories(&mut self, cats: Vec<Category>)

Source

pub fn activate(&mut self, id: Entity)

Activates the item in the model.

model.activate(id);
Source

pub fn activate_position(&mut self, position: u16) -> bool

Activates the item at the given position, returning true if it was activated.

Source

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();
Source

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");
}
Source

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);
}
Source

pub fn item_mut(&mut self, id: Entity) -> Option<&mut Item>

Get a mutable reference to data associated with an item.

Source

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"));
Source

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);
}
Source

pub fn data_mut<Data: 'static>(&mut self, id: Entity) -> Option<&mut Data>

Get a mutable reference to data associated with an item.

Source

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"));
Source

pub fn data_remove<Data: 'static>(&mut self, id: Entity)

Removes a specific data type from the item.

model.data.remove::<String>(id);
Source

pub fn enable(&mut self, id: Entity, enable: bool)

Enable or disable an item.

model.enable(id, true);
Source

pub fn entity_at(&mut self, position: u16) -> Option<Entity>

Get the item that is located at a given position.

Source

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();
Source

pub fn is_active(&self, id: Entity) -> bool

Check if the given ID is the active ID.

Source

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");
    }
}
Source

pub fn iter(&self) -> impl Iterator<Item = Entity> + '_

Iterates across items in the model in the order that they are displayed.

Source

pub fn indent(&self, id: Entity) -> Option<u16>

Source

pub fn indent_set(&mut self, id: Entity, indent: u16) -> Option<u16>

Source

pub fn indent_remove(&mut self, id: Entity) -> Option<u16>

Source

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);
}
Source

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);
}
Source

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");
}
Source

pub fn remove(&mut self, id: Entity)

Removes an item from the model.

The generation of the slot for the ID will be incremented, so this ID will no longer be usable with the map. Subsequent attempts to get values from the map with this ID will return None and failed to assign values.

Source

pub fn get_sort(&self) -> Option<(Category, bool)>

Get the sort data

Source

pub fn sort(&mut self, category: Category, ascending: bool)

Sorts items in the model, this should be called before it is drawn after all items have been added for the view

Trait Implementations§

Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Selectable for Model<MultiSelect, Item, Category>

Source§

fn activate(&mut self, id: Entity)

Activate an item.
Source§

fn deactivate(&mut self, id: Entity)

Deactivate an item.
Source§

fn is_active(&self, id: Entity) -> bool

Checks if the item is active.
Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Selectable for Model<SingleSelect, Item, Category>

Source§

fn activate(&mut self, id: Entity)

Activate an item.
Source§

fn deactivate(&mut self, id: Entity)

Deactivate an item.
Source§

fn is_active(&self, id: Entity) -> bool

Checks if the item is active.

Auto Trait Implementations§

§

impl<SelectionMode, Item, Category> Freeze for Model<SelectionMode, Item, Category>
where SelectionMode: Freeze, Category: Freeze,

§

impl<SelectionMode, Item, Category> !RefUnwindSafe for Model<SelectionMode, Item, Category>

§

impl<SelectionMode, Item, Category> !Send for Model<SelectionMode, Item, Category>

§

impl<SelectionMode, Item, Category> !Sync for Model<SelectionMode, Item, Category>

§

impl<SelectionMode, Item, Category> Unpin for Model<SelectionMode, Item, Category>
where SelectionMode: Unpin, Category: Unpin, Item: Unpin,

§

impl<SelectionMode, Item, Category> !UnwindSafe for Model<SelectionMode, Item, Category>

Blanket Implementations§

Source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,

Source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<T>,

Convert the source color to the destination color using the specified method.
Source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default.
Source§

impl<T> Also for T

Source§

fn also<F>(self, block: F) -> Self
where F: FnOnce(&mut Self),

Apply a function to this value and return the (possibly) modified value.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T, Res> Apply<Res> for T
where T: ?Sized,

Source§

fn apply<F>(self, f: F) -> Res
where F: FnOnce(Self) -> Res, Self: Sized,

Apply a function which takes the parameter by value.
Source§

fn apply_ref<F>(&self, f: F) -> Res
where F: FnOnce(&Self) -> Res,

Apply a function which takes the parameter by reference.
Source§

fn apply_mut<F>(&mut self, f: F) -> Res
where F: FnOnce(&mut Self) -> Res,

Apply a function which takes the parameter by mutable reference.
Source§

impl<T, C> ArraysFrom<C> for T
where C: IntoArrays<T>,

Source§

fn arrays_from(colors: C) -> T

Cast a collection of colors into a collection of arrays.
Source§

impl<T, C> ArraysInto<C> for T
where C: FromArrays<T>,

Source§

fn arrays_into(self) -> C

Cast this collection of arrays into a collection of colors.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for U
where T: FromCam16Unclamped<WpParam, U>,

Source§

type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
Source§

fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Source§

impl<T, C> ComponentsFrom<C> for T
where C: IntoComponents<T>,

Source§

fn components_from(colors: C) -> T

Cast a collection of colors into a collection of color components.
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromAngle<T> for T

Source§

fn from_angle(angle: T) -> T

Performs a conversion from angle.
Source§

impl<T, U> FromStimulus<U> for T
where U: IntoStimulus<T>,

Source§

fn from_stimulus(other: U) -> T

Converts other into Self, while performing the appropriate scaling, rounding and clamping.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> IntoAngle<U> for T
where U: FromAngle<T>,

Source§

fn into_angle(self) -> U

Performs a conversion into T.
Source§

impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for U
where T: Cam16FromUnclamped<WpParam, U>,

Source§

type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
Source§

fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Source§

impl<T, U> IntoColor<U> for T
where U: FromColor<T>,

Source§

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
Source§

impl<T, U> IntoColorUnclamped<U> for T
where U: FromColorUnclamped<T>,

Source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
Source§

impl<T> IntoStimulus<T> for T

Source§

fn into_stimulus(self) -> T

Converts self into T, while performing the appropriate scaling, rounding and clamping.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, C> TryComponentsInto<C> for T
where C: TryFromComponents<T>,

Source§

type Error = <C as TryFromComponents<T>>::Error

The error for when try_into_colors fails to cast.
Source§

fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>

Try to cast this collection of color components into a collection of colors. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

Source§

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
Source§

impl<C, U> UintsFrom<C> for U
where C: IntoUints<U>,

Source§

fn uints_from(colors: C) -> U

Cast a collection of colors into a collection of unsigned integers.
Source§

impl<C, U> UintsInto<C> for U
where C: FromUints<U>,

Source§

fn uints_into(self) -> C

Cast this collection of unsigned integers into a collection of colors.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more