pub trait ActionRowExt: IsA<ActionRow> + Sealed + 'static {
Show 20 methods // Provided methods fn activate(&self) { ... } fn add_prefix(&self, widget: &impl IsA<Widget>) { ... } fn activatable_widget(&self) -> Option<Widget> { ... } fn icon_name(&self) -> Option<GString> { ... } fn subtitle(&self) -> Option<GString> { ... } fn subtitle_lines(&self) -> i32 { ... } fn title_lines(&self) -> i32 { ... } fn uses_underline(&self) -> bool { ... } fn set_activatable_widget(&self, widget: Option<&impl IsA<Widget>>) { ... } fn set_icon_name(&self, icon_name: &str) { ... } fn set_subtitle(&self, subtitle: Option<&str>) { ... } fn set_subtitle_lines(&self, subtitle_lines: i32) { ... } fn set_title_lines(&self, title_lines: i32) { ... } fn set_use_underline(&self, use_underline: bool) { ... } fn connect_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn connect_activatable_widget_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_subtitle_lines_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_title_lines_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all ActionRow methods.

Implementors

ActionRow, ComboRow

Provided Methods§

source

fn activate(&self)

Activates @self.

source

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

Adds a prefix widget to @self.

widget

the prefix widget

source

fn activatable_widget(&self) -> Option<Widget>

Gets the widget activated when @self is activated.

Returns

the activatable widget for @self

source

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

Gets the icon name for @self.

Returns

the icon name for @self

source

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

Gets the subtitle for @self.

Returns

the subtitle for @self

source

fn subtitle_lines(&self) -> i32

Available on crate feature v1_2 only.

Gets the number of lines at the end of which the subtitle label will be ellipsized.

If the value is 0, the number of lines won’t be limited.

Returns

the number of lines at the end of which the subtitle label will be ellipsized

source

fn title_lines(&self) -> i32

Available on crate feature v1_2 only.

Gets the number of lines at the end of which the title label will be ellipsized.

If the value is 0, the number of lines won’t be limited.

Returns

the number of lines at the end of which the title label will be ellipsized

source

fn uses_underline(&self) -> bool

Gets whether an embedded underline in the title or subtitle indicates a mnemonic.

Returns

whether an embedded underline in the title or subtitle indicates a mnemonic

source

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

Sets the widget to activate when @self is activated.

widget

the target widget

source

fn set_icon_name(&self, icon_name: &str)

Sets the icon name for @self.

icon_name

the icon name

source

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

Sets the subtitle for @self.

subtitle

the subtitle

source

fn set_subtitle_lines(&self, subtitle_lines: i32)

Available on crate feature v1_2 only.

Sets the number of lines at the end of which the subtitle label will be ellipsized.

If the value is 0, the number of lines won’t be limited.

subtitle_lines

the number of lines at the end of which the subtitle label will be ellipsized

source

fn set_title_lines(&self, title_lines: i32)

Available on crate feature v1_2 only.

Sets the number of lines at the end of which the title label will be ellipsized.

If the value is 0, the number of lines won’t be limited.

title_lines

the number of lines at the end of which the title label will be ellipsized

source

fn set_use_underline(&self, use_underline: bool)

Sets whether an embedded underline in the title or subtitle indicates a mnemonic.

use_underline

TRUE if underlines in the text indicate mnemonics

source

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

This signal is emitted after the row has been activated.

source

fn connect_activatable_widget_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_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

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

Available on crate feature v1_2 only.
source

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

Available on crate feature v1_2 only.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<ActionRow>> ActionRowExt for O