#[repr(C)]pub struct KeyboardModifiers {
pub alt: bool,
pub control: bool,
pub shift: bool,
pub meta: bool,
}
Expand description
The KeyboardModifiers
struct provides booleans to indicate possible modifier keys on a keyboard, such as Shift, Control, etc.
It is provided as part of KeyEvent
’s modifiers
field.
Keyboard shortcuts on Apple platforms typically use the Command key (⌘), such as Command+C for “Copy”. On other platforms the same shortcut is typically represented using Control+C. To make it easier to develop cross-platform applications, on macOS, Slint maps the Command key to the control modifier, and the Control key to the meta modifier.
On Windows, the Windows key is mapped to the meta modifier.
Fields§
§alt: bool
Indicates the Alt key on a keyboard.
control: bool
Indicates the Control key on a keyboard, except on macOS, where it is the Command key (⌘).
shift: bool
Indicates the Shift key on a keyboard.
meta: bool
Indicates the Control key on macos, and the Windows key on Windows.
Trait Implementations§
Source§impl Clone for KeyboardModifiers
impl Clone for KeyboardModifiers
Source§fn clone(&self) -> KeyboardModifiers
fn clone(&self) -> KeyboardModifiers
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more