diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-08 12:57:46 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-11 16:25:32 -0700 |
commit | 66c5c5f72b82bd07c6222dbf624d6389237a590b (patch) | |
tree | 8741a3158c0f52dc5790456f70767dbd77e05cdc /map-widget/qmlmapwidgethelper.h | |
parent | ad57871a2cbb03b0880d33184466e052a20dbd1d (diff) | |
download | subsurface-66c5c5f72b82bd07c6222dbf624d6389237a590b.tar.gz |
Map: remove LocationInformationWidget::coordinatesChanged signal
This was used by LocationInformationWidget to instruct the map
that the coordinates of the current dive site has changed.
There is no reason why this couldn't be a function call, as no
other object ever connect()s to this signal. In fact, such a
function already exists viz. updateLocationOnMap.
Therefore, replace the signal by a simple function call.
Moreover, the uuid and coordinates of the dive site were transported
via the global "displayed_dive_site" object. Instead, pass this
information in the parameters of the function. This makes it
easier to reason about data- and control-flow.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'map-widget/qmlmapwidgethelper.h')
-rw-r--r-- | map-widget/qmlmapwidgethelper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/map-widget/qmlmapwidgethelper.h b/map-widget/qmlmapwidgethelper.h index e5c77aa8a..77f352965 100644 --- a/map-widget/qmlmapwidgethelper.h +++ b/map-widget/qmlmapwidgethelper.h @@ -2,6 +2,7 @@ #ifndef QMLMAPWIDGETHELPER_H #define QMLMAPWIDGETHELPER_H +#include "core/units.h" #include <QObject> #include <QGeoCoordinate> #include <QVariant> @@ -35,7 +36,7 @@ public: Q_INVOKABLE void calculateSmallCircleRadius(QGeoCoordinate coord); Q_INVOKABLE void updateCurrentDiveSiteCoordinatesFromMap(quint32 uuid, QGeoCoordinate coord); Q_INVOKABLE void selectVisibleLocations(); - void updateCurrentDiveSiteCoordinatesToMap(); + void updateDiveSiteCoordinates(uint32_t uuid, degrees_t latitude, degrees_t longitude); bool editMode(); void setEditMode(bool editMode); QString pluginObject(); |