pub trait PreferencesGroupExt: 'static {
    // Required methods
    fn add(&self, child: &impl IsA<Widget>);
    fn description(&self) -> Option<GString>;
    fn header_suffix(&self) -> Option<Widget>;
    fn title(&self) -> GString;
    fn remove(&self, child: &impl IsA<Widget>);
    fn set_description(&self, description: Option<&str>);
    fn set_header_suffix(&self, suffix: Option<&impl IsA<Widget>>);
    fn set_title(&self, title: &str);
    fn connect_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_header_suffix_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 header_suffix(&self) -> Option<Widget>

Available on crate feature v1_1 only.
source

fn title(&self) -> GString

source

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

source

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

source

fn set_header_suffix(&self, suffix: Option<&impl IsA<Widget>>)

Available on crate feature v1_1 only.
source

fn set_title(&self, title: &str)

source

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

source

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

Available on crate feature v1_1 only.
source

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

Implementors§