Trait gtk::prelude::ComboBoxExt[][src]

pub trait ComboBoxExt: 'static {
    fn get_active_id(&self) -> Option<GString>;
fn get_active_iter(&self) -> Option<TreeIter>;
fn get_button_sensitivity(&self) -> SensitivityType;
fn get_column_span_column(&self) -> i32;
fn get_entry_text_column(&self) -> i32;
fn get_has_entry(&self) -> bool;
fn get_id_column(&self) -> i32;
fn get_model(&self) -> Option<TreeModel>;
fn get_popup_accessible(&self) -> Option<Object>;
fn get_popup_fixed_width(&self) -> bool;
fn get_row_span_column(&self) -> i32;
fn get_wrap_width(&self) -> i32;
fn popdown(&self);
fn popup(&self);
fn popup_for_device(&self, device: &Device);
fn set_active_id<'a, P: Into<Option<&'a str>>>(&self, active_id: P) -> bool;
fn set_active_iter<'a, P: Into<Option<&'a TreeIter>>>(&self, iter: P);
fn set_button_sensitivity(&self, sensitivity: SensitivityType);
fn set_column_span_column(&self, column_span: i32);
fn set_entry_text_column(&self, text_column: i32);
fn set_id_column(&self, id_column: i32);
fn set_model<'a, P: IsA<TreeModel> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        model: Q
    );
fn set_popup_fixed_width(&self, fixed: bool);
fn set_row_separator_func<P: Fn(&TreeModel, &TreeIter) -> bool + 'static>(
        &self,
        func: P
    );
fn set_row_span_column(&self, row_span: i32);
fn set_wrap_width(&self, width: i32);
fn get_property_cell_area(&self) -> Option<CellArea>;
fn get_property_has_frame(&self) -> bool;
fn set_property_has_frame(&self, has_frame: bool);
fn get_property_popup_shown(&self) -> bool;
fn connect_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_format_entry_text<F: Fn(&Self, &str) -> String + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_move_active<F: Fn(&Self, ScrollType) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_move_active(&self, scroll_type: ScrollType);
fn connect_popdown<F: Fn(&Self) -> bool + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_popdown(&self) -> bool;
fn connect_popup<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_popup(&self);
fn connect_property_active_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_active_id_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_button_sensitivity_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_column_span_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_entry_text_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_has_frame_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_id_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_model_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_popup_fixed_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_popup_shown_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_row_span_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_wrap_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

fn get_active_iter(&self) -> Option<TreeIter>[src]

fn get_button_sensitivity(&self) -> SensitivityType[src]

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

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

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

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

fn get_model(&self) -> Option<TreeModel>[src]

fn get_popup_accessible(&self) -> Option<Object>[src]

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

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

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

fn popdown(&self)[src]

fn popup(&self)[src]

fn popup_for_device(&self, device: &Device)[src]

fn set_active_id<'a, P: Into<Option<&'a str>>>(&self, active_id: P) -> bool[src]

fn set_active_iter<'a, P: Into<Option<&'a TreeIter>>>(&self, iter: P)[src]

fn set_button_sensitivity(&self, sensitivity: SensitivityType)[src]

fn set_column_span_column(&self, column_span: i32)[src]

fn set_entry_text_column(&self, text_column: i32)[src]

fn set_id_column(&self, id_column: i32)[src]

fn set_model<'a, P: IsA<TreeModel> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    model: Q
)
[src]

fn set_popup_fixed_width(&self, fixed: bool)[src]

fn set_row_separator_func<P: Fn(&TreeModel, &TreeIter) -> bool + 'static>(
    &self,
    func: P
)
[src]

fn set_row_span_column(&self, row_span: i32)[src]

fn set_wrap_width(&self, width: i32)[src]

fn get_property_cell_area(&self) -> Option<CellArea>[src]

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

fn set_property_has_frame(&self, has_frame: bool)[src]

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

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

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

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

fn emit_move_active(&self, scroll_type: ScrollType)[src]

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

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

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

fn emit_popup(&self)[src]

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

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

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

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<ComboBox>> ComboBoxExt for O[src]

Loading content...