summaryrefslogtreecommitdiff
path: root/src/entryLayout.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-15 16:12:05 -0400
committerLouie S <louie@example.com>2024-03-15 16:12:05 -0400
commit4c2c8bc81df55ab2f0112d16bfd1a9d236b51e6d (patch)
tree1b44d7e3cf55d22582bd697dce792f7994d3f616 /src/entryLayout.h
parentd732bd0f74225828455c5863444b0211faf586d0 (diff)
Load and apply rules to entries
Diffstat (limited to 'src/entryLayout.h')
-rw-r--r--src/entryLayout.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entryLayout.h b/src/entryLayout.h
index 1a4146b..df19a18 100644
--- a/src/entryLayout.h
+++ b/src/entryLayout.h
@@ -7,6 +7,7 @@
#include <QUrl>
#include "entry.h"
+#include "rule.h"
class EntryLayout : public QHBoxLayout {
Q_OBJECT
@@ -16,6 +17,9 @@ class EntryLayout : public QHBoxLayout {
EntryLayout(const Entry &e);
+ private:
+ QList<Rule *> loadRules();
+
private slots:
void showContextMenu();
void editEntry();