pub struct EntryCompletionBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct EntryCompletion
objects.
Implementations§
Source§impl EntryCompletionBuilder
impl EntryCompletionBuilder
Sourcepub fn cell_area(self, cell_area: &impl IsA<CellArea>) -> Self
👎Deprecated: Since 4.10
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
👎Deprecated: Since 4.10
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
👎Deprecated: Since 4.10
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.
Sourcepub fn minimum_key_length(self, minimum_key_length: i32) -> Self
👎Deprecated: Since 4.10
pub fn minimum_key_length(self, minimum_key_length: i32) -> Self
The minimum key length as set for completion.
Sourcepub fn model(self, model: &impl IsA<TreeModel>) -> Self
👎Deprecated: Since 4.10
pub fn model(self, model: &impl IsA<TreeModel>) -> Self
The model used as data source.
Sourcepub fn popup_completion(self, popup_completion: bool) -> Self
👎Deprecated: Since 4.10
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
👎Deprecated: Since 4.10
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
👎Deprecated: Since 4.10
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
.
Sourcepub fn text_column(self, text_column: i32) -> Self
👎Deprecated: Since 4.10
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.
Sourcepub fn build(self) -> EntryCompletion
👎Deprecated: Since 4.10
pub fn build(self) -> EntryCompletion
Build the EntryCompletion
.