Trait libhandy::prelude::ExpanderRowExt
source · pub trait ExpanderRowExt: IsA<ExpanderRow> + Sealed + 'static {
Show 19 methods
// Provided methods
fn add_action(&self, widget: &impl IsA<Widget>) { ... }
fn add_prefix(&self, widget: &impl IsA<Widget>) { ... }
fn enables_expansion(&self) -> bool { ... }
fn is_expanded(&self) -> bool { ... }
fn icon_name(&self) -> Option<GString> { ... }
fn shows_enable_switch(&self) -> bool { ... }
fn subtitle(&self) -> Option<GString> { ... }
fn uses_underline(&self) -> bool { ... }
fn set_enable_expansion(&self, enable_expansion: bool) { ... }
fn set_expanded(&self, expanded: bool) { ... }
fn set_icon_name(&self, icon_name: &str) { ... }
fn set_show_enable_switch(&self, show_enable_switch: bool) { ... }
fn set_subtitle(&self, subtitle: Option<&str>) { ... }
fn set_use_underline(&self, use_underline: bool) { ... }
fn connect_enable_expansion_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_expanded_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_icon_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_show_enable_switch_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_subtitle_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn add_action(&self, widget: &impl IsA<Widget>)
fn add_action(&self, widget: &impl IsA<Widget>)
sourcefn add_prefix(&self, widget: &impl IsA<Widget>)
fn add_prefix(&self, widget: &impl IsA<Widget>)
sourcefn enables_expansion(&self) -> bool
fn enables_expansion(&self) -> bool
fn is_expanded(&self) -> bool
sourcefn shows_enable_switch(&self) -> bool
fn shows_enable_switch(&self) -> bool
Gets whether the switch enabling the expansion of @self is visible.
Returns
whether the switch enabling the expansion of @self is visible
sourcefn uses_underline(&self) -> bool
fn uses_underline(&self) -> bool
Gets whether an embedded underline in the title or subtitle labels indicates a mnemonic.
Returns
whether an embedded underlines indicates a mnemonic
sourcefn set_enable_expansion(&self, enable_expansion: bool)
fn set_enable_expansion(&self, enable_expansion: bool)
fn set_expanded(&self, expanded: bool)
sourcefn set_icon_name(&self, icon_name: &str)
fn set_icon_name(&self, icon_name: &str)
sourcefn set_show_enable_switch(&self, show_enable_switch: bool)
fn set_show_enable_switch(&self, show_enable_switch: bool)
Sets whether the switch enabling the expansion of @self is visible.
show_enable_switch
TRUE
to show the switch enabling the expansion
sourcefn set_subtitle(&self, subtitle: Option<&str>)
fn set_subtitle(&self, subtitle: Option<&str>)
sourcefn set_use_underline(&self, use_underline: bool)
fn set_use_underline(&self, use_underline: bool)
Sets whether an embedded underline in the title or subtitle labels indicates a mnemonic.
use_underline
TRUE
if underlines in the text indicate mnemonics
fn connect_enable_expansion_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_expanded_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_show_enable_switch_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
Object Safety§
This trait is not object safe.