1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-14 03:31:00 +00:00
serenity/Servers/WindowServer/WSWindowType.h
Andreas Kling 9ac17c7bc9 WindowServer: Render the global menubar into a separate WSWindow.
Previously we were rendering the whole menubar on every compose(),
even if nothing changed about it. Now it's in its own window and can
be invalidated and painted separately.
2019-06-21 08:19:43 +02:00

11 lines
141 B
C

#pragma once
enum class WSWindowType {
Invalid = 0,
Normal,
Menu,
WindowSwitcher,
Taskbar,
Tooltip,
Menubar,
};