From b76f2071589d6a7f45ec2845afa8b49110da608b Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 17 Nov 2019 18:13:55 +0100 Subject: Filter: split out filter from model Split out the actual filtering from the MultiFilterSortModel. Create a DiveFilter class that does the actual filtering. Currently, mobile and desktop have their own version of this class, though ultimately we may want to merge them. The idea here is that the trip-model and undo-commands have direct access to the filter-function and thus can take care of keeping track of the number of shown dives, etc. Signed-off-by: Berthold Stoeger --- map-widget/qmlmapwidgethelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'map-widget') diff --git a/map-widget/qmlmapwidgethelper.cpp b/map-widget/qmlmapwidgethelper.cpp index 9dba8bfd3..ff5f47f35 100644 --- a/map-widget/qmlmapwidgethelper.cpp +++ b/map-widget/qmlmapwidgethelper.cpp @@ -7,10 +7,10 @@ #include "qmlmapwidgethelper.h" #include "core/divesite.h" #include "core/qthelper.h" +#include "core/divefilter.h" #include "qt-models/maplocationmodel.h" #include "qt-models/divelocationmodel.h" #ifndef SUBSURFACE_MOBILE -#include "qt-models/filtermodels.h" #include "desktop-widgets/mapwidget.h" #endif @@ -106,7 +106,7 @@ void MapWidgetHelper::updateEditMode() // The filter being set to dive site is the signal that we are in dive site edit mode. // This is the case when either the dive site edit tab or the dive site list tab are active. bool old = m_editMode; - m_editMode = MultiFilterSortModel::instance()->diveSiteMode(); + m_editMode = DiveFilter::instance()->diveSiteMode(); if (old != m_editMode) emit editModeChanged(); #endif -- cgit v1.2.3-70-g09d2