1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 19:35:08 +00:00
serenity/WindowServer/WSMenuItem.cpp
Andreas Kling 443b043b49 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.
2019-02-11 09:47:10 +01:00

16 lines
199 B
C++

#include "WSMenuItem.h"
WSMenuItem::WSMenuItem(const String& text)
: m_type(Text)
, m_text(text)
{
}
WSMenuItem::WSMenuItem(Type type)
: m_type(type)
{
}
WSMenuItem::~WSMenuItem()
{
}