aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/filterpresetmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/filterpresetmodel.h')
-rw-r--r--qt-models/filterpresetmodel.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/qt-models/filterpresetmodel.h b/qt-models/filterpresetmodel.h
new file mode 100644
index 000000000..26543666a
--- /dev/null
+++ b/qt-models/filterpresetmodel.h
@@ -0,0 +1,30 @@
+// SPDX-License-Identifier: GPL-2.0
+#ifndef FILTERPRESETMODEL_H
+#define FILTERPRESETMODEL_H
+
+#include "cleanertablemodel.h"
+#include "core/filterpreset.h"
+
+class FilterPresetModel : public CleanerTableModel {
+ Q_OBJECT
+public:
+ // For QML we will have to define roles
+ enum Column {
+ REMOVE,
+ NAME
+ };
+private
+slots:
+ void reset();
+public:
+ // there is one global filter preset list, therefore this model is a singleton
+ static FilterPresetModel *instance();
+private:
+ FilterPresetModel();
+ ~FilterPresetModel();
+ QVariant data(const QModelIndex &index, int role) const override;
+ int rowCount(const QModelIndex &parent) const override;
+ std::vector<filter_constraint> constraints;
+};
+
+#endif