summaryrefslogtreecommitdiff
path: root/src/ruleLayout.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/ruleLayout.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/ruleLayout.h')
-rw-r--r--src/ruleLayout.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/ruleLayout.h b/src/ruleLayout.h
deleted file mode 100644
index 29a4deb..0000000
--- a/src/ruleLayout.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef RULELAYOUT_H
-#define RULELAYOUT_H
-
-#include <QComboBox>
-#include <QDate>
-#include <QDateTimeEdit>
-#include <QHBoxLayout>
-#include <QLineEdit>
-#include <QPushButton>
-
-#include "rule.h"
-
-class RuleLayout : public QHBoxLayout {
- Q_OBJECT
-
- public:
- Rule rule;
- QComboBox *when_widget;
- QDateTimeEdit *date_widget;
- QLineEdit *color_widget; // TODO consider making this a color selector widget
- QLineEdit *highlight_widget; // TODO consider making this a color selector widget
- QPushButton *del_button;
-
- RuleLayout(const Rule &r);
-};
-
-#endif