summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/group.h b/src/group.h
index 5513f7c..370cbb2 100644
--- a/src/group.h
+++ b/src/group.h
@@ -5,6 +5,8 @@
#include <QVBoxLayout>
class Group : public QVBoxLayout {
+ Q_OBJECT
+
public:
int id;
QString name;
@@ -19,6 +21,12 @@ class Group : public QVBoxLayout {
QString link = "",
bool hidden = false
);
+
+ private slots:
+ void showContextMenu();
+ void addEntry();
+ void editGroup();
+ void removeGroup();
};
#endif