Trait libhandy::prelude::PreferencesRowExt
source · pub trait PreferencesRowExt: IsA<PreferencesRow> + Sealed + 'static {
// Provided methods
fn title(&self) -> Option<GString> { ... }
fn uses_underline(&self) -> bool { ... }
fn set_title(&self, title: Option<&str>) { ... }
fn set_use_underline(&self, use_underline: bool) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_use_underline_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn title(&self) -> Option<GString>
fn title(&self) -> Option<GString>
Gets the title of the preference represented by @self.
Returns
the title of the preference represented by @self
sourcefn uses_underline(&self) -> bool
fn uses_underline(&self) -> bool
Gets whether an embedded underline in the title indicates a mnemonic.
Returns
whether an embedded underline in the title indicates a mnemonic
sourcefn set_use_underline(&self, use_underline: bool)
fn set_use_underline(&self, use_underline: bool)
Sets whether an embedded underline in the title indicates a mnemonic.
use_underline
TRUE
if underlines in the text indicate mnemonics
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_use_underline_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
Object Safety§
This trait is not object safe.