pub trait PreferencesGroupExt: 'static {
    // Required methods
    fn add(&self, child: &impl IsA<Widget>);
    fn description(&self) -> Option<GString>;
    fn title(&self) -> GString;
    fn remove(&self, child: &impl IsA<Widget>);
    fn set_description(&self, description: Option<&str>);
    fn set_title(&self, title: &str);
    fn connect_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn add(&self, child: &impl IsA<Widget>)

source

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

source

fn title(&self) -> GString

source

fn remove(&self, child: &impl IsA<Widget>)

source

fn set_description(&self, description: Option<&str>)

source

fn set_title(&self, title: &str)

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

Implementors§