Struct conrod::widget::canvas::Canvas [] [src]

pub struct Canvas<'a> {
    pub common: CommonBuilder,
    pub style: Style,
    pub maybe_title_bar_label: Option<&'a str>,
    pub maybe_splits: Option<FlowOfSplits<'a>>,
}

Canvas is designed to be a "container"-like "parent" widget that simplifies placement of "children" widgets.

Widgets can be placed on a Canvas in a variety of ways using methods from the Positionable trait.

Canvas provides methods for padding the kid widget area which can make using the Place-related Positionable methods a little easier.

A Canvas can also be divided into a sequence of smaller Canvasses using the .flow_* methods. This creates a kind of Canvas tree, where each "split" can be sized using the .length or .length_weight methods.

See the canvas.rs example for a demonstration of the Canvas type.

Fields

Data necessary and common for all widget builder types.

The builder data related to the style of the Canvas.

The label for the Canvas' TitleBar if there is one.

A list of child Canvasses as splits of this Canvas flowing in the given direction.

Methods

impl<'a> Canvas<'a>
[src]

Construct a new Canvas builder.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Set the length of the Split as an absolute scalar.

Set the length of the Split as a weight.

The default length weight for each widget is 1.0.

Set the child Canvasses flowing to the right.

Set the child Canvasses flowing to the left.

Set the child Canvasses flowing upwards.

Set the child Canvasses flowing downwards.

Set the padding for all edges of the area where child widgets will be placed.

Set the padding of the area where child widgets will be placed.

Set the color of the Canvas' TitleBar if it is visible.

Trait Implementations

impl<'a> Copy for Canvas<'a>
[src]

impl<'a> Clone for Canvas<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for Canvas<'a>
[src]

Formats the value using the given formatter.

impl<'a> Widget for Canvas<'a>
[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

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 title bar area at which the Canvas can be clicked and dragged.

Note: the position of the returned Rect should be relative to the center of the widget.

The area of the widget below the title bar, upon which child widgets will be placed.

Update the state of the Canvas.

The default width for the Widget. Read more

The default height of the widget. Read more

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

impl<'a> Colorable for Canvas<'a>
[src]

Build the type's self.$($assignee).+ with the given $Type.

Set the color of the widget from rgba values.

Set the color of the widget from rgb values.

Set the color of the widget from hsla values.

Set the color of the widget from hsl values.

impl<'a> Borderable for Canvas<'a>
[src]

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Set the color of the widget's border with rgba values.

Set the color of the widget's border with rgb values.

Set the color of the widget's border with hsla values.

Set the color of the widget's border with hsl values.

impl<'a> Labelable<'a> for Canvas<'a>
[src]

Set the label for the widget.

Build the type's self.$($assignee).+ with the given $Type.

Build the type's self.$($assignee).+ with the given $Type.

Set the color of the widget's label from rgba values.

Set the color of the widget's label from rgb values.

Set the color of the widget's label from hsla values.

Set the color of the widget's label from hsl values.

Set a "small" font size for the widget's label.

Set a "medium" font size for the widget's label.

Set a "large" font size for the widget's label.