Trait gtk::ExpanderExt[][src]

pub trait ExpanderExt: 'static {
    fn get_expanded(&self) -> bool;
fn get_label(&self) -> Option<GString>;
fn get_label_fill(&self) -> bool;
fn get_label_widget(&self) -> Option<Widget>;
fn get_resize_toplevel(&self) -> bool;
fn get_spacing(&self) -> i32;
fn get_use_markup(&self) -> bool;
fn get_use_underline(&self) -> bool;
fn set_expanded(&self, expanded: bool);
fn set_label<'a, P: Into<Option<&'a str>>>(&self, label: P);
fn set_label_fill(&self, label_fill: bool);
fn set_label_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        label_widget: Q
    );
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_property_expanded_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_label_fill_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_label_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_resize_toplevel_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_use_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_use_underline_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_expanded(&self) -> bool[src]

fn get_label(&self) -> Option<GString>[src]

fn get_label_fill(&self) -> bool[src]

fn get_label_widget(&self) -> Option<Widget>[src]

fn get_resize_toplevel(&self) -> bool[src]

fn get_spacing(&self) -> i32[src]

👎 Deprecated

fn get_use_markup(&self) -> bool[src]

fn get_use_underline(&self) -> bool[src]

fn set_expanded(&self, expanded: bool)[src]

fn set_label<'a, P: Into<Option<&'a str>>>(&self, label: P)[src]

fn set_label_fill(&self, label_fill: bool)[src]

fn set_label_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    label_widget: Q
)
[src]

fn set_resize_toplevel(&self, resize_toplevel: bool)[src]

fn set_spacing(&self, spacing: i32)[src]

👎 Deprecated

fn set_use_markup(&self, use_markup: bool)[src]

fn set_use_underline(&self, use_underline: bool)[src]

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

fn emit_activate(&self)[src]

fn connect_property_expanded_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_label_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_label_fill_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_label_widget_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_resize_toplevel_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

👎 Deprecated

fn connect_property_use_markup_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_use_underline_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<Expander>> ExpanderExt for O[src]

Loading content...