Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-30 | LibKeyboard: get_char now handles e0 prefix for control keys | Gal Horowitz | |
Control keys which have numpad counter-parts have the same scancode except for an e0 prefix. We now return a 0 code_point for those keys. | |||
2020-08-06 | Kernel+LibKeyboard: Store the keymap name when setting system keymap | Valtteri Koskivuori | |
This way we can query the kernel to see which keymap is currently in use. | |||
2020-08-02 | LibKeyboard: Don't compile CharacterMap:set_system_map in kernel mode | Brian Gianforcaro | |
In preparation for using Userspace<T> in Syscall::SC_setkeymap_params remove the usage of SC_setkeymap_params from when compiling in kernel mode. In kernel model we would need to do a bunch of explicit FlatPtr cats to in order to get it to compile, and it's unused anyway, so just avoid the pain. | |||
2020-07-04 | Kernel: Move headers intended for userspace use into Kernel/API/ | Andreas Kling | |
2020-06-16 | LibKeyboard: Replace char data type to u32 for code point | Hüseyin ASLITÜRK | |
2020-06-13 | LibKeyboard: Move character map from Kernel to LibKeyboard | Hüseyin ASLITÜRK | |
2020-06-03 | LibKeyboard: Add new library for keyboard applications | Hüseyin ASLITÜRK | |
Move shared code base from keymap and KeyboardMapper to this library. |