Struct nannou::ui::prelude::widget::primitive::text::Text[][src]

pub struct Text<'a> {
    pub common: CommonBuilder,
    pub text: &'a str,
    pub style: Style,
}

Displays some given text centered within a rectangular area.

By default, the rectangular dimensions are fit to the area occuppied by the text.

If some horizontal dimension is given, the text will automatically wrap to the width and align in accordance with the produced Alignment.

Fields

Data necessary and common for all widget builder types.

The text to be drawn by the Text.

Unique styling for the Text.

Methods

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

Build a new Text widget.

Specify that the Text should not wrap lines around the width.

Line wrap the Text at the beginning of the first word that exceeds the width.

Line wrap the Text at the beginning of the first character that exceeds the width.

A method for specifying the Font used for displaying the Text.

Build the Text with the given Style.

Align the text to the left of its bounding Rect's x axis range.

Align the text to the middle of its bounding Rect's x axis range.

Align the text to the right of its bounding Rect's x axis range.

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.

Trait Implementations

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

If no specific width was given, we'll use the width of the widest line as a default.

The Font used by the Text is retrieved in order to determine the width of each line. If the font used by the Text cannot be found, a dimension of Absolute(0.0) is returned.

If no specific height was given, we'll use the total height of the text as a default.

The Font used by the Text is retrieved in order to determine the width of each line. If the font used by the Text cannot be found, a dimension of Absolute(0.0) is returned.

Update the state of the Text.

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

The default Position for the widget along the y axis. 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> Common for Text<'a>
[src]

Borrows the CommonBuilder field.

Mutably borrows the CommonBuilder field.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Set the color of the widget.

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> Debug for Text<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Text<'a>

impl<'a> Sync for Text<'a>