logo
#[repr(C)]
pub struct WindowItem { pub width: Property<Coord>, pub height: Property<Coord>, pub background: Property<Color>, pub title: Property<SharedString>, pub no_frame: Property<bool>, pub icon: Property<Image>, pub default_font_family: Property<SharedString>, pub default_font_size: Property<Coord>, pub default_font_weight: Property<i32>, pub cached_rendering_data: CachedRenderingData, }
Expand description

The implementation of the Window element

Fields

width: Property<Coord>height: Property<Coord>background: Property<Color>title: Property<SharedString>no_frame: Property<bool>icon: Property<Image>default_font_family: Property<SharedString>default_font_size: Property<Coord>default_font_weight: Property<i32>cached_rendering_data: CachedRenderingData

Implementations

Return a struct containing the offset of for the fields of this struct

Returns the font properties that can be used as defaults for child items

Trait Implementations

Returns the “default value” for a type. Read more

Safety: must be a valid VTable for Self

This function is called by the run-time after the memory for the item has been allocated and initialized. It will be called before any user specified bindings are set. Read more

Returns the geometry of this item (relative to its parent item)

We would need max/min/preferred size, and all layout info

Event handler for mouse and touch event. This function is called before being called on children. Then, depending on the return value, it is called for the children, and their children, then Self::input_event is called on the children, and finally Self::input_event is called on this item again. Read more

Handle input event for mouse and touch event

offset in bytes from the *const ItemImpl. isize::MAX means None Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.