cosmic::widget::table

Type Alias SingleSelectTableView

Source
pub type SingleSelectTableView<'a, Item, Category, Message> = TableView<'a, SingleSelect, Item, Category, Message>;

Aliased Type§

struct SingleSelectTableView<'a, Item, Category, Message> { /* private fields */ }

Implementations

Source§

impl<'a, SelectionMode, Item, Category, Message> TableView<'a, SelectionMode, Item, Category, Message>
where Category: ItemCategory, Item: ItemInterface<Category>, Model<SelectionMode, Item, Category>: Selectable, SelectionMode: Default, Message: Clone + 'static,

Source

pub fn model(self, value: &'a Model<SelectionMode, Item, Category>) -> Self

Source

pub fn element_padding(self, value: impl Into<Padding>) -> Self

Source

pub fn width(self, value: impl Into<Length>) -> Self

Source

pub fn height(self, value: impl Into<Length>) -> Self

Source

pub fn item_padding(self, value: impl Into<Padding>) -> Self

Source

pub fn item_spacing(self, value: u16) -> Self

Source

pub fn icon_spacing(self, value: u16) -> Self

Source

pub fn icon_size(self, value: u16) -> Self

Source

pub fn divider_padding(self, value: impl Into<Padding>) -> Self

Source§

impl<'a, SelectionMode, Item, Category, Message> TableView<'a, SelectionMode, Item, Category, Message>
where SelectionMode: Default, Model<SelectionMode, Item, Category>: Selectable, Category: ItemCategory, Item: ItemInterface<Category>, Message: Clone + 'static,

Source

pub fn new(model: &'a Model<SelectionMode, Item, Category>) -> Self

Source

pub fn on_item_left_click<F>(self, on_click: F) -> Self
where F: Fn(Entity) -> Message + 'static,

Source

pub fn on_item_double_click<F>(self, on_click: F) -> Self
where F: Fn(Entity) -> Message + 'static,

Source

pub fn on_item_middle_click<F>(self, on_click: F) -> Self
where F: Fn(Entity) -> Message + 'static,

Source

pub fn on_item_right_click<F>(self, on_click: F) -> Self
where F: Fn(Entity) -> Message + 'static,

Source

pub fn item_context<F>(self, context_menu_builder: F) -> Self
where F: Fn(&Item) -> Option<Vec<Tree<'a, Message>>> + 'static, Message: 'static,

Source

pub fn on_category_left_click<F>(self, on_select: F) -> Self
where F: Fn(Category) -> Message + 'static,

Source

pub fn on_category_double_click<F>(self, on_select: F) -> Self
where F: Fn(Category) -> Message + 'static,

Source

pub fn on_category_middle_click<F>(self, on_select: F) -> Self
where F: Fn(Category) -> Message + 'static,

Source

pub fn on_category_right_click<F>(self, on_select: F) -> Self
where F: Fn(Category) -> Message + 'static,

Source

pub fn category_context<F>(self, context_menu_builder: F) -> Self
where F: Fn(Category) -> Option<Vec<Tree<'a, Message>>> + 'static, Message: 'static,