Trait libhandy::prelude::PreferencesGroupExt
source · pub trait PreferencesGroupExt: IsA<PreferencesGroup> + Sealed + 'static {
// Provided methods
fn description(&self) -> Option<GString> { ... }
fn title(&self) -> Option<GString> { ... }
fn uses_markup(&self) -> bool { ... }
fn set_description(&self, description: &str) { ... }
fn set_title(&self, title: &str) { ... }
fn set_use_markup(&self, use_markup: bool) { ... }
fn connect_description_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_use_markup_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn description(&self) -> Option<GString>
fn description(&self) -> Option<GString>
Returns
the description of @self
sourcefn uses_markup(&self) -> bool
fn uses_markup(&self) -> bool
Available on crate feature
v1_4
only.Gets whether @self uses markup for the title and description.
Returns
whether @self uses markup for its labels
sourcefn set_description(&self, description: &str)
fn set_description(&self, description: &str)
sourcefn set_use_markup(&self, use_markup: bool)
fn set_use_markup(&self, use_markup: bool)
Available on crate feature
v1_4
only.fn connect_description_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
sourcefn connect_use_markup_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_use_markup_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
Available on crate feature
v1_4
only.Object Safety§
This trait is not object safe.