Trait gtk::ToolItemGroupExt[][src]

pub trait ToolItemGroupExt: 'static {
    fn get_collapsed(&self) -> bool;
fn get_drop_item(&self, x: i32, y: i32) -> Option<ToolItem>;
fn get_ellipsize(&self) -> EllipsizeMode;
fn get_header_relief(&self) -> ReliefStyle;
fn get_item_position<P: IsA<ToolItem>>(&self, item: &P) -> i32;
fn get_label(&self) -> Option<GString>;
fn get_label_widget(&self) -> Option<Widget>;
fn get_n_items(&self) -> u32;
fn get_nth_item(&self, index: u32) -> Option<ToolItem>;
fn insert<P: IsA<ToolItem>>(&self, item: &P, position: i32);
fn set_collapsed(&self, collapsed: bool);
fn set_ellipsize(&self, ellipsize: EllipsizeMode);
fn set_header_relief(&self, style: ReliefStyle);
fn set_item_position<P: IsA<ToolItem>>(&self, item: &P, position: i32);
fn set_label(&self, label: &str);
fn set_label_widget<P: IsA<Widget>>(&self, label_widget: &P);
fn get_item_expand<T: IsA<ToolItem>>(&self, item: &T) -> bool;
fn set_item_expand<T: IsA<ToolItem>>(&self, item: &T, expand: bool);
fn get_item_fill<T: IsA<ToolItem>>(&self, item: &T) -> bool;
fn set_item_fill<T: IsA<ToolItem>>(&self, item: &T, fill: bool);
fn get_item_homogeneous<T: IsA<ToolItem>>(&self, item: &T) -> bool;
fn set_item_homogeneous<T: IsA<ToolItem>>(
        &self,
        item: &T,
        homogeneous: bool
    );
fn get_item_new_row<T: IsA<ToolItem>>(&self, item: &T) -> bool;
fn set_item_new_row<T: IsA<ToolItem>>(&self, item: &T, new_row: bool);
fn connect_property_collapsed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_ellipsize_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_header_relief_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_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

fn get_drop_item(&self, x: i32, y: i32) -> Option<ToolItem>[src]

fn get_ellipsize(&self) -> EllipsizeMode[src]

fn get_header_relief(&self) -> ReliefStyle[src]

fn get_item_position<P: IsA<ToolItem>>(&self, item: &P) -> i32[src]

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

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

fn get_n_items(&self) -> u32[src]

fn get_nth_item(&self, index: u32) -> Option<ToolItem>[src]

fn insert<P: IsA<ToolItem>>(&self, item: &P, position: i32)[src]

fn set_collapsed(&self, collapsed: bool)[src]

fn set_ellipsize(&self, ellipsize: EllipsizeMode)[src]

fn set_header_relief(&self, style: ReliefStyle)[src]

fn set_item_position<P: IsA<ToolItem>>(&self, item: &P, position: i32)[src]

fn set_label(&self, label: &str)[src]

fn set_label_widget<P: IsA<Widget>>(&self, label_widget: &P)[src]

fn get_item_expand<T: IsA<ToolItem>>(&self, item: &T) -> bool[src]

fn set_item_expand<T: IsA<ToolItem>>(&self, item: &T, expand: bool)[src]

fn get_item_fill<T: IsA<ToolItem>>(&self, item: &T) -> bool[src]

fn set_item_fill<T: IsA<ToolItem>>(&self, item: &T, fill: bool)[src]

fn get_item_homogeneous<T: IsA<ToolItem>>(&self, item: &T) -> bool[src]

fn set_item_homogeneous<T: IsA<ToolItem>>(&self, item: &T, homogeneous: bool)[src]

fn get_item_new_row<T: IsA<ToolItem>>(&self, item: &T) -> bool[src]

fn set_item_new_row<T: IsA<ToolItem>>(&self, item: &T, new_row: bool)[src]

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

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

fn connect_property_header_relief_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_widget_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<ToolItemGroup>> ToolItemGroupExt for O[src]

Loading content...