summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-01 18:22:59 -0500
committerLouie S <louie@example.com>2024-03-01 18:22:59 -0500
commit74c9ba962ffe142b04f77fd831438a75eec7b46b (patch)
tree3e59b5cd84d452a6580dec125fcb441d2d251945 /src/group.h
parent4b99428a0e73c9e573624b2784464ce8ae632e33 (diff)
Add right-click skeletons to groups
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