[][src]Struct gtk_sys::GtkStyle

#[repr(C)]
pub struct GtkStyle {
    pub parent_instance: GObject,
    pub fg: [GdkColor; 5],
    pub bg: [GdkColor; 5],
    pub light: [GdkColor; 5],
    pub dark: [GdkColor; 5],
    pub mid: [GdkColor; 5],
    pub text: [GdkColor; 5],
    pub base: [GdkColor; 5],
    pub text_aa: [GdkColor; 5],
    pub black: GdkColor,
    pub white: GdkColor,
    pub font_desc: *mut PangoFontDescription,
    pub xthickness: c_int,
    pub ythickness: c_int,
    pub background: *mut [*mut cairo_pattern_t; 5],
    pub attach_count: c_int,
    pub visual: *mut GdkVisual,
    pub private_font_desc: *mut PangoFontDescription,
    pub rc_style: *mut GtkRcStyle,
    pub styles: *mut GSList,
    pub property_cache: *mut GArray,
    pub icon_factories: *mut GSList,
}

Fields

parent_instance: GObjectfg: [GdkColor; 5]bg: [GdkColor; 5]light: [GdkColor; 5]dark: [GdkColor; 5]mid: [GdkColor; 5]text: [GdkColor; 5]base: [GdkColor; 5]text_aa: [GdkColor; 5]black: GdkColorwhite: GdkColorfont_desc: *mut PangoFontDescriptionxthickness: c_intythickness: c_intbackground: *mut [*mut cairo_pattern_t; 5]attach_count: c_intvisual: *mut GdkVisualprivate_font_desc: *mut PangoFontDescriptionrc_style: *mut GtkRcStylestyles: *mut GSListproperty_cache: *mut GArrayicon_factories: *mut GSList

Trait Implementations

impl Clone for GtkStyle[src]

impl Copy for GtkStyle[src]

impl Debug for GtkStyle[src]

Auto Trait Implementations

impl RefUnwindSafe for GtkStyle

impl !Send for GtkStyle

impl !Sync for GtkStyle

impl Unpin for GtkStyle

impl UnwindSafe for GtkStyle

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> 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 = !

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.