pub trait PreferencesRowExt: 'static {
    // Required methods
    fn title(&self) -> GString;
    fn uses_underline(&self) -> bool;
    fn set_title(&self, title: &str);
    fn set_use_underline(&self, use_underline: bool);
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_use_underline_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn title(&self) -> GString

source

fn uses_underline(&self) -> bool

source

fn set_title(&self, title: &str)

source

fn set_use_underline(&self, use_underline: bool)

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_use_underline_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§