summaryrefslogtreecommitdiffstats
path: root/qt-models/filterpresetmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/filterpresetmodel.cpp')
-rw-r--r--qt-models/filterpresetmodel.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/qt-models/filterpresetmodel.cpp b/qt-models/filterpresetmodel.cpp
index 446dd5e16..3853b4c34 100644
--- a/qt-models/filterpresetmodel.cpp
+++ b/qt-models/filterpresetmodel.cpp
@@ -9,6 +9,9 @@ FilterPresetModel::FilterPresetModel()
{
setHeaderDataStrings(QStringList{ "", tr("Name") });
connect(&diveListNotifier, &DiveListNotifier::dataReset, this, &FilterPresetModel::reset);
+ connect(&diveListNotifier, &DiveListNotifier::filterPresetAdded, this, &FilterPresetModel::filterPresetAdded);
+ connect(&diveListNotifier, &DiveListNotifier::filterPresetRemoved, this, &FilterPresetModel::filterPresetRemoved);
+ connect(&diveListNotifier, &DiveListNotifier::filterPresetChanged, this, &FilterPresetModel::filterPresetChanged);
}
FilterPresetModel::~FilterPresetModel()
@@ -57,3 +60,21 @@ void FilterPresetModel::reset()
beginResetModel();
endResetModel();
}
+
+void FilterPresetModel::filterPresetAdded(int index)
+{
+ beginInsertRows(QModelIndex(), index, index);
+ endInsertRows();
+}
+
+void FilterPresetModel::filterPresetChanged(int i)
+{
+ QModelIndex idx = index(i, 0);
+ dataChanged(idx, idx);
+}
+
+void FilterPresetModel::filterPresetRemoved(int index)
+{
+ beginRemoveRows(QModelIndex(), index, index);
+ endRemoveRows();
+}