summaryrefslogtreecommitdiff
path: root/src/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/entryLayout.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/entryLayout.h')
-rw-r--r--src/entryLayout.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/entryLayout.h b/src/entryLayout.h
deleted file mode 100644
index 54e523f..0000000
--- a/src/entryLayout.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#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