/**************************************************************************** ** ** 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //Place includes #include #include #include #include #include #include #include #include #include #include #include #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 QQmlExtensionInterface_iid 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 silent 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.8 types minor = 8; qmlRegisterType(uri, major, minor, "RouteManeuver"); // Register the 5.9 types minor = 9; qmlRegisterType(uri, major, minor, "MapParameter"); qmlRegisterType(uri, major, minor, "MapCopyrightNotice"); qmlRegisterType(uri, major, minor, "MapItemGroup"); // Register the 5.10 types minor = 10; qmlRegisterUncreatableType(uri, major, minor, "CameraCapabilities" , QStringLiteral("CameraCapabilities is not intended instantiable by developer.")); // Register the latest Qt version as QML type version qmlRegisterModule(uri, QT_VERSION_MAJOR, QT_VERSION_MINOR); //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