pub trait EntryCompletionExt: 'static {
Show 38 methods // Required methods fn complete(&self); fn compute_prefix(&self, key: &str) -> Option<GString>; fn delete_action(&self, index_: i32); fn completion_prefix(&self) -> Option<GString>; fn is_inline_completion(&self) -> bool; fn is_inline_selection(&self) -> bool; fn minimum_key_length(&self) -> i32; fn model(&self) -> Option<TreeModel>; fn is_popup_completion(&self) -> bool; fn is_popup_set_width(&self) -> bool; fn is_popup_single_match(&self) -> bool; fn text_column(&self) -> i32; fn insert_action_markup(&self, index_: i32, markup: &str); fn insert_action_text(&self, index_: i32, text: &str); fn insert_prefix(&self); fn set_inline_completion(&self, inline_completion: bool); fn set_inline_selection(&self, inline_selection: bool); fn set_match_func<P: Fn(&EntryCompletion, &str, &TreeIter) -> bool + 'static>( &self, func: P ); fn set_minimum_key_length(&self, length: i32); fn set_model(&self, model: Option<&impl IsA<TreeModel>>); fn set_popup_completion(&self, popup_completion: bool); fn set_popup_set_width(&self, popup_set_width: bool); fn set_popup_single_match(&self, popup_single_match: bool); fn set_text_column(&self, column: i32); fn cell_area(&self) -> Option<CellArea>; fn connect_action_activated<F: Fn(&Self, i32) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_cursor_on_match<F: Fn(&Self, &TreeModel, &TreeIter) -> Inhibit + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_insert_prefix<F: Fn(&Self, &str) -> Inhibit + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_match_selected<F: Fn(&Self, &TreeModel, &TreeIter) -> Inhibit + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_no_matches<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_inline_completion_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_inline_selection_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_minimum_key_length_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_model_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_popup_completion_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_popup_set_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_popup_single_match_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_text_column_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId;
}

Required Methods§

source

fn complete(&self)

source

fn compute_prefix(&self, key: &str) -> Option<GString>

source

fn delete_action(&self, index_: i32)

source

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

source

fn is_inline_completion(&self) -> bool

source

fn is_inline_selection(&self) -> bool

source

fn minimum_key_length(&self) -> i32

source

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

source

fn is_popup_completion(&self) -> bool

source

fn is_popup_set_width(&self) -> bool

source

fn is_popup_single_match(&self) -> bool

source

fn text_column(&self) -> i32

source

fn insert_action_markup(&self, index_: i32, markup: &str)

source

fn insert_action_text(&self, index_: i32, text: &str)

source

fn insert_prefix(&self)

source

fn set_inline_completion(&self, inline_completion: bool)

source

fn set_inline_selection(&self, inline_selection: bool)

source

fn set_match_func<P: Fn(&EntryCompletion, &str, &TreeIter) -> bool + 'static>( &self, func: P )

source

fn set_minimum_key_length(&self, length: i32)

source

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

source

fn set_popup_completion(&self, popup_completion: bool)

source

fn set_popup_set_width(&self, popup_set_width: bool)

source

fn set_popup_single_match(&self, popup_single_match: bool)

source

fn set_text_column(&self, column: i32)

source

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

source

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

source

fn connect_cursor_on_match<F: Fn(&Self, &TreeModel, &TreeIter) -> Inhibit + 'static>( &self, f: F ) -> SignalHandlerId

source

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

source

fn connect_match_selected<F: Fn(&Self, &TreeModel, &TreeIter) -> Inhibit + 'static>( &self, f: F ) -> SignalHandlerId

source

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

source

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

source

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

source

fn connect_minimum_key_length_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_completion_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

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

source

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

source

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

Implementors§