pub trait PreferencesGroupExt: IsA<PreferencesGroup> + Sealed + 'static {
    // Provided methods
    fn description(&self) -> Option<GString> { ... }
    fn title(&self) -> Option<GString> { ... }
    fn uses_markup(&self) -> bool { ... }
    fn set_description(&self, description: &str) { ... }
    fn set_title(&self, title: &str) { ... }
    fn set_use_markup(&self, use_markup: bool) { ... }
    fn connect_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all PreferencesGroup methods.

Implementors

PreferencesGroup

Provided Methods§

source

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

Returns

the description of @self

source

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

Gets the title of @self.

Returns

the title of @self

source

fn uses_markup(&self) -> bool

Available on crate feature v1_4 only.

Gets whether @self uses markup for the title and description.

Returns

whether @self uses markup for its labels

source

fn set_description(&self, description: &str)

Sets the description for @self.

description

the description

source

fn set_title(&self, title: &str)

Sets the title for @self.

title

the title

source

fn set_use_markup(&self, use_markup: bool)

Available on crate feature v1_4 only.

Sets whether @self uses markup for the title and description.

use_markup

whether to use markup

source

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

source

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

source

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

Available on crate feature v1_4 only.

Object Safety§

This trait is not object safe.

Implementors§