Struct conrod::widget::primitive::shape::oval::Oval [] [src]

pub struct Oval<S> {
    pub common: CommonBuilder,
    pub style: Style,
    pub resolution: usize,
    pub section: S,
}

A simple, non-interactive widget for drawing a single Oval.

Fields

Data necessary and common for all widget builder types.

Unique styling.

The number of lines used to draw the edge.

A type describing the section of the Oval that is to be drawn.

Methods

impl Oval<Full>
[src]

[src]

Build an Oval with the given dimensions and style.

[src]

Build a new Filled Oval.

[src]

Build a new Oval Filled with the given color.

[src]

Build a new Outlined Oval widget.

[src]

Build a new Oval Outlined with the given style.

impl<S> Oval<S>
[src]

[src]

The number of lines used to draw the edge.

By default, DEFAULT_RESOLUTION is used.

[src]

Produces an Oval where only a section is drawn.

The given radians describes the angle occuppied by the section's circumference.

impl Oval<Section>
[src]

[src]

The radians at which the section will begin.

A value of 0.0 will begin at the rightmost point of the oval.

Trait Implementations

impl<S: Copy> Copy for Oval<S>
[src]

impl<S: Clone> Clone for Oval<S>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: Debug> Debug for Oval<S>
[src]

[src]

Formats the value using the given formatter.

impl<S> Widget for Oval<S> where
    S: OvalSection
[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

[src]

Return the initial State of the Widget. Read more

[src]

Return the styling of the widget. Read more

[src]

Returns either of the following: Read more

[src]

Update our Widget's unique Widget::State via the State wrapper type (the state field within the UpdateArgs). Read more

[src]

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

[src]

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

[src]

The default width for the Widget. Read more

[src]

The default height of the widget. Read more

[src]

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

[src]

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

[src]

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

[src]

Specify that this widget has no parent widgets.

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Makes the widget's KidArea scrollable. Read more

[src]

Makes the widget's KidArea scrollable. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl<S> Colorable for Oval<S>
[src]

[src]

Set the color of the widget.

[src]

Set the color of the widget from rgba values.

[src]

Set the color of the widget from rgb values.

[src]

Set the color of the widget from hsla values.

[src]

Set the color of the widget from hsl values.