Trait gtk::prelude::ExpanderExt

source ·
pub trait ExpanderExt: IsA<Expander> + Sealed + 'static {
Show 23 methods // Provided methods fn is_expanded(&self) -> bool { ... } fn label(&self) -> Option<GString> { ... } fn is_label_fill(&self) -> bool { ... } fn label_widget(&self) -> Option<Widget> { ... } fn resizes_toplevel(&self) -> bool { ... } fn uses_markup(&self) -> bool { ... } fn uses_underline(&self) -> bool { ... } fn set_expanded(&self, expanded: bool) { ... } fn set_label(&self, label: Option<&str>) { ... } fn set_label_fill(&self, label_fill: bool) { ... } fn set_label_widget(&self, label_widget: Option<&impl IsA<Widget>>) { ... } fn set_resize_toplevel(&self, resize_toplevel: bool) { ... } fn set_use_markup(&self, use_markup: bool) { ... } fn set_use_underline(&self, use_underline: bool) { ... } fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn emit_activate(&self) { ... } fn connect_expanded_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_label_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_label_fill_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_label_widget_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_resize_toplevel_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_use_markup_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_use_underline_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn is_expanded(&self) -> bool

source

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

source

fn is_label_fill(&self) -> bool

source

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

source

fn resizes_toplevel(&self) -> bool

source

fn uses_markup(&self) -> bool

source

fn uses_underline(&self) -> bool

source

fn set_expanded(&self, expanded: bool)

source

fn set_label(&self, label: Option<&str>)

source

fn set_label_fill(&self, label_fill: bool)

source

fn set_label_widget(&self, label_widget: Option<&impl IsA<Widget>>)

source

fn set_resize_toplevel(&self, resize_toplevel: bool)

source

fn set_use_markup(&self, use_markup: bool)

source

fn set_use_underline(&self, use_underline: bool)

source

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

source

fn emit_activate(&self)

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§