summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/modeldelegates.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-04-25 09:35:46 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-05-11 12:35:11 -0700
commite76298a8a7fbbd3ccc252bf7c4a904db7c3423d6 (patch)
treeea2f1cbf3c008ed75f2a1f868a33818cbfe69842 /desktop-widgets/modeldelegates.h
parentc7e1c40b0e9ff1c9152f06b7f1c134f232297fe7 (diff)
downloadsubsurface-e76298a8a7fbbd3ccc252bf7c4a904db7c3423d6.tar.gz
Dive site: show distance to current dive using extra data
Currently, in the dive-site selection widget the distance to the dive site of the current dive is shown. Instead, use the recently introduced dive_get_gps_location() function. Thus, the actual GPS coordinates extracted by libdivecomputer are used. The function is only called when the current dive changes and the location is stored in the item delegate. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/modeldelegates.h')
-rw-r--r--desktop-widgets/modeldelegates.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-widgets/modeldelegates.h b/desktop-widgets/modeldelegates.h
index ae1292030..e2baa1582 100644
--- a/desktop-widgets/modeldelegates.h
+++ b/desktop-widgets/modeldelegates.h
@@ -2,6 +2,8 @@
#ifndef MODELDELEGATES_H
#define MODELDELEGATES_H
+#include "core/units.h"
+
#include <QStyledItemDelegate>
#include <QComboBox>
class QPainter;
@@ -130,6 +132,9 @@ public:
LocationFilterDelegate(QObject *parent = 0);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override;
+ void setCurrentLocation(location_t loc);
+private:
+ location_t currentLocation;
};
#endif // MODELDELEGATES_H