summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/WindowManagerClient.ipc
diff options
context:
space:
mode:
authorConor Byrne <71222289+dreamhopping@users.noreply.github.com>2021-04-17 23:21:24 +0100
committerAndreas Kling <kling@serenityos.org>2021-04-19 20:03:25 +0200
commit88ecfa164a7bb07dccc0e4ccbe11ed66f4d7fa67 (patch)
tree91d531b43df7d1847dfa2c70dfbfb522916399bd /Userland/Services/WindowServer/WindowManagerClient.ipc
parentec3596545abd68dc94324ce6f30ba05051c595d5 (diff)
downloadserenity-88ecfa164a7bb07dccc0e4ccbe11ed66f4d7fa67.zip
LibGUI+WindowServer: Add WM_SuperKeyPressed event
This commit adds an event called WM_SuperKeyPressed which is sent to all windows via WindowManagerServerConnection. The event is fired from WindowManager when the super key is pressed, which is the windows key on most keyboards :)
Diffstat (limited to 'Userland/Services/WindowServer/WindowManagerClient.ipc')
-rw-r--r--Userland/Services/WindowServer/WindowManagerClient.ipc1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WindowServer/WindowManagerClient.ipc b/Userland/Services/WindowServer/WindowManagerClient.ipc
index 40a06e58f3..4c3c9c071d 100644
--- a/Userland/Services/WindowServer/WindowManagerClient.ipc
+++ b/Userland/Services/WindowServer/WindowManagerClient.ipc
@@ -5,4 +5,5 @@ endpoint WindowManagerClient = 1872
WindowIconBitmapChanged(i32 wm_id, i32 client_id, i32 window_id, Gfx::ShareableBitmap bitmap) =|
WindowRectChanged(i32 wm_id, i32 client_id, i32 window_id, Gfx::IntRect rect) =|
AppletAreaSizeChanged(i32 wm_id, Gfx::IntSize size) =|
+ SuperKeyPressed(i32 wm_id) =|
}