[][src]Trait libhandy4::PreferencesGroupExt

pub trait PreferencesGroupExt: 'static {
    pub fn add<P: IsA<Widget>>(&self, child: &P);
pub fn get_description(&self) -> Option<GString>;
pub fn get_title(&self) -> Option<GString>;
pub fn remove<P: IsA<Widget>>(&self, child: &P);
pub fn set_description(&self, description: &str);
pub fn set_title(&self, title: &str);
pub fn connect_property_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Trait containing all PreferencesGroup methods.

Implementors

PreferencesGroup

Required methods

pub fn add<P: IsA<Widget>>(&self, child: &P)[src]

pub fn get_description(&self) -> Option<GString>[src]

Returns

the description of self.

pub fn get_title(&self) -> Option<GString>[src]

Gets the title of self.

Returns

the title of self.

pub fn remove<P: IsA<Widget>>(&self, child: &P)[src]

pub fn set_description(&self, description: &str)[src]

Sets the description for self.

description

the description

pub fn set_title(&self, title: &str)[src]

Sets the title for self.

title

the title

pub fn connect_property_description_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

pub fn connect_property_title_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<PreferencesGroup>> PreferencesGroupExt for O[src]

Loading content...