summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-02-20 17:28:22 -0500
committerLouie S <louie@example.com>2024-02-20 17:34:18 -0500
commit0b7be46511ec752f1f28e73eac787da633c47f46 (patch)
tree1fdc0f66924350a7272af125144c352383f58672 /src/group.h
parenta276acd4e0c8031fdef41f11a4fa2285b671207d (diff)
Create group class
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/group.h b/src/group.h
new file mode 100644
index 0000000..b6899a9
--- /dev/null
+++ b/src/group.h
@@ -0,0 +1,23 @@
+#ifndef GROUP_H
+#define GROUP_H
+
+#include <QString>
+#include <QVBoxLayout>
+
+class Group : QVBoxLayout {
+ public:
+ int id;
+ QString name;
+ QString column;
+ QString link;
+ bool hidden;
+
+ Group( int id,
+ QString name,
+ QString column = "left",
+ QString link = "",
+ bool hidden = false
+ );
+};
+
+#endif