[][src]Struct nuklear::StyleCombo

#[repr(C)]pub struct StyleCombo { /* fields omitted */ }

Implementations

impl StyleCombo[src]

pub fn normal(&self) -> &StyleItem[src]

pub fn hover(&self) -> &StyleItem[src]

pub fn active(&self) -> &StyleItem[src]

pub fn border_color(&self) -> &Color[src]

pub fn label_normal(&self) -> &Color[src]

pub fn label_hover(&self) -> &Color[src]

pub fn label_active(&self) -> &Color[src]

pub fn symbol_normal(&self) -> &Color[src]

pub fn symbol_hover(&self) -> &Color[src]

pub fn symbol_active(&self) -> &Color[src]

pub fn button(&self) -> &StyleButton[src]

pub fn sym_normal(&self) -> &SymbolType[src]

pub fn sym_hover(&self) -> &SymbolType[src]

pub fn sym_active(&self) -> &SymbolType[src]

pub fn border(&self) -> f32[src]

pub fn rounding(&self) -> f32[src]

pub fn content_padding(&self) -> &Vec2[src]

pub fn button_padding(&self) -> &Vec2[src]

pub fn spacing(&self) -> &Vec2[src]

pub fn set_normal(&mut self, i: StyleItem)[src]

pub fn set_hover(&mut self, i: StyleItem)[src]

pub fn set_active(&mut self, i: StyleItem)[src]

pub fn set_border_color(&mut self, c: Color)[src]

pub fn set_label_normal(&mut self, c: Color)[src]

pub fn set_label_hover(&mut self, c: Color)[src]

pub fn set_label_active(&mut self, c: Color)[src]

pub fn set_symbol_normal(&mut self, c: Color)[src]

pub fn set_symbol_hover(&mut self, c: Color)[src]

pub fn set_symbol_active(&mut self, c: Color)[src]

pub fn set_button(&mut self, s: StyleButton)[src]

pub fn set_sym_normal(&mut self, t: SymbolType)[src]

pub fn set_sym_hover(&mut self, t: SymbolType)[src]

pub fn set_sym_active(&mut self, t: SymbolType)[src]

pub fn set_border(&mut self, v: f32)[src]

pub fn set_rounding(&mut self, v: f32)[src]

pub fn set_content_padding(&mut self, v: Vec2)[src]

pub fn set_button_padding(&mut self, v: Vec2)[src]

pub fn set_spacing(&mut self, v: Vec2)[src]

Trait Implementations

impl AsMut<StyleCombo> for nk_style_combo[src]

impl AsMut<nk_style_combo> for StyleCombo[src]

impl AsRef<StyleCombo> for nk_style_combo[src]

impl AsRef<nk_style_combo> for StyleCombo[src]

impl Clone for StyleCombo[src]

impl Default for StyleCombo[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> 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.