[][src]Struct kiss3d_conrod::widget::number_dialer::NumberDialer

pub struct NumberDialer<'a, T> { /* fields omitted */ }

A widget for precision control over any digit within a value.

The reaction is triggered when the value is updated or if the mouse button is released while the cursor is above the widget.

Methods

impl<'a, T> NumberDialer<'a, T> where
    T: Float
[src]

pub fn new(value: T, min: T, max: T, precision: u8) -> Self[src]

Construct a new NumberDialer widget.

pub fn font_id(self, font_id: Id) -> Self[src]

Specify the font used for displaying the label.

pub fn enabled(self, enabled: bool) -> Self[src]

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

Trait Implementations

impl<'a, T> Borderable for NumberDialer<'a, T>[src]

fn border(self, border: Scalar) -> Self[src]

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

fn border_color(self, border_color: Color) -> Self[src]

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

impl<'a, T> Colorable for NumberDialer<'a, T>[src]

fn color(self, color: Color) -> Self[src]

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

impl<'a, T> Labelable<'a> for NumberDialer<'a, T>[src]

fn label(self, label: &'a str) -> Self[src]

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

fn label_color(self, label_color: Color) -> Self[src]

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

fn label_font_size(self, label_font_size: FontSize) -> Self[src]

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

impl<'a, T> Common for NumberDialer<'a, T>[src]

impl<'a, T> Widget for NumberDialer<'a, T> where
    T: Float + NumCast + ToString
[src]

type State = State

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

type Style = Style

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

type Event = Option<T>

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

fn update(self, args: UpdateArgs<Self>) -> Self::Event[src]

Update the state of the NumberDialer.

Auto Trait Implementations

impl<'a, T> Send for NumberDialer<'a, T> where
    T: Send

impl<'a, T> Sync for NumberDialer<'a, T> where
    T: Sync

impl<'a, T> Unpin for NumberDialer<'a, T> where
    T: Unpin

impl<'a, T> UnwindSafe for NumberDialer<'a, T> where
    T: UnwindSafe

impl<'a, T> RefUnwindSafe for NumberDialer<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<W> Positionable for W where
    W: Widget
[src]

impl<W> Sizeable for W where
    W: Widget
[src]

fn get_x_dimension(&Self, &Ui) -> Dimension[src]

We attempt to retrieve the x Dimension for the widget via the following:

  • Check for specified value at maybe_x_dimension
  • Otherwise, use the default returned by Widget::default_x_dimension.

fn get_y_dimension(&Self, &Ui) -> Dimension[src]

We attempt to retrieve the y Dimension for the widget via the following:

  • Check for specified value at maybe_y_dimension
  • Otherwise, use the default returned by Widget::default_y_dimension.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]