ladybird/Libraries/LibGUI/GWindowType.h
Robin Burchell 0a1bd03f1d 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.
2019-07-14 00:06:47 +02:00

14 lines
194 B
C

#pragma once
// Keep this in sync with WSWindowType.
enum class GWindowType {
Invalid = 0,
Normal,
Menu,
WindowSwitcher,
Taskbar,
Tooltip,
Menubar,
Launcher,
};