[][src]Struct nannou::ui::prelude::Theme

pub struct Theme {
    pub name: String,
    pub padding: Padding,
    pub x_position: Position,
    pub y_position: Position,
    pub background_color: Color,
    pub shape_color: Color,
    pub border_color: Color,
    pub border_width: f64,
    pub label_color: Color,
    pub font_id: Option<Id>,
    pub font_size_large: u32,
    pub font_size_medium: u32,
    pub font_size_small: u32,
    pub widget_styling: HashMap<TypeId, WidgetDefault, BuildHasherDefault<FnvHasher>>,
    pub mouse_drag_threshold: f64,
    pub double_click_threshold: Duration,
}

A serializable collection of canvas and widget styling defaults.

Fields

name: String

A name for the theme used for identification.

padding: Padding

Padding for Canvas layout and positioning.

x_position: Position

A default widget position along the x axis.

y_position: Position

A default widget position along the y axis.

background_color: Color

A default background for the theme.

shape_color: Color

A default color for widget shapes.

border_color: Color

A default color for widget borders.

border_width: f64

A default width for widget borders.

label_color: Color

A default color for widget labels.

font_id: Option<Id>

The Id of the default font used for text widgets when one is not specified.

font_size_large: u32

A default "large" font size.

font_size_medium: u32

A default "medium" font size.

font_size_small: u32

A default "small" font size.

widget_styling: HashMap<TypeId, WidgetDefault, BuildHasherDefault<FnvHasher>>

StyleMap for unique styling of each widget, index-able by the Widget::kind.

mouse_drag_threshold: f64

Mouse Drag distance threshold determines the minimum distance from the mouse-down point that the mouse must move before starting a drag operation.

double_click_threshold: Duration

Once the Duration that separates two consecutive Clicks is greater than this value, a DoubleClick event will no longer be generated.

Methods

impl Theme[src]

pub fn default() -> Theme[src]

The default theme if not loading from file.

pub fn widget_style<T>(&self) -> Option<UniqueDefault<T>> where
    T: Style
[src]

Retrieve the unique default styling for a widget.

Attempts to cast the Box<WidgetStyle> to the Widget's unique associated style T.

Trait Implementations

impl Debug for Theme[src]

Auto Trait Implementations

impl Send for Theme

impl !Sync for Theme

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.