summaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/guiSQLiteStudio/actionentry.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/actionentry.h')
-rw-r--r--SQLiteStudio3/guiSQLiteStudio/actionentry.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/actionentry.h b/SQLiteStudio3/guiSQLiteStudio/actionentry.h
new file mode 100644
index 0000000..861cffb
--- /dev/null
+++ b/SQLiteStudio3/guiSQLiteStudio/actionentry.h
@@ -0,0 +1,30 @@
+#ifndef ACTIONENTRY_H
+#define ACTIONENTRY_H
+
+#include "dbtree/dbtree.h"
+#include <QString>
+#include <QIcon>
+
+struct GUI_API_EXPORT ActionEntry
+{
+ enum class Type
+ {
+ SINGLE,
+ SUB_MENU
+ };
+
+ QString subMenuLabel;
+ QIcon subMenuIcon;
+ QList<DbTree::Action> actions;
+ DbTree::Action action;
+ Type type;
+
+ ActionEntry(const DbTree::Action &action);
+ ActionEntry(const QString& subMenuLabel);
+ ActionEntry(const Icon& icon, const QString& subMenuLabel);
+ ActionEntry(const QIcon& icon, const QString& subMenuLabel);
+ ActionEntry& operator=(const DbTree::Action& action);
+ ActionEntry& operator+=(const DbTree::Action& action);
+};
+
+#endif // ACTIONENTRY_H