diff options
| author | 2014-12-06 17:33:25 -0500 | |
|---|---|---|
| committer | 2014-12-06 17:33:25 -0500 | |
| commit | 7167ce41b61d2ba2cdb526777a4233eb84a3b66a (patch) | |
| tree | a35c14143716e1f2c98f808c81f89426045a946f /SQLiteStudio3/guiSQLiteStudio/actionentry.h | |
Imported Upstream version 2.99.6upstream/2.99.6
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/actionentry.h')
| -rw-r--r-- | SQLiteStudio3/guiSQLiteStudio/actionentry.h | 30 |
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 |
