pub trait PreferencesPageExt: IsA<PreferencesPage> + Sealed + 'static {
    // Provided methods
    fn icon_name(&self) -> Option<GString> { ... }
    fn title(&self) -> Option<GString> { ... }
    fn set_icon_name(&self, icon_name: Option<&str>) { ... }
    fn set_title(&self, title: Option<&str>) { ... }
    fn connect_icon_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all PreferencesPage methods.

Implementors

PreferencesPage

Provided Methods§

source

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

Gets the icon name for @self.

Returns

the icon name for @self

source

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

Gets the title of @self.

Returns

the title of the @self

source

fn set_icon_name(&self, icon_name: Option<&str>)

Sets the icon name for @self.

icon_name

the icon name

source

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

Sets the title of @self.

title

the title of the page

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§