Struct conrod::TabsStyle [] [src]

pub struct TabsStyle {
    pub layout: Option<Layout>,
    pub bar_thickness: Option<Option<Scalar>>,
    pub label_color: Option<Color>,
    pub label_font_size: Option<FontSize>,
    pub font_id: Option<Option<Id>>,
    pub canvas: Option<Style>,
}

Unique styling for the Tabs widget.

Fields

layout: Option<Layout>

Layout for the tab selection bar.

bar_thickness: Option<Option<Scalar>>

The thickness of the tab selection bar (width for vertical, height for horizontal).

label_color: Option<Color>

Color of the number dialer's label.

label_font_size: Option<FontSize>

Font size of the number dialer's label.

font_id: Option<Option<Id>>

The font::Id of the number dialer's font.

canvas: Option<Style>

The styling for each Canvas.

Methods

impl Style
[src]

fn new() -> Self

Construct the default Style, initialising all fields to None.

impl Style
[src]

fn layout(&self, theme: &Theme) -> Layout

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

fn bar_thickness(&self, theme: &Theme) -> Option<Scalar>

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

fn label_color(&self, theme: &Theme) -> Color

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

fn label_font_size(&self, theme: &Theme) -> FontSize

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

fn font_id(&self, theme: &Theme) -> Option<Id>

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

fn canvas(&self, theme: &Theme) -> Style

Retrieves the value from the Style.

If the Style's field is None, falls back to default specified within the Theme.

Trait Implementations

impl PartialEq for Style
[src]

fn eq(&self, __arg_0: &Style) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Style) -> bool

This method tests for !=.

impl Debug for Style
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Style
[src]

fn clone(&self) -> Style

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Style
[src]