From 443b043b4914d79be29bcf2aa7a3762a94459599 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 11 Feb 2019 09:47:10 +0100 Subject: WindowServer: Start implementing a menu system. I'm going with a global top-of-the-screen menu instead of per-window menus. The basic idea is that menus will live in the WindowServer and clients can create menus via WindowServer requests. --- WindowServer/WSMenuBar.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 WindowServer/WSMenuBar.cpp (limited to 'WindowServer/WSMenuBar.cpp') diff --git a/WindowServer/WSMenuBar.cpp b/WindowServer/WSMenuBar.cpp new file mode 100644 index 0000000000..80e6db9546 --- /dev/null +++ b/WindowServer/WSMenuBar.cpp @@ -0,0 +1,12 @@ +#include "WSMenuBar.h" +#include "WSMenu.h" +#include "WSMenuItem.h" + +WSMenuBar::WSMenuBar() +{ +} + +WSMenuBar::~WSMenuBar() +{ +} + -- cgit v1.2.3