diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-08 19:01:45 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-11 16:25:32 -0700 |
commit | f39596df0628c567f2ffd45cfa5fe809fbb7cf75 (patch) | |
tree | b8ffa384adf6fb48e8238259edade9f64319e72d /desktop-widgets/locationinformation.h | |
parent | ac02854a8aa98dcd6876c9249654ac9e1d949c92 (diff) | |
download | subsurface-f39596df0628c567f2ffd45cfa5fe809fbb7cf75.tar.gz |
Map: remove access to displayed_dive_site in GPS-filter model
The location information shows a list of dive sites at the
same location as the edited dive site. This was done by passing
a function to an "SsrfSortFilterProxyModel". Unfortunately,
the latter does only support function pointers without state
and therefore had to access the global "displayed_dive_site"
object.
Replace the SsrfSortFilterProxyModel by a proper subclass of
QSortFilterProxyModel that contains information on the position
and id of the currently edited dive site.
Update the filter model if the location of the dive site changes.
This introduces a behavioral change: editing the GPS location
will lead to an updated list.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/locationinformation.h')
-rw-r--r-- | desktop-widgets/locationinformation.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop-widgets/locationinformation.h b/desktop-widgets/locationinformation.h index 225414b2f..868ea729e 100644 --- a/desktop-widgets/locationinformation.h +++ b/desktop-widgets/locationinformation.h @@ -4,6 +4,7 @@ #include "core/units.h" #include "ui_locationInformation.h" +#include "qt-models/divelocationmodel.h" #include <stdint.h> #include <QAbstractListModel> #include <QSortFilterProxyModel> @@ -48,6 +49,7 @@ private: Ui::LocationInformation ui; bool modified; QAction *acceptAction, *rejectAction; + GPSLocationInformationModel filter_model; }; class DiveLocationFilterProxyModel : public QSortFilterProxyModel { |