[−][src]Struct conrod_core::widget::list::List
A helper widget, useful for instantiating a sequence of widgets in a vertical list.
The List
widget simplifies this process by:
- Generating
widget::Id
s. - Simplifying the positioning and sizing of items.
- Optimised widget instantiation by only instantiating visible items. This is very useful for
lists containing many items, i.e. a
FileNavigator
over a directory with thousands of files.
Fields
common: CommonBuilder
Common widget building params for the List
.
style: Style
Unique styling for the List
.
item_instantiation: ItemInstantiation
Whether all or only visible items should be instantiated.
Implementations
impl<D> List<D, Dynamic> where
D: Direction,
[src][−]
D: Direction,
impl List<Left, Dynamic>
[src][−]
pub fn flow_left(num_items: usize) -> Self
[src][−]
Begin building a new List
flowing from right to left.
impl List<Right, Dynamic>
[src][−]
pub fn flow_right(num_items: usize) -> Self
[src][−]
Begin building a new List
flowing from left to right.
impl List<Up, Dynamic>
[src][−]
pub fn flow_up(num_items: usize) -> Self
[src][−]
Begin building a new List
flowing from bottom to top.
impl List<Down, Dynamic>
[src][−]
pub fn flow_down(num_items: usize) -> Self
[src][−]
Begin building a new List
flowing from top to bottom.
impl<D, S> List<D, S> where
D: Direction,
S: ItemSize,
[src][−]
D: Direction,
S: ItemSize,
pub fn from_item_size(num_items: usize, item_size: S) -> Self
[src][−]
Begin building a new List
given some direction and item size.
pub fn item_size(self, length: Scalar) -> List<D, Fixed>
[src][−]
Specify a fixed item size, where size is a Scalar
in the direction that the List
is
flowing. When a List
is constructed with this method, all items will have a fixed, equal
length.
impl<D> List<D, Fixed> where
D: Direction,
[src][−]
D: Direction,
pub fn instantiate_all_items(self) -> Self
[src][−]
Indicates that an Item
should be instantiated for every element in the list, regardless of
whether or not the Item
would be visible.
This is the default (and only) behaviour for List
s with dynamic item sizes. This is
because a List
cannot know the total length of its combined items in advanced when each
item is dynamically sized and their size is not given until they are set.
Note: This may cause significantly heavier CPU load for lists containing many items (100+). We only recommend using this when absolutely necessary as large lists may cause unnecessary bloating within the widget graph, and in turn result in greater traversal times.
pub fn instantiate_only_visible_items(self) -> Self
[src][−]
Indicates that only Item
s that are visible should be instantiated. This ensures that we
avoid bloating the widget graph with unnecessary nodes and in turn keep traversal times to
a minimum.
This is the default behaviour for List
s with fixed item sizes.
impl<D, S> List<D, S> where
D: Direction,
S: ItemSize,
[src][−]
D: Direction,
S: ItemSize,
pub fn scrollbar_next_to(self) -> Self
[src][−]
Specifies that the List
should be scrollable and should provide a Scrollbar
to the
right of the items.
pub fn scrollbar_on_top(self) -> Self
[src][−]
Specifies that the List
should be scrollable and should provide a Scrollbar
that hovers
above the right edge of the items and automatically hides when the user is not scrolling.
pub fn scrollbar_thickness(self, w: Scalar) -> Self
[src][−]
The width of the Scrollbar
.
pub fn scrollbar_color(self, color: Color) -> Self
[src][−]
The color of the Scrollbar
.
Trait Implementations
impl<D: Clone, S: Clone> Clone for List<D, S>
[src][+]
impl<D, S> Common for List<D, S>
[src][+]
impl<D, S> Widget for List<D, S> where
D: Direction,
S: ItemSize,
[src][+]
D: Direction,
S: ItemSize,
Auto Trait Implementations
impl<D, S> RefUnwindSafe for List<D, S> where
D: RefUnwindSafe,
S: RefUnwindSafe,
D: RefUnwindSafe,
S: RefUnwindSafe,
impl<D, S> Send for List<D, S> where
D: Send,
S: Send,
D: Send,
S: Send,
impl<D, S> Sync for List<D, S> where
D: Sync,
S: Sync,
D: Sync,
S: Sync,
impl<D, S> Unpin for List<D, S> where
D: Unpin,
S: Unpin,
D: Unpin,
S: Unpin,
impl<D, S> UnwindSafe for List<D, S> where
D: UnwindSafe,
S: UnwindSafe,
D: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<W> Positionable for W where
W: Widget,
[src][+]
W: Widget,
impl<W> Sizeable for W where
W: Widget,
[src][+]
W: Widget,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,