qmlmapwidgethelper: add the centerOnDiveSite() method

MapWidget sould not handle any of the map backend.
Instead it should just pass calls to MapWidgetHelper.

Do that for centerOnDiveSite().

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2017-07-17 00:06:05 +03:00 committed by Dirk Hohndel
parent c68536ec56
commit 5cc2c02dfb
3 changed files with 17 additions and 7 deletions

View file

@ -3,6 +3,8 @@
#include <QObject>
struct dive_site;
class MapWidgetHelper : public QObject {
Q_OBJECT
@ -11,6 +13,8 @@ class MapWidgetHelper : public QObject {
public:
explicit MapWidgetHelper(QObject *parent = NULL);
void centerOnDiveSite(struct dive_site *);
private:
QObject *m_map;
};