Struct gtk::builders::EntryCompletionBuilder  
source · [−]pub struct EntryCompletionBuilder { /* private fields */ }Expand description
A builder-pattern type to construct EntryCompletion objects.
Implementations
sourceimpl EntryCompletionBuilder
 
impl EntryCompletionBuilder
sourcepub fn new() -> Self
 
pub fn new() -> Self
Create a new EntryCompletionBuilder.
sourcepub fn build(self) -> EntryCompletion
 
pub fn build(self) -> EntryCompletion
Build the EntryCompletion.
sourcepub fn cell_area(self, cell_area: &impl IsA<CellArea>) -> Self
 
pub fn cell_area(self, cell_area: &impl IsA<CellArea>) -> Self
The CellArea used to layout cell renderers in the treeview column.
If no area is specified when creating the entry completion with
EntryCompletion::with_area() a horizontally oriented
CellAreaBox will be used.
sourcepub fn inline_completion(self, inline_completion: bool) -> Self
 
pub fn inline_completion(self, inline_completion: bool) -> Self
Determines whether the common prefix of the possible completions should be inserted automatically in the entry. Note that this requires text-column to be set, even if you are using a custom match function.
sourcepub fn inline_selection(self, inline_selection: bool) -> Self
 
pub fn inline_selection(self, inline_selection: bool) -> Self
Determines whether the possible completions on the popup will appear in the entry as you navigate through them.
pub fn minimum_key_length(self, minimum_key_length: i32) -> Self
pub fn model(self, model: &impl IsA<TreeModel>) -> Self
sourcepub fn popup_completion(self, popup_completion: bool) -> Self
 
pub fn popup_completion(self, popup_completion: bool) -> Self
Determines whether the possible completions should be shown in a popup window.
sourcepub fn popup_set_width(self, popup_set_width: bool) -> Self
 
pub fn popup_set_width(self, popup_set_width: bool) -> Self
Determines whether the completions popup window will be resized to the width of the entry.
sourcepub fn popup_single_match(self, popup_single_match: bool) -> Self
 
pub fn popup_single_match(self, popup_single_match: bool) -> Self
Determines whether the completions popup window will shown
for a single possible completion. You probably want to set
this to false if you are using
[inline completion][GtkEntryCompletion–inline-completion].
sourcepub fn text_column(self, text_column: i32) -> Self
 
pub fn text_column(self, text_column: i32) -> Self
The column of the model containing the strings. Note that the strings must be UTF-8.
Trait Implementations
sourceimpl Clone for EntryCompletionBuilder
 
impl Clone for EntryCompletionBuilder
sourcefn clone(&self) -> EntryCompletionBuilder
 
fn clone(&self) -> EntryCompletionBuilder
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
 
const fn clone_from(&mut self, source: &Self)
source. Read more