Struct egui::style::Widgets [−][src]
pub struct Widgets {
pub noninteractive: WidgetVisuals,
pub inactive: WidgetVisuals,
pub hovered: WidgetVisuals,
pub active: WidgetVisuals,
pub open: WidgetVisuals,
}
Expand description
The visuals of widgets for different states of interaction.
Fields
noninteractive: WidgetVisuals
The style of a widget that you cannot interact with.
noninteractive.bg_stroke
is the outline of windows.noninteractive.bg_fill
is the background color of windows.noninteractive.fg_stroke
is the normal text color.
inactive: WidgetVisuals
The style of an interactive widget, such as a button, at rest.
hovered: WidgetVisuals
The style of an interactive widget while you hover it.
active: WidgetVisuals
The style of an interactive widget as you are clicking or dragging it.
open: WidgetVisuals
The style of a button that has an open menu beneath it (e.g. a combo-box)
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Widgets
impl UnwindSafe for Widgets
Blanket Implementations
Mutably borrows from an owned value. Read more