Trait ux::native::SettingsExt[][src]

pub trait SettingsExt: 'static {
Show methods pub fn get_property_drag_threshold(&self) -> u32;
pub fn set_property_drag_threshold(&self, drag_threshold: u32);
pub fn get_property_font_name(&self) -> Option<String>;
pub fn set_property_font_name(&self, font_name: Option<&str>);
pub fn get_property_icon_theme(&self) -> Option<String>;
pub fn set_property_icon_theme(&self, icon_theme: Option<&str>);
pub fn get_property_long_press_timeout(&self) -> u32;
pub fn set_property_long_press_timeout(&self, long_press_timeout: u32);
pub fn get_property_small_screen(&self) -> bool;
pub fn set_property_small_screen(&self, small_screen: bool);
pub fn get_property_touch_mode(&self) -> bool;
pub fn set_property_touch_mode(&self, touch_mode: bool);
pub fn connect_property_drag_threshold_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_font_name_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_icon_theme_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_long_press_timeout_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_small_screen_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_touch_mode_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Required methods

pub fn get_property_drag_threshold(&self) -> u32[src]

pub fn set_property_drag_threshold(&self, drag_threshold: u32)[src]

pub fn get_property_font_name(&self) -> Option<String>[src]

pub fn set_property_font_name(&self, font_name: Option<&str>)[src]

pub fn get_property_icon_theme(&self) -> Option<String>[src]

pub fn set_property_icon_theme(&self, icon_theme: Option<&str>)[src]

pub fn get_property_long_press_timeout(&self) -> u32[src]

pub fn set_property_long_press_timeout(&self, long_press_timeout: u32)[src]

pub fn get_property_small_screen(&self) -> bool[src]

pub fn set_property_small_screen(&self, small_screen: bool)[src]

pub fn get_property_touch_mode(&self) -> bool[src]

pub fn set_property_touch_mode(&self, touch_mode: bool)[src]

pub fn connect_property_drag_threshold_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_font_name_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_icon_theme_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_long_press_timeout_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_small_screen_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_touch_mode_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

Loading content...

Implementors

impl<O> SettingsExt for O where
    O: Is<Settings>, 
[src]

Loading content...