summaryrefslogtreecommitdiff
path: root/src/frontend/qtwidgets/entryLayout.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-23 20:37:48 -0400
committerLouie S <louie@example.com>2024-07-23 20:37:48 -0400
commitc34930425fadfc4083067b9306159cd8e8ecf6c6 (patch)
treed9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/frontend/qtwidgets/entryLayout.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/frontend/qtwidgets/entryLayout.h')
-rw-r--r--src/frontend/qtwidgets/entryLayout.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/frontend/qtwidgets/entryLayout.h b/src/frontend/qtwidgets/entryLayout.h
new file mode 100644
index 0000000..54e523f
--- /dev/null
+++ b/src/frontend/qtwidgets/entryLayout.h
@@ -0,0 +1,32 @@
+#ifndef ENTRYLAYOUT_H
+#define ENTRYLAYOUT_H
+
+#include <QDateTime>
+#include <QHBoxLayout>
+#include <QString>
+#include <QUrl>
+
+#include "entry.h"
+#include "rule.h"
+
+class EntryLayout : public QHBoxLayout {
+ Q_OBJECT
+
+ public:
+ Entry entry;
+
+ EntryLayout(const Entry &e);
+
+ private:
+ QList<Rule> loadRules();
+
+ private slots:
+ void showContextMenu();
+ void editEntry();
+ void setRules();
+ void toggleDone();
+ void cloneEntry();
+ void removeEntry();
+};
+
+#endif