diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/divefilter.cpp | 11 | ||||
-rw-r--r-- | core/divefilter.h | 6 |
2 files changed, 11 insertions, 6 deletions
diff --git a/core/divefilter.cpp b/core/divefilter.cpp index 1af1a0b9d..ddb77e9fc 100644 --- a/core/divefilter.cpp +++ b/core/divefilter.cpp @@ -13,10 +13,8 @@ #include "qt-models/filtermodels.h" #endif -int shown_dives = 0; - // Set filter status of dive and return whether it has been changed -static bool setFilterStatus(struct dive *d, bool shown) +bool DiveFilter::setFilterStatus(struct dive *d, bool shown) const { bool old_shown, changed; if (!d) @@ -31,7 +29,7 @@ static bool setFilterStatus(struct dive *d, bool shown) return changed; } -static void updateDiveStatus(dive *d, bool newStatus, ShownChange &change) +void DiveFilter::updateDiveStatus(dive *d, bool newStatus, ShownChange &change) const { if (setFilterStatus(d, newStatus)) { if (newStatus) @@ -201,6 +199,11 @@ QString DiveFilter::shownText() const return gettextFromC::tr("%L1 dives").arg(dive_table.nr); } +int DiveFilter::shownDives() const +{ + return shown_dives; +} + void DiveFilter::setFilter(const FilterData &data) { filterData = data; diff --git a/core/divefilter.h b/core/divefilter.h index d4342871b..49503cca0 100644 --- a/core/divefilter.h +++ b/core/divefilter.h @@ -13,8 +13,6 @@ struct dive; struct dive_trip; struct dive_site; -extern int shown_dives; - // Structure describing changes of shown status upon applying the filter struct ShownChange { QVector<dive *> newShown; @@ -43,6 +41,7 @@ public: void reset(); QString shownText() const; + int shownDives() const; bool diveSiteMode() const; // returns true if we're filtering on dive site (on mobile always returns false) #ifndef SUBSURFACE_MOBILE const QVector<dive_site *> &filteredDiveSites() const; @@ -57,9 +56,12 @@ public: private: DiveFilter(); bool showDive(const struct dive *d) const; // Should that dive be shown? + bool setFilterStatus(struct dive *d, bool shown) const; + void updateDiveStatus(dive *d, bool newStatus, ShownChange &change) const; QVector<dive_site *> dive_sites; FilterData filterData; + mutable int shown_dives; // We use ref-counting for the dive site mode. The reason is that when switching // between two tabs that both need dive site mode, the following course of |