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
Provided Methods§
sourcefn column_spacing(&self) -> u32
fn column_spacing(&self) -> u32
sourcefn end_action(&self) -> Option<Widget>
fn end_action(&self) -> Option<Widget>
sourcefn is_letters_visible(&self) -> bool
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
sourcefn row_spacing(&self) -> u32
fn row_spacing(&self) -> u32
sourcefn start_action(&self) -> Option<Widget>
fn start_action(&self) -> Option<Widget>
Gets the widget for the lower left corner (or right, in RTL locales).
Returns
the start action widget
sourcefn is_symbols_visible(&self) -> bool
fn is_symbols_visible(&self) -> bool
sourcefn set_column_spacing(&self, spacing: u32)
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
sourcefn set_end_action(&self, end_action: Option<&impl IsA<Widget>>)
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
sourcefn set_letters_visible(&self, letters_visible: bool)
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
sourcefn set_row_spacing(&self, spacing: u32)
fn set_row_spacing(&self, spacing: u32)
sourcefn set_start_action(&self, start_action: Option<&impl IsA<Widget>>)
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
sourcefn set_symbols_visible(&self, symbols_visible: bool)
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