EntryRowExt

Trait EntryRowExt 

Source
pub trait EntryRowExt: IsA<EntryRow> + 'static {
Show 29 methods // Provided methods fn add_prefix(&self, widget: &impl IsA<Widget>) { ... } fn add_suffix(&self, widget: &impl IsA<Widget>) { ... } fn activates_default(&self) -> bool { ... } fn attributes(&self) -> Option<AttrList> { ... } fn enables_emoji_completion(&self) -> bool { ... } fn input_hints(&self) -> InputHints { ... } fn input_purpose(&self) -> InputPurpose { ... } fn max_length(&self) -> i32 { ... } fn shows_apply_button(&self) -> bool { ... } fn text_length(&self) -> u32 { ... } fn grab_focus_without_selecting(&self) -> bool { ... } fn remove(&self, widget: &impl IsA<Widget>) { ... } fn set_activates_default(&self, activates: bool) { ... } fn set_attributes(&self, attributes: Option<&AttrList>) { ... } fn set_enable_emoji_completion(&self, enable_emoji_completion: bool) { ... } fn set_input_hints(&self, hints: InputHints) { ... } fn set_input_purpose(&self, purpose: InputPurpose) { ... } fn set_max_length(&self, max_length: i32) { ... } fn set_show_apply_button(&self, show_apply_button: bool) { ... } fn connect_apply<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn connect_entry_activated<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_activates_default_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_attributes_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_enable_emoji_completion_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_input_hints_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_input_purpose_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_max_length_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_show_apply_button_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_text_length_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn add_prefix(&self, widget: &impl IsA<Widget>)

Source

fn add_suffix(&self, widget: &impl IsA<Widget>)

Source

fn activates_default(&self) -> bool

Source

fn attributes(&self) -> Option<AttrList>

Source

fn enables_emoji_completion(&self) -> bool

Source

fn input_hints(&self) -> InputHints

Source

fn input_purpose(&self) -> InputPurpose

Source

fn max_length(&self) -> i32

Source

fn shows_apply_button(&self) -> bool

Source

fn text_length(&self) -> u32

Source

fn grab_focus_without_selecting(&self) -> bool

Source

fn remove(&self, widget: &impl IsA<Widget>)

Source

fn set_activates_default(&self, activates: bool)

Source

fn set_attributes(&self, attributes: Option<&AttrList>)

Source

fn set_enable_emoji_completion(&self, enable_emoji_completion: bool)

Source

fn set_input_hints(&self, hints: InputHints)

Source

fn set_input_purpose(&self, purpose: InputPurpose)

Source

fn set_max_length(&self, max_length: i32)

Source

fn set_show_apply_button(&self, show_apply_button: bool)

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§