mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
145aa27b8f
Eventually these identifiers will be sent to the userspace client who created the menu. None of that is hooked up yet though.
36 lines
738 B
C++
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;
|
|
};
|
|
|