From c34930425fadfc4083067b9306159cd8e8ecf6c6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 23 Jul 2024 20:37:48 -0400 Subject: Rearrange source file locations --- src/frontend/qtwidgets/groupLayout.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/frontend/qtwidgets/groupLayout.h (limited to 'src/frontend/qtwidgets/groupLayout.h') diff --git a/src/frontend/qtwidgets/groupLayout.h b/src/frontend/qtwidgets/groupLayout.h new file mode 100644 index 0000000..cfd33cf --- /dev/null +++ b/src/frontend/qtwidgets/groupLayout.h @@ -0,0 +1,23 @@ +#ifndef GROUPLAYOUT_H +#define GROUPLAYOUT_H + +#include + +#include "group.h" + +class GroupLayout : public QVBoxLayout { + Q_OBJECT + + public: + Group group; + + GroupLayout(const Group &g); + + private slots: + void showContextMenu(); + void addEntry(); + void editGroup(); + void removeGroup(); +}; + +#endif -- cgit