Enum smithay_client_toolkit::seat::keyboard::Event [−][src]
pub enum Event<'a> {
Enter {
serial: u32,
surface: WlSurface,
rawkeys: &'a [u32],
keysyms: &'a [u32],
},
Leave {
serial: u32,
surface: WlSurface,
},
Modifiers {
modifiers: ModifiersState,
},
Key {
serial: u32,
time: u32,
rawkey: u32,
keysym: u32,
state: KeyState,
utf8: Option<String>,
},
Repeat {
time: u32,
rawkey: u32,
keysym: u32,
utf8: Option<String>,
},
}
Expand description
Events received from a mapped keyboard
Variants
Enter
The keyboard focus has entered a surface
Leave
The keyboard focus has left a surface
Modifiers
Fields
modifiers: ModifiersState
current state of the modifiers
The key modifiers have changed state
Key
Fields
serial: u32
serial number of the event
time: u32
time at which the keypress occurred
rawkey: u32
raw value of the key
keysym: u32
interpreted symbol of the key
state: KeyState
new state of the key
A key event occurred
Repeat
Fields
time: u32
time at which the repetition occured
rawkey: u32
raw value of the key
keysym: u32
interpreted symbol of the key
A key repetition event