serenity/WindowServer/WSMenuItem.h
Andreas Kling 145aa27b8f WindowServer: Give menu items an identifier field and add a simple callback.
Eventually these identifiers will be sent to the userspace client who created
the menu. None of that is hooked up yet though.
2019-02-11 10:55:02 +01:00

36 lines
738 B
C++

#pragma once
#include <AK/AKString.h>
#include <AK/Function.h>
#include <SharedGraphics/Rect.h>
class WSMenuItem {
public:
enum Type {
None,
Text,
Separator,
};
explicit WSMenuItem(unsigned identifier, const String& text);
explicit WSMenuItem(Type);
~WSMenuItem();
Type type() const { return m_type; }
bool enabled() const { return m_enabled; }
String text() const { return m_text; }
void set_rect(const Rect& rect) { m_rect = rect; }
Rect rect() const { return m_rect; }
unsigned identifier() const { return m_identifier; }
private:
Type m_type { None };
bool m_enabled { true };
unsigned m_identifier { 0 };
String m_text;
Rect m_rect;
};