diff options
author | BogDan Vatra <bogdan@kdab.com> | 2018-02-12 09:28:42 +0200 |
---|---|---|
committer | BogDan Vatra <bogdan@kdab.com> | 2018-02-12 10:11:27 +0000 |
commit | 35bedd23ff11ebbf0e29d174735c7d8ecc296da5 (patch) | |
tree | 94a20742540563af59098d8ae1b847e37856528a /src/imports | |
parent | d46f23a90698ecd33bc02331ca041ca3c87f3561 (diff) | |
download | qtlocation-35bedd23ff11ebbf0e29d174735c7d8ecc296da5.tar.gz |
Add qmltypes for locationlabs
Task-number: QTBUG-66263
Change-Id: I62d9c99ce80c8968057ee0488dac413c312c1b20
Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'src/imports')
-rw-r--r-- | src/imports/locationlabs/plugins.qmltypes | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/imports/locationlabs/plugins.qmltypes b/src/imports/locationlabs/plugins.qmltypes new file mode 100644 index 00000000..d5e30c38 --- /dev/null +++ b/src/imports/locationlabs/plugins.qmltypes @@ -0,0 +1,77 @@ +import QtQuick.tooling 1.2 + +// This file describes the plugin-supplied types contained in the library. +// It is used for QML tooling purposes only. +// +// This file was auto-generated by: +// 'qmlplugindump -nonrelocatable Qt.labs.location 5.11' + +Module { + dependencies: ["QtQuick 2.8"] + Component { + name: "QGeoMapObject" + defaultProperty: "quickChildren" + prototype: "QParameterizableObject" + Enum { + name: "Type" + values: { + "InvalidType": 0, + "ViewType": 1, + "RouteType": 2, + "RectangleType": 3, + "CircleType": 4, + "PolylineType": 5, + "PolygonType": 6, + "IconType": 7, + "UserType": 256 + } + } + Property { name: "visible"; type: "bool" } + Property { name: "type"; type: "Type"; isReadonly: true } + Signal { name: "selected" } + Signal { name: "completed" } + } + Component { + name: "QMapObjectView" + defaultProperty: "quickChildren" + prototype: "QGeoMapObject" + exports: ["Qt.labs.location/MapObjectView 5.11"] + exportMetaObjectRevisions: [0] + Property { name: "model"; type: "QVariant" } + Property { name: "delegate"; type: "QQmlComponent"; isPointer: true } + Signal { + name: "modelChanged" + Parameter { name: "model"; type: "QVariant" } + } + Signal { + name: "delegateChanged" + Parameter { name: "delegate"; type: "QQmlComponent"; isPointer: true } + } + Method { + name: "addMapObject" + Parameter { name: "object"; type: "QGeoMapObject"; isPointer: true } + } + Method { + name: "removeMapObject" + Parameter { name: "object"; type: "QGeoMapObject"; isPointer: true } + } + } + Component { + name: "QMapRouteObject" + defaultProperty: "quickChildren" + prototype: "QGeoMapObject" + exports: ["Qt.labs.location/MapRouteObject 5.11"] + exportMetaObjectRevisions: [0] + Property { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true } + Signal { + name: "routeChanged" + Parameter { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true } + } + } + Component { + name: "QParameterizableObject" + defaultProperty: "quickChildren" + prototype: "QObject" + Property { name: "quickChildren"; type: "QObject"; isList: true; isReadonly: true } + } +} |