Struct smithay_client_toolkit::window::ConceptConfig [−][src]
pub struct ConceptConfig {
pub primary_color: ColorSpec,
pub secondary_color: ColorSpec,
pub close_button: Option<(ButtonColorSpec, ButtonColorSpec)>,
pub maximize_button: Option<(ButtonColorSpec, ButtonColorSpec)>,
pub minimize_button: Option<(ButtonColorSpec, ButtonColorSpec)>,
pub title_font: Option<(String, f32)>,
pub title_color: ColorSpec,
}
Expand description
Configuration for ConceptFrame
Fields
primary_color: ColorSpec
The primary color of the titlebar
secondary_color: ColorSpec
Secondary color of the theme
Used for the division line between the titlebar and the content
Parameters of the “Close” (or “x”) button
(icon color, button color)
if None
the button will not be drawn
Parameters of the “Maximize” (or “^”) button
(icon color, button color)
if None
the button will not be drawn
Parameters of the “Minimize” (or “v”) button
(icon color, button color)
if None
the button will not be drawn
title_font: Option<(String, f32)>
Font configuration for the titlebar
Font name and size. If set to None
, the title is not drawn.
title_color: ColorSpec
Color for drawing the title text
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ConceptConfig
impl Send for ConceptConfig
impl Sync for ConceptConfig
impl Unpin for ConceptConfig
impl UnwindSafe for ConceptConfig
Blanket Implementations
Mutably borrows from an owned value. Read more