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

Trait containing all ContentList methods.

Implementors

ContentList

Required Methods

Implementors