Struct conrod::widget::list_select::ListSelect [] [src]

pub struct ListSelect<M, D, S> { /* fields omitted */ }

A wrapper around the List widget that handles single and multiple selection logic.

Methods

impl ListSelect<Single, Down, Dynamic>
[src]

Construct a new ListSelect, allowing one selected item at a time.

impl ListSelect<Multiple, Down, Dynamic>
[src]

Construct a new ListSelect, allowing multiple selected items.

impl<M, D, S> ListSelect<M, D, S> where
    M: Mode,
    D: Direction,
    S: ItemSize
[src]

Flows items from top to bottom.

Flows items from left to right.

Flows items from right to left.

Flows items from bottom to top.

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<M> ListSelect<M, Down, Dynamic>
[src]

Begin building a new ListSelect with the given mode.

This method is only useful when using a custom Mode, otherwise ListSelect::single or ListSelect::multiple will probably be more suitable.

impl<M, D, S> ListSelect<M, D, S>
[src]

Specifies that the List should be scrollable and should provide a Scrollbar to the right of the items.

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.

The width of the Scrollbar.

The color of the Scrollbar.

impl<M, D> ListSelect<M, D, Fixed>
[src]

Indicates that an Item should be instatiated for every element in the list, regardless of whether or not the Item would be visible.

This is the default (and only) behaviour for Lists 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.

Indicates that only Items 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 ListSelects with fixed item sizes.

Trait Implementations

impl<M: Clone, D: Clone, S: Clone> Clone for ListSelect<M, D, S>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<M, D, S> Widget for ListSelect<M, D, S> where
    M: Mode,
    D: Direction,
    S: ItemSize
[src]

State to be stored within the Uis widget cache. Read more

Every widget is required to have its own associated Style type. This type is intended to contain high-level styling information for the widget that can be optionally specified by a user of the widget. Read more

The type of event yielded by the widget, returned via the Widget::set function. Read more

Return the initial State of the Widget. Read more

Return the styling of the widget. Read more

Update the state of the ListSelect.

The default Position for the widget along the x axis. Read more

The default Position for the widget along the y axis. Read more

The default width for the Widget. Read more

The default height of the widget. Read more

If the widget is draggable, implement this method and return the position and dimensions of the draggable space. The position should be relative to the center of the widget. Read more

The area on which child widgets will be placed when using the Place Position methods.

Set the parent widget for this Widget by passing the WidgetId of the parent. Read more

Specify that this widget has no parent widgets.

Set whether or not the Widget should be placed on the kid_area. Read more

Indicates that the Widget is used as a non-interactive graphical element for some other widget. Read more

Set whether or not the widget is floating (the default is false). A typical example of a floating widget would be a pop-up or alert window. Read more

Indicates that all widgets who are children of this widget should be cropped to the kid_area of this widget. Read more

Makes the widget's KidArea scrollable. Read more

Makes the widget's KidArea scrollable. Read more

Set whether or not the widget's KidArea is scrollable (the default is false). Read more

A builder method that "lifts" the Widget through the given build function. Read more

A builder method that mutates the Widget with the given mutate function. Read more

A method that conditionally builds the Widget with the given build function. Read more

A method that optionally builds the the Widget with the given build function. Read more

Note: There should be no need to override this method. Read more