mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 18:19:03 +00:00
WindowsServer: Add scancode value to KeyEvent
This commit is contained in:
parent
c6f1962919
commit
9ec6ac31b8
Notes:
sideshowbarker
2024-07-19 05:52:00 +09:00
Author: https://github.com/asliturk
Commit: 9ec6ac31b8
Pull-request: https://github.com/SerenityOS/serenity/pull/2455
Reviewed-by: https://github.com/JonArcherII
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bugaevc
4 changed files with 11 additions and 6 deletions
|
@ -8,8 +8,8 @@ endpoint WindowClient = 4
|
|||
MouseWheel(i32 window_id, Gfx::Point mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta) =|
|
||||
WindowEntered(i32 window_id) =|
|
||||
WindowLeft(i32 window_id) =|
|
||||
KeyDown(i32 window_id, u8 character, u32 key, u32 modifiers) =|
|
||||
KeyUp(i32 window_id, u8 character, u32 key, u32 modifiers) =|
|
||||
KeyDown(i32 window_id, u8 character, u32 key, u32 modifiers, u32 scancode) =|
|
||||
KeyUp(i32 window_id, u8 character, u32 key, u32 modifiers, u32 scancode) =|
|
||||
WindowActivated(i32 window_id) =|
|
||||
WindowDeactivated(i32 window_id) =|
|
||||
WindowStateChanged(i32 window_id, bool minimized, bool occluded) =|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue