Key Handling Overview
To handle keyboard input in Slint, use the FocusScope
or individual key-pressed
and key-released
callbacks in various elements. Keyboard
input is delivered via KeyEvent
data structures. The primary field of this data structure is the text
property, which holds all affected keys
encoded in a string. Use the Key
namespace to identify known named keys.
KeyEvent
This structure is generated and passed to the key press and release callbacks of the FocusScope
element.
text
(string): The unicode representation of the key pressed.modifiers
(KeyboardModifiers): The keyboard modifiers active at the time of the key press event.repeat
(bool): This field is set to true for key press events that are repeated, i.e. the key is held down. It’s always false for key release events.
Key Namespace
Use the constants in the Key
namespace to handle pressing of keys that don’t have a printable character.
Backspace
Tab
Return
Escape
Backtab
Delete
Shift
Control
Alt
AltGr
CapsLock
ShiftR
ControlR
Meta
MetaR
Space
UpArrow
DownArrow
LeftArrow
RightArrow
F1
F2
F3
F4
F5
F6
F7
F8
F9
F10
F11
F12
F13
F14
F15
F16
F17
F18
F19
F20
F21
F22
F23
F24
Insert
Home
End
PageUp
PageDown
ScrollLock
Pause
SysReq
Stop
Menu
© 2024 SixtyFPS GmbH