Trait gtk::prelude::ComboBoxExt

source ·
pub trait ComboBoxExt: IsA<ComboBox> + Sealed + 'static {
Show 50 methods // Provided methods fn active_id(&self) -> Option<GString> { ... } fn active_iter(&self) -> Option<TreeIter> { ... } fn button_sensitivity(&self) -> SensitivityType { ... } fn column_span_column(&self) -> i32 { ... } fn entry_text_column(&self) -> i32 { ... } fn has_entry(&self) -> bool { ... } fn id_column(&self) -> i32 { ... } fn model(&self) -> Option<TreeModel> { ... } fn popup_accessible(&self) -> Option<Object> { ... } fn is_popup_fixed_width(&self) -> bool { ... } fn row_span_column(&self) -> i32 { ... } fn wrap_width(&self) -> i32 { ... } fn popdown(&self) { ... } fn popup(&self) { ... } fn popup_for_device(&self, device: &Device) { ... } fn set_active_id(&self, active_id: Option<&str>) -> bool { ... } fn set_active_iter(&self, iter: Option<&TreeIter>) { ... } 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(&self, model: Option<&impl IsA<TreeModel>>) { ... } 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 cell_area(&self) -> Option<CellArea> { ... } fn has_frame(&self) -> bool { ... } fn set_has_frame(&self, has_frame: bool) { ... } fn is_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_active_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_active_id_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_button_sensitivity_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_column_span_column_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_entry_text_column_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_has_frame_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_id_column_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_model_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_popup_fixed_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_popup_shown_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_row_span_column_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_wrap_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

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

source

fn active_iter(&self) -> Option<TreeIter>

source

fn button_sensitivity(&self) -> SensitivityType

source

fn column_span_column(&self) -> i32

source

fn entry_text_column(&self) -> i32

source

fn has_entry(&self) -> bool

source

fn id_column(&self) -> i32

source

fn model(&self) -> Option<TreeModel>

source

fn popup_accessible(&self) -> Option<Object>

source

fn is_popup_fixed_width(&self) -> bool

source

fn row_span_column(&self) -> i32

source

fn wrap_width(&self) -> i32

source

fn popdown(&self)

source

fn popup(&self)

source

fn popup_for_device(&self, device: &Device)

source

fn set_active_id(&self, active_id: Option<&str>) -> bool

source

fn set_active_iter(&self, iter: Option<&TreeIter>)

source

fn set_button_sensitivity(&self, sensitivity: SensitivityType)

source

fn set_column_span_column(&self, column_span: i32)

source

fn set_entry_text_column(&self, text_column: i32)

source

fn set_id_column(&self, id_column: i32)

source

fn set_model(&self, model: Option<&impl IsA<TreeModel>>)

source

fn set_popup_fixed_width(&self, fixed: bool)

source

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

source

fn set_row_span_column(&self, row_span: i32)

source

fn set_wrap_width(&self, width: i32)

source

fn cell_area(&self) -> Option<CellArea>

source

fn has_frame(&self) -> bool

source

fn set_has_frame(&self, has_frame: bool)

source

fn is_popup_shown(&self) -> bool

source

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

source

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

source

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

source

fn emit_move_active(&self, scroll_type: ScrollType)

source

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

source

fn emit_popdown(&self) -> bool

source

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

source

fn emit_popup(&self)

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§