Struct conrod::widget::button::Button[][src]

pub struct Button<'a, S> {
    pub show: S,
    pub style: Style,
    // some fields omitted
}

A pressable button widget whose reaction is triggered upon release.

Fields

Whether the Button is a Flat color or an Image.

Unique styling parameters for the Button.

Methods

impl<'a> Button<'a, Image>
[src]

Begin building a button displaying the given Image on top.

The rectangular area of the image that we wish to display.

If this method is not called, the entire image will be used.

Map the Image's luminance to the given color.

Map the Image's luminance to the given color.

The color will change slightly when the button is highlighted or clicked to give the user some visual feedback.

The image displayed while the mouse hovers over the Button.

The image displayed while the Button is pressed.

impl<'a> Button<'a, Flat>
[src]

Begin building a flat-colored Button widget.

Override the default button style

Specify a color to use when the mouse hovers over the button.

By default, this is color.highlighted() where color is the button's regular color.

Specify a color to use when the mouse presses the button.

By default, this is color.clicked() where color is the button's regular color.

impl<'a, S> Button<'a, S>
[src]

Specify the font used for displaying the label.

Align the label to the left of the Button's surface.

Align the label to the mid-left of the Button's surface.

This is the default label alignment.

Align the label to the mid-left of the Button's surface.

Specify the label's position relatively to Button along the x axis.

Specify the label's position relatively to Button along the y axis.

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

Trait Implementations

impl<'a, S: Clone> Clone for Button<'a, S>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Widget for Button<'a, Flat>
[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 Button.

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.

Returns either of the following: 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 Widget with the given build function. Read more

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

impl<'a> Widget for Button<'a, Image>
[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 Button.

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.

Returns either of the following: 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 Widget with the given build function. Read more

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

impl<'a, S> Colorable for Button<'a, S>
[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, S> Borderable for Button<'a, S>
[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, S> Labelable<'a> for Button<'a, S>
[src]

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 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.

Auto Trait Implementations

impl<'a, S> Send for Button<'a, S> where
    S: Send

impl<'a, S> Sync for Button<'a, S> where
    S: Sync