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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for EntryCompletionBuilder
impl Default for EntryCompletionBuilder
sourcefn default() -> EntryCompletionBuilder
fn default() -> EntryCompletionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for EntryCompletionBuilder
impl !Send for EntryCompletionBuilder
impl !Sync for EntryCompletionBuilder
impl Unpin for EntryCompletionBuilder
impl UnwindSafe for EntryCompletionBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more