summaryrefslogtreecommitdiff
path: root/src/groupLayout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/groupLayout.h')
-rw-r--r--src/groupLayout.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/groupLayout.h b/src/groupLayout.h
new file mode 100644
index 0000000..cfd33cf
--- /dev/null
+++ b/src/groupLayout.h
@@ -0,0 +1,23 @@
+#ifndef GROUPLAYOUT_H
+#define GROUPLAYOUT_H
+
+#include <QVBoxLayout>
+
+#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