1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

Taskbar: More bringup work. We now see a basic window list.

This commit is contained in:
Andreas Kling 2019-04-04 01:44:35 +02:00
parent ea801a99dc
commit 96104b5524
20 changed files with 339 additions and 12 deletions

View file

@ -91,6 +91,9 @@ struct WSAPI_ServerMessage {
DidSetWallpaper,
DidGetWallpaper,
ScreenRectChanged,
WM_WindowAdded,
WM_WindowRemoved,
WM_WindowStateChanged,
};
Type type { Invalid };
int window_id { -1 };
@ -103,6 +106,11 @@ struct WSAPI_ServerMessage {
int server_pid;
WSAPI_Rect screen_rect;
} greeting;
struct {
int client_id;
int window_id;
WSAPI_Rect rect;
} wm;
struct {
WSAPI_Rect rect;
} screen;