diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-13 23:51:33 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-14 00:06:47 +0200 |
commit | 0a1bd03f1d4763537b1e9ec20c9cc348c59ffc47 (patch) | |
tree | 9e6984b1f430a32c8317398121c6652ac1fa95a7 /Libraries/LibGUI | |
parent | bee4544192a7fb571a2f57d5e00e8fed09bdee5e (diff) | |
download | serenity-0a1bd03f1d4763537b1e9ec20c9cc348c59ffc47.zip |
WindowServer: Add a custom window type for Launcher
This keeps it out of the taskbar window list.
The stacking order is a little gnarly, but it seems to work OK still.
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r-- | Libraries/LibGUI/GWindowType.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibGUI/GWindowType.h b/Libraries/LibGUI/GWindowType.h index d620889249..04985b230d 100644 --- a/Libraries/LibGUI/GWindowType.h +++ b/Libraries/LibGUI/GWindowType.h @@ -1,5 +1,6 @@ #pragma once +// Keep this in sync with WSWindowType. enum class GWindowType { Invalid = 0, Normal, @@ -7,4 +8,6 @@ enum class GWindowType { WindowSwitcher, Taskbar, Tooltip, + Menubar, + Launcher, }; |