pub trait PreferencesRowExt: IsA<PreferencesRow> + Sealed + 'static {
    // Provided methods
    fn title(&self) -> Option<GString> { ... }
    fn uses_underline(&self) -> bool { ... }
    fn set_title(&self, title: Option<&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 { ... }
}
Expand description

Provided Methods§

source

fn title(&self) -> Option<GString>

Gets the title of the preference represented by @self.

Returns

the title of the preference represented by @self

source

fn uses_underline(&self) -> bool

Gets whether an embedded underline in the title indicates a mnemonic.

Returns

whether an embedded underline in the title indicates a mnemonic

source

fn set_title(&self, title: Option<&str>)

Sets the title of the preference represented by @self.

title

the title

source

fn set_use_underline(&self, use_underline: bool)

Sets whether an embedded underline in the title indicates a mnemonic.

use_underline

TRUE if underlines in the text indicate mnemonics

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

Object Safety§

This trait is not object safe.

Implementors§