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: ModifiersStatecurrent state of the modifiers
The key modifiers have changed state
Key
Fields
serial: u32serial number of the event
time: u32time at which the keypress occurred
rawkey: u32raw value of the key
keysym: u32interpreted symbol of the key
state: KeyStatenew state of the key
A key event occurred
Repeat
Fields
time: u32time at which the repetition occured
rawkey: u32raw value of the key
keysym: u32interpreted symbol of the key
A key repetition event
