Trait libhelium::prelude::SettingsPageExt

source ·
pub trait SettingsPageExt: IsA<SettingsPage> + Sealed + 'static {
    // Provided methods
    fn add_list(&self, list: &impl IsA<SettingsList>) { ... }
    fn title(&self) -> GString { ... }
    fn set_title(&self, value: &str) { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all SettingsPage methods.

§Implementors

SettingsPage

Provided Methods§

source

fn add_list(&self, list: &impl IsA<SettingsList>)

Add a Settings List to this page

source

fn title(&self) -> GString

source

fn set_title(&self, value: &str)

source

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

Object Safety§

This trait is not object safe.

Implementors§