[][src]Struct pixel_widgets::stylesheet::Stylesheet

pub struct Stylesheet {
    pub width: Size,
    pub height: Size,
    pub background: Background,
    pub padding: Rectangle,
    pub margin: Rectangle,
    pub color: Color,
    pub font: Font,
    pub text_size: f32,
    pub text_wrap: TextWrap,
    pub direction: Direction,
    pub align_horizontal: Align,
    pub align_vertical: Align,
    pub flags: Vec<String>,
}

A fully resolved stylesheet, passed by reference to Widget::draw. Contains the final versions of all possible rules.

Fields

width: Size

Widget width

height: Size

Widget height

background: Background

Background for the widget that full covers the layout rect

padding: Rectangle

Amount of padding to use on each side of the content

margin: Rectangle

Size of the margin on each side of the widget

color: Color

Color to use for foreground drawing, including text

font: Font

Font to use for text rendering

text_size: f32

Size of text

text_wrap: TextWrap

Wrapping strategy for text

direction: Direction

Layout direction for widgets that support it (atm not text unfortunately..)

align_horizontal: Align

How to align children horizontally

align_vertical: Align

How to align children vertically

flags: Vec<String>

Flags

Implementations

impl Stylesheet[src]

pub fn contains(&self, flag: &str) -> bool[src]

Returns whether a flag is set in this stylesheet

Trait Implementations

impl Clone for Stylesheet[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

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

impl<T> Instrument for T[src]

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