Struct conrod::theme::Theme [] [src]

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 frame_color: Color,
    pub frame_width: Scalar,
    pub label_color: Color,
    pub font_size_large: u32,
    pub font_size_medium: u32,
    pub font_size_small: u32,
    pub maybe_scrollbar: Option<Style>,
    pub widget_styling: HashMap<&'static strWidgetDefault>,
}

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.

frame_color: Color

A default color for widget frames.

frame_width: Scalar

A default width for widget frames.

label_color: Color

A default color for widget labels.

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.

maybe_scrollbar: Option<Style>

Optional style defaults for a Scrollbar.

widget_styling: HashMap<&'static strWidgetDefault>

Unique styling for each widget, index-able by the Widget::kind.

Methods

impl Theme
[src]

fn default() -> Theme

The default theme if not loading from file.

fn widget_style<T>(&self, kind: &'static str) -> Option<UniqueDefault<T>> where T: Style

Retrieve the unique default styling for a widget.

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