pub trait KeypadExt: IsA<Keypad> + Sealed + 'static {
Show 21 methods // Provided methods fn column_spacing(&self) -> u32 { ... } fn end_action(&self) -> Option<Widget> { ... } fn entry(&self) -> Option<Entry> { ... } fn is_letters_visible(&self) -> bool { ... } fn row_spacing(&self) -> u32 { ... } fn start_action(&self) -> Option<Widget> { ... } fn is_symbols_visible(&self) -> bool { ... } fn set_column_spacing(&self, spacing: u32) { ... } fn set_end_action(&self, end_action: Option<&impl IsA<Widget>>) { ... } fn set_entry(&self, entry: Option<&impl IsA<Entry>>) { ... } fn set_letters_visible(&self, letters_visible: bool) { ... } fn set_row_spacing(&self, spacing: u32) { ... } fn set_start_action(&self, start_action: Option<&impl IsA<Widget>>) { ... } fn set_symbols_visible(&self, symbols_visible: bool) { ... } fn connect_column_spacing_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_end_action_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_entry_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_letters_visible_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_row_spacing_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_start_action_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_symbols_visible_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all Keypad methods.

Implementors

Keypad

Provided Methods§

source

fn column_spacing(&self) -> u32

Returns the amount of space between the columns of @self.

Returns

the column spacing of @self

source

fn end_action(&self) -> Option<Widget>

Gets the widget for the lower right corner (or left, in RTL locales).

Returns

the end action widget

source

fn entry(&self) -> Option<Entry>

Gets the connected entry.

Returns

the entry set

source

fn is_letters_visible(&self) -> bool

Gets whether standard letters are displayed below the digits on the buttons.

Returns

whether the letters below the digits should be visible

source

fn row_spacing(&self) -> u32

Returns the amount of space between the rows of @self.

Returns

the row spacing of @self

source

fn start_action(&self) -> Option<Widget>

Gets the widget for the lower left corner (or right, in RTL locales).

Returns

the start action widget

source

fn is_symbols_visible(&self) -> bool

Gets whether symbols are displayed.

Returns

whether symboles are visible

source

fn set_column_spacing(&self, spacing: u32)

Sets the amount of space between columns of @self.

spacing

the amount of space to insert between columns

source

fn set_end_action(&self, end_action: Option<&impl IsA<Widget>>)

Sets the widget for the lower right corner (or left, in RTL locales).

end_action

the end action widget

source

fn set_entry(&self, entry: Option<&impl IsA<Entry>>)

Binds @entry to @self.

entry

an entry

source

fn set_letters_visible(&self, letters_visible: bool)

Sets whether standard letters are displayed below the digits on the buttons.

letters_visible

whether the letters below the digits should be visible

source

fn set_row_spacing(&self, spacing: u32)

Sets the amount of space between rows of @self.

spacing

the amount of space to insert between rows

source

fn set_start_action(&self, start_action: Option<&impl IsA<Widget>>)

Sets the widget for the lower left corner (or right, in RTL locales).

start_action

the start action widget

source

fn set_symbols_visible(&self, symbols_visible: bool)

Sets whether standard letters are displayed below the digits on the buttons.

symbols_visible

whether the hash, plus, and asterisk symbols should be visible

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<Keypad>> KeypadExt for O