Trait libhelium::prelude::SettingsListExt
source · pub trait SettingsListExt: IsA<SettingsList> + Sealed + 'static {
// Provided methods
fn add(&self, child: &impl IsA<Widget>) { ... }
fn remove(&self, child: &impl IsA<Widget>) { ... }
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 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
Provided Methods§
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 connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_description_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.