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,
}

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

close_button: Option<(ButtonColorSpec, ButtonColorSpec)>

Parameters of the “Close” (or “x”) button

(icon color, button color)

if None the button will not be drawn

maximize_button: Option<(ButtonColorSpec, ButtonColorSpec)>

Parameters of the “Maximize” (or “^”) button

(icon color, button color)

if None the button will not be drawn

minimize_button: Option<(ButtonColorSpec, ButtonColorSpec)>

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

impl Clone for ConceptConfig[src]

impl Debug for ConceptConfig[src]

impl Default for ConceptConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> 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.