PreferencesRowExt

Trait PreferencesRowExt 

Source
pub trait PreferencesRowExt: IsA<PreferencesRow> + 'static {
    // Provided methods
    fn title(&self) -> GString { ... }
    fn is_title_selectable(&self) -> bool { ... }
    fn uses_markup(&self) -> bool { ... }
    fn uses_underline(&self) -> bool { ... }
    fn set_title(&self, title: &str) { ... }
    fn set_title_selectable(&self, title_selectable: bool) { ... }
    fn set_use_markup(&self, use_markup: bool) { ... }
    fn set_use_underline(&self, use_underline: bool) { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_title_selectable_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_use_underline_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn title(&self) -> GString

Source

fn is_title_selectable(&self) -> bool

Source

fn uses_markup(&self) -> bool

Source

fn uses_underline(&self) -> bool

Source

fn set_title(&self, title: &str)

Source

fn set_title_selectable(&self, title_selectable: bool)

Source

fn set_use_markup(&self, use_markup: bool)

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_title_selectable_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§