Trait libhandy::prelude::ActionRowExt
source · 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
Provided Methods§
sourcefn add_prefix(&self, widget: &impl IsA<Widget>)
fn add_prefix(&self, widget: &impl IsA<Widget>)
sourcefn activatable_widget(&self) -> Option<Widget>
fn activatable_widget(&self) -> Option<Widget>
sourcefn subtitle_lines(&self) -> i32
fn subtitle_lines(&self) -> i32
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
sourcefn title_lines(&self) -> i32
fn title_lines(&self) -> i32
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
sourcefn uses_underline(&self) -> bool
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
sourcefn set_activatable_widget(&self, widget: Option<&impl IsA<Widget>>)
fn set_activatable_widget(&self, widget: Option<&impl IsA<Widget>>)
sourcefn set_icon_name(&self, icon_name: &str)
fn set_icon_name(&self, icon_name: &str)
sourcefn set_subtitle(&self, subtitle: Option<&str>)
fn set_subtitle(&self, subtitle: Option<&str>)
sourcefn set_subtitle_lines(&self, subtitle_lines: i32)
fn set_subtitle_lines(&self, subtitle_lines: i32)
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
sourcefn set_title_lines(&self, title_lines: i32)
fn set_title_lines(&self, title_lines: i32)
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
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 indicates a mnemonic.
use_underline
TRUE
if underlines in the text indicate mnemonics
sourcefn connect_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
This signal is emitted after the row has been activated.
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
sourcefn connect_subtitle_lines_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_subtitle_lines_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
v1_2
only.sourcefn connect_title_lines_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_title_lines_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
v1_2
only.