pub trait ActionRowExt: 'static {
Show 20 methods // Required methods fn activate(&self); fn add_prefix(&self, widget: &impl IsA<Widget>); fn add_suffix(&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 remove(&self, widget: &impl IsA<Widget>); fn set_activatable_widget(&self, widget: Option<&impl IsA<Widget>>); fn set_icon_name(&self, icon_name: Option<&str>); fn set_subtitle(&self, subtitle: &str); fn set_subtitle_lines(&self, subtitle_lines: i32); fn set_title_lines(&self, title_lines: i32); 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;
}

Required Methods§

source

fn activate(&self)

source

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

source

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

source

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

source

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

source

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

source

fn subtitle_lines(&self) -> i32

source

fn title_lines(&self) -> i32

source

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

source

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

source

fn set_icon_name(&self, icon_name: Option<&str>)

source

fn set_subtitle(&self, subtitle: &str)

source

fn set_subtitle_lines(&self, subtitle_lines: i32)

source

fn set_title_lines(&self, title_lines: i32)

source

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

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

source

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

Implementors§