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

Trait containing all ExpanderRow methods.

Implementors

ExpanderRow

Provided Methods§

source

fn add_action(&self, widget: &impl IsA<Widget>)

Adds an action widget to @self.

widget

the action widget

source

fn add_prefix(&self, widget: &impl IsA<Widget>)

Adds a prefix widget to @self.

widget

the prefix widget

source

fn enables_expansion(&self) -> bool

Gets whether the expansion of @self is enabled.

Returns

whether the expansion of @self is enabled

source

fn is_expanded(&self) -> bool

source

fn icon_name(&self) -> Option<GString>

Gets the icon name for @self.

Returns

the icon name for @self

source

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

source

fn subtitle(&self) -> Option<GString>

Gets the subtitle for @self.

Returns

the subtitle for @self

source

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

source

fn set_enable_expansion(&self, enable_expansion: bool)

Sets whether the expansion of @self is enabled.

enable_expansion

TRUE to enable the expansion

source

fn set_expanded(&self, expanded: bool)

source

fn set_icon_name(&self, icon_name: &str)

Sets the icon name for @self.

icon_name

the icon name

source

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

source

fn set_subtitle(&self, subtitle: Option<&str>)

Sets the subtitle for @self.

subtitle

the subtitle

source

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

source

fn connect_enable_expansion_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_expanded_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_show_enable_switch_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§