From c34930425fadfc4083067b9306159cd8e8ecf6c6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 23 Jul 2024 20:37:48 -0400 Subject: Rearrange source file locations --- src/frontend/qtwidgets/rulesDialog.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/frontend/qtwidgets/rulesDialog.h (limited to 'src/frontend/qtwidgets/rulesDialog.h') diff --git a/src/frontend/qtwidgets/rulesDialog.h b/src/frontend/qtwidgets/rulesDialog.h new file mode 100644 index 0000000..7e74dc2 --- /dev/null +++ b/src/frontend/qtwidgets/rulesDialog.h @@ -0,0 +1,32 @@ +#ifndef RULESDIALOG_H +#define RULESDIALOG_H + +#include + +#include "entry.h" +#include "rule.h" +#include "ui_rulesDialog.h" + +// show the list of rules associated with an entry +class RulesDialog : public QDialog { + Q_OBJECT + + public: + RulesDialog(const Entry &entry); + void drawRules(); + + private: + Ui::rulesDialog ui; + int entry_id; + QList rules; + QList deleted_rules; + + void updateRulesList(); + + private slots: + void addRule(); + void deleteRule(int i); + void accept(); +}; + +#endif -- cgit