diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-07-24 21:41:00 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-28 07:31:11 -0700 |
commit | c078e350e0ca11ad09a9fb57fcf94b95671e6ae4 (patch) | |
tree | d200d494a628b896e4b44375d08ccf7f6e1fd7f3 /mobile-widgets/qmlmapwidgethelper.h | |
parent | e79eac333591332d0bfe8ebdeb76a791cf826861 (diff) | |
download | subsurface-c078e350e0ca11ad09a9fb57fcf94b95671e6ae4.tar.gz |
mapwidgethelper: emit a selectedDivesChanged() signal
The signal emits a QList<int> filled with dive idexes from the
main backend dive table.
The MapWidgetHelper QML instance handles that in onSelectedDivesChanged().
This will only be needed for the mobile version, as the desktop version
should connect it's own slot in MapWidget.cpp.
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 514a52161..91e95f4f9 100644 --- a/mobile-widgets/qmlmapwidgethelper.h +++ b/mobile-widgets/qmlmapwidgethelper.h @@ -34,6 +34,7 @@ private slots: signals:
void modelChanged();
+ void selectedDivesChanged(QList<int> list);
};
extern "C" const char *printGPSCoords(int lat, int lon);
|