diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-07-24 21:15:23 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-28 07:31:11 -0700 |
commit | 50f42cfdef3e77ad912869af931d0796655368df (patch) | |
tree | 725820ed049c31eed8240557a68be66db09606d7 /mobile-widgets/qmlmapwidgethelper.h | |
parent | 5ea702199bba685e78c9592b4016dc3afed12833 (diff) | |
download | subsurface-50f42cfdef3e77ad912869af931d0796655368df.tar.gz |
mapwidgethelper: obtain a list of nearby dives
Based on a current location (MapLocation), iterate the dive list
and add nearby dives (distance smaller than m_smallCircleRadius) to
a local QList property (m_selectedDiveIds).
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'mobile-widgets/qmlmapwidgethelper.h')
-rw-r--r-- | mobile-widgets/qmlmapwidgethelper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmapwidgethelper.h b/mobile-widgets/qmlmapwidgethelper.h index d5cf669fc..514a52161 100644 --- a/mobile-widgets/qmlmapwidgethelper.h +++ b/mobile-widgets/qmlmapwidgethelper.h @@ -27,6 +27,7 @@ private: QObject *m_map;
MapLocationModel *m_mapLocationModel;
qreal m_smallCircleRadius;
+ QList<int> m_selectedDiveIds;
private slots:
void selectedLocationChanged(MapLocation *);
|