Trait gtk::prelude::ExpanderExt[][src]

pub trait ExpanderExt: 'static {
Show 26 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 spacing(&self) -> i32;
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<P: IsA<Widget>>(&self, label_widget: Option<&P>);
fn set_resize_toplevel(&self, resize_toplevel: bool);
fn set_spacing(&self, spacing: i32);
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_spacing_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;
}

Required methods

Implementors