/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qdeclarativegeoserviceprovider_p.h" #include "qdeclarativegeomap_p.h" #include "qdeclarativegeoroute_p.h" #include "qdeclarativegeoroutemodel_p.h" #include "qdeclarativegeocodemodel_p.h" #include "qdeclarativegeomaneuver_p.h" #include "qdeclarativegeomapquickitem_p.h" #include "qdeclarativegeomapitemview_p.h" #include "qdeclarativegeomaptype_p.h" #include "qdeclarativerectanglemapitem_p.h" #include "qdeclarativecirclemapitem_p.h" #include "qdeclarativeroutemapitem_p.h" #include "qdeclarativepolylinemapitem_p.h" #include "qdeclarativepolygonmapitem_p.h" //Place includes #include "qdeclarativecategory_p.h" #include "qdeclarativeplace_p.h" #include "qdeclarativeplaceattribute_p.h" #include "qdeclarativeplaceicon_p.h" #include "qdeclarativeratings_p.h" #include "qdeclarativesupplier_p.h" #include "qdeclarativeplaceuser_p.h" #include "qdeclarativecontactdetail_p.h" #include "qdeclarativesupportedcategoriesmodel_p.h" #include "qdeclarativesearchresultmodel_p.h" #include "qdeclarativesearchsuggestionmodel_p.h" #include "error_messages.h" #include #include static void initResources() { #ifdef QT_STATIC Q_INIT_RESOURCE(qmake_QtLocation); #endif } QT_BEGIN_NAMESPACE class QtLocationDeclarativeModule: public QQmlExtensionPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface/1.0" FILE "plugin.json") public: QtLocationDeclarativeModule(QObject *parent = 0) : QQmlExtensionPlugin(parent) { initResources(); } virtual void registerTypes(const char *uri) { if (QLatin1String(uri) == QLatin1String("QtLocation")) { // @uri QtLocation int major = 5; int minor = 0; // Register the 5.0 types // 5.0 is siltent and not advertised qmlRegisterType(uri, major, minor, "Plugin"); qmlRegisterType(uri, major, minor, "PluginParameter"); qmlRegisterUncreatableType(uri, major, minor, "PluginRequirements", QStringLiteral("PluginRequirements is not intended instantiable by developer.")); qmlRegisterType(uri, major, minor, "Map"); qmlRegisterUncreatableType(uri, major, minor, "GeoMapItemBase", QStringLiteral("GeoMapItemBase is not intended instantiable by developer.")); qmlRegisterType(uri, major, minor, "MapQuickItem"); qmlRegisterType(uri, major, minor, "MapItemView"); qmlRegisterType(uri, major, minor, "GeocodeModel"); // geocoding and reverse geocoding qmlRegisterType(uri, major, minor, "RouteModel"); qmlRegisterType(uri, major, minor, "RouteQuery"); qmlRegisterType(uri, major, minor, "Route"); // data type qmlRegisterType(uri, major, minor, "RouteSegment"); qmlRegisterType(uri, major, minor, "RouteManeuver"); qmlRegisterUncreatableType(uri, major, minor, "MapPinchEvent", QStringLiteral("(Map)PinchEvent is not intended instantiable by developer.")); qmlRegisterUncreatableType(uri, major, minor, "MapGestureArea", QStringLiteral("(Map)GestureArea is not intended instantiable by developer.")); qmlRegisterUncreatableType(uri, major, minor, "MapType", QStringLiteral("MapType is not intended instantiable by developer.")); qmlRegisterType(uri, major, minor, "Category"); qmlRegisterType(uri, major, minor, "EditorialModel"); qmlRegisterType(uri, major, minor, "ImageModel"); qmlRegisterType(uri, major, minor, "Place"); qmlRegisterType(uri, major, minor, "Icon"); qmlRegisterType(uri, major, minor, "Ratings"); qmlRegisterType(uri, major, minor, "ReviewModel"); qmlRegisterType(uri, major, minor, "Supplier"); qmlRegisterType(uri, major, minor, "User"); qmlRegisterType(uri, major, minor, "MapRectangle"); qmlRegisterType(uri, major, minor, "MapCircle"); qmlRegisterType(); qmlRegisterType(uri, major, minor, "MapPolyline"); qmlRegisterType(uri, major, minor, "MapPolygon"); qmlRegisterType(uri, major, minor, "MapRoute"); qmlRegisterType(uri, major, minor, "CategoryModel"); qmlRegisterType(uri, major, minor, "PlaceSearchModel"); qmlRegisterType(uri, major, minor, "PlaceSearchSuggestionModel"); qmlRegisterType(uri, major, minor, "PlaceAttribute"); qmlRegisterUncreatableType(uri, major, minor, "ExtendedAttributes", "ExtendedAttributes instances cannot be instantiated. " "Only Place types have ExtendedAttributes and they cannot be re-assigned " "(but can be modified)."); qmlRegisterType(uri, major, minor, "ContactDetail"); qmlRegisterUncreatableType(uri, major, minor, "ContactDetails", "ContactDetails instances cannot be instantiated. " "Only Place types have ContactDetails and they cannot " "be re-assigned (but can be modified)."); // Introduction of 5.3 version; existing 5.0 exports automatically become available under 5.3 as well // 5.3 is committed QML API despite missing release of QtLocation 5.3 minor = 5; //TODO: this is broken QTBUG-50990 qmlRegisterUncreatableType(uri, major, minor, "MapType", QStringLiteral("MapType is not intended instantiable by developer.")); minor = 6; //TODO: this is broken QTBUG-50990 qmlRegisterUncreatableType(uri, major, minor, "MapGestureArea", QStringLiteral("(Map)GestureArea is not intended instantiable by developer.")); // Register the 5.7 types minor = 7; qmlRegisterType(uri, major, minor, "RouteManeuver"); //registrations below are version independent qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); } else { qDebug() << "Unsupported URI given to load location QML plugin: " << QLatin1String(uri); } } }; #include "location.moc" QT_END_NAMESPACE