From 74c9ba962ffe142b04f77fd831438a75eec7b46b Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 1 Mar 2024 18:22:59 -0500 Subject: Add right-click skeletons to groups --- src/group.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/group.h') 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 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 -- cgit