diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-08-12 03:58:26 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-08-24 13:11:39 -0700 |
commit | 1da4f91cc88000a4d4922b345264a3ef9752ed8a (patch) | |
tree | 9453af90c85ec8caa08feab1fe1eda72249b4f6a /mobile-widgets/qmlmapwidgethelper.h | |
parent | fb151df883273bd01a1c56e30fe92575fa74fea1 (diff) | |
download | subsurface-1da4f91cc88000a4d4922b345264a3ef9752ed8a.tar.gz |
mapwidgethelper: use dynamic creation of the Plugin object
The googlemaps plugin is about to support tile language
via the PluginParameter 'googlemaps.maps.language'.
To be able to pass the subsurface UI language (obtained
from the uiLanguage() helper) the Plugin has to be created
dynamically, only *after* the MapWidgetHelper is created.
MapWidgetHelper::pluginObject() now provides a QString which
contains the Plugin object and also include the uiLanguage
ISO value.
This string is used in mapwidget.qml as:
map.plugin = Qt.createQmlObject(pluginObject, rootItem)
This creates the Plugin object dynamically with the proper
UI language string, but also requires a couple of small changes:
- move the declaration of map.mapType after the
Qt.createQmlObject() call
- assign map.activeMapType after map.mapType has a value
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'mobile-widgets/qmlmapwidgethelper.h')
-rw-r--r-- | mobile-widgets/qmlmapwidgethelper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmapwidgethelper.h b/mobile-widgets/qmlmapwidgethelper.h index 830c8478f..36d25d178 100644 --- a/mobile-widgets/qmlmapwidgethelper.h +++ b/mobile-widgets/qmlmapwidgethelper.h @@ -15,6 +15,7 @@ class MapWidgetHelper : public QObject { Q_PROPERTY(QObject *map MEMBER m_map) Q_PROPERTY(MapLocationModel *model MEMBER m_mapLocationModel NOTIFY modelChanged) Q_PROPERTY(bool editMode READ editMode WRITE setEditMode NOTIFY editModeChanged) + Q_PROPERTY(QString pluginObject READ pluginObject NOTIFY pluginObjectChanged) public: explicit MapWidgetHelper(QObject *parent = NULL); @@ -27,6 +28,7 @@ public: Q_INVOKABLE void selectVisibleLocations(); bool editMode(); void setEditMode(bool editMode); + QString pluginObject(); private: QObject *m_map; @@ -43,6 +45,7 @@ signals: void editModeChanged(); void selectedDivesChanged(QList<int> list); void coordinatesChanged(); + void pluginObjectChanged(); }; extern "C" const char *printGPSCoords(int lat, int lon); |