Struct conrod::KidAreaArgs [] [src]

pub struct KidAreaArgs<'a, W, C: 'a> where W: Widget {
    pub rect: Rect,
    pub style: &'a W::Style,
    pub theme: &'a Theme,
    pub glyph_cache: &'a GlyphCache<C>,
}

Arguments to the Widget::kid_area method in a struct to simplify the method signature.

Fields

rect: Rect

The Rect describing the Widget's position and dimensions.

style: &'a W::Style

Current Widget::Style of the Widget.

theme: &'a Theme

The active Theme within the Ui.

glyph_cache: &'a GlyphCache<C>

The Ui's GlyphCache (for determining text width).