[][src]Struct conrod_core::widget::canvas::Style

pub struct Style {
    pub color: Option<Color>,
    pub border: Option<Scalar>,
    pub border_color: Option<Color>,
    pub length: Option<Length>,
    pub pad_left: Option<Scalar>,
    pub pad_right: Option<Scalar>,
    pub pad_bottom: Option<Scalar>,
    pub pad_top: Option<Scalar>,
    pub title_bar_color: Option<Option<Color>>,
    pub title_bar_text_color: Option<Color>,
    pub title_bar_font_size: Option<FontSize>,
    pub title_bar_maybe_wrap: Option<Option<Wrap>>,
    pub title_bar_line_spacing: Option<Scalar>,
    pub title_bar_justify: Option<Justify>,
}
[]

Unique styling for the Canvas.

Fields

color: Option<Color>
[]

The color of the Canvas' rectangle surface.

border: Option<Scalar>
[]

The width of the border surrounding the Canvas' rectangle.

border_color: Option<Color>
[]

The color of the Canvas' border.

length: Option<Length>
[]

If this Canvas is a split of some parent Canvas, this is the length of the split.

pad_left: Option<Scalar>
[]

Padding for the left edge of the Canvas' kid area.

pad_right: Option<Scalar>
[]

Padding for the right edge of the Canvas' kid area.

pad_bottom: Option<Scalar>
[]

Padding for the bottom edge of the Canvas' kid area.

pad_top: Option<Scalar>
[]

Padding for the top edge of the Canvas' kid area.

title_bar_color: Option<Option<Color>>
[]

The color of the title bar. Defaults to the color of the Canvas.

title_bar_text_color: Option<Color>
[]

The color of the title bar's text.

title_bar_font_size: Option<FontSize>
[]

The font size for the title bar's text.

title_bar_maybe_wrap: Option<Option<Wrap>>
[]

The way in which the title bar's text should wrap.

title_bar_line_spacing: Option<Scalar>
[]

The distance between lines for multi-line title bar text.

title_bar_justify: Option<Justify>
[]

The label's typographic alignment over the x axis.

Implementations

impl Style[src][]

pub fn padding(&self, theme: &Theme) -> Padding[src][]

Get the Padding for the Canvas' kid area.

Trait Implementations

impl Clone for Style[src][+]

impl Copy for Style[src]

impl Debug for Style[src][+]

impl Default for Style[src][+]

impl PartialEq<Style> for Style[src][+]

impl StructuralPartialEq for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

Blanket Implementations

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

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

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

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

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

impl<T> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

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.