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
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
impl Clone for ConceptConfig
[src]
fn clone(&self) -> ConceptConfig
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ConceptConfig
[src]
impl Default for ConceptConfig
[src]
fn default() -> ConceptConfig
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,