Trait components::SettingsExt[][src]

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

Required methods

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

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

Loading content...