mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
27 lines
565 B
C++
27 lines
565 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
|
|
class GAction;
|
|
|
|
class GMenuItem {
|
|
public:
|
|
enum Type { Invalid, Action, Separator };
|
|
|
|
explicit GMenuItem(Type);
|
|
explicit GMenuItem(Retained<GAction>&&);
|
|
~GMenuItem();
|
|
|
|
Type type() const { return m_type; }
|
|
String text() const;
|
|
const GAction* action() const { return m_action.ptr(); }
|
|
GAction* action() { return m_action.ptr(); }
|
|
unsigned identifier() const { return m_identifier; }
|
|
|
|
private:
|
|
Type m_type { Invalid };
|
|
unsigned m_identifier { 0 };
|
|
RetainPtr<GAction> m_action;
|
|
};
|
|
|