diff options
author | Alex Blasche <alexander.blasche@qt.io> | 2017-06-06 15:33:35 +0200 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@qt.io> | 2017-06-06 13:35:22 +0000 |
commit | d89701c5c8646dedb0ebb2e011c4da796a6ae8a1 (patch) | |
tree | db46880067b1663fc0ec248a7dcaa4438b07629a /src/imports/location | |
parent | 517722e29791790b5480cdd7918a022bd1fbbbc5 (diff) | |
download | qtlocation-d89701c5c8646dedb0ebb2e011c4da796a6ae8a1.tar.gz |
Update QtLocation qmltypes definition
Change-Id: I675167f90579f9999d3e1d3cba42951bd5b7ea3b
Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'src/imports/location')
-rw-r--r-- | src/imports/location/plugins.qmltypes | 166 |
1 files changed, 163 insertions, 3 deletions
diff --git a/src/imports/location/plugins.qmltypes b/src/imports/location/plugins.qmltypes index b89963ad..e866cac7 100644 --- a/src/imports/location/plugins.qmltypes +++ b/src/imports/location/plugins.qmltypes @@ -4,7 +4,7 @@ import QtQuick.tooling 1.2 // It is used for QML tooling purposes only. // // This file was auto-generated by: -// 'qmlplugindump -nonrelocatable QtLocation 5.8' +// 'qmlplugindump -nonrelocatable QtLocation 5.9' Module { dependencies: ["QtQuick 2.8"] @@ -135,6 +135,13 @@ Module { Property { name: "minimumZoomLevel"; type: "double" } Property { name: "maximumZoomLevel"; type: "double" } Property { name: "zoomLevel"; type: "double" } + Property { name: "tilt"; type: "double" } + Property { name: "minimumTilt"; type: "double" } + Property { name: "maximumTilt"; type: "double" } + Property { name: "bearing"; type: "double" } + Property { name: "fieldOfView"; type: "double" } + Property { name: "minimumFieldOfView"; type: "double" } + Property { name: "maximumFieldOfView"; type: "double" } Property { name: "activeMapType"; type: "QDeclarativeGeoMapType"; isPointer: true } Property { name: "supportedMapTypes" @@ -144,11 +151,13 @@ Module { } Property { name: "center"; type: "QGeoCoordinate" } Property { name: "mapItems"; type: "QList<QObject*>"; isReadonly: true } + Property { name: "mapParameters"; type: "QList<QObject*>"; isReadonly: true } Property { name: "error"; type: "QGeoServiceProvider::Error"; isReadonly: true } Property { name: "errorString"; type: "string"; isReadonly: true } Property { name: "visibleRegion"; type: "QGeoShape" } Property { name: "copyrightsVisible"; type: "bool" } Property { name: "color"; type: "QColor" } + Property { name: "mapReady"; type: "bool"; isReadonly: true } Signal { name: "pluginChanged" Parameter { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true } @@ -173,6 +182,46 @@ Module { name: "colorChanged" Parameter { name: "color"; type: "QColor" } } + Signal { + name: "bearingChanged" + Parameter { name: "bearing"; type: "double" } + } + Signal { + name: "tiltChanged" + Parameter { name: "tilt"; type: "double" } + } + Signal { + name: "fieldOfViewChanged" + Parameter { name: "fieldOfView"; type: "double" } + } + Signal { + name: "minimumTiltChanged" + Parameter { name: "minimumTilt"; type: "double" } + } + Signal { + name: "maximumTiltChanged" + Parameter { name: "maximumTilt"; type: "double" } + } + Signal { + name: "minimumFieldOfViewChanged" + Parameter { name: "minimumFieldOfView"; type: "double" } + } + Signal { + name: "maximumFieldOfViewChanged" + Parameter { name: "maximumFieldOfView"; type: "double" } + } + Signal { + name: "copyrightsChanged" + Parameter { name: "copyrightsImage"; type: "QImage" } + } + Signal { + name: "copyrightsChanged" + Parameter { name: "copyrightsHtml"; type: "string" } + } + Signal { + name: "mapReadyChanged" + Parameter { name: "ready"; type: "bool" } + } Method { name: "removeMapItem" Parameter { name: "item"; type: "QDeclarativeGeoMapItemBase"; isPointer: true } @@ -181,8 +230,25 @@ Module { name: "addMapItem" Parameter { name: "item"; type: "QDeclarativeGeoMapItemBase"; isPointer: true } } + Method { + name: "addMapItemGroup" + Parameter { name: "itemGroup"; type: "QDeclarativeGeoMapItemGroup"; isPointer: true } + } + Method { + name: "removeMapItemGroup" + Parameter { name: "itemGroup"; type: "QDeclarativeGeoMapItemGroup"; isPointer: true } + } Method { name: "clearMapItems" } Method { + name: "addMapParameter" + Parameter { name: "parameter"; type: "QDeclarativeGeoMapParameter"; isPointer: true } + } + Method { + name: "removeMapParameter" + Parameter { name: "parameter"; type: "QDeclarativeGeoMapParameter"; isPointer: true } + } + Method { name: "clearMapParameters" } + Method { name: "toCoordinate" type: "QGeoCoordinate" Parameter { name: "position"; type: "QPointF" } @@ -205,6 +271,7 @@ Module { Parameter { name: "coordinate"; type: "QGeoCoordinate" } } Method { name: "fitViewportToMapItems" } + Method { name: "fitViewportToVisibleMapItems" } Method { name: "pan" Parameter { name: "dx"; type: "int" } @@ -214,12 +281,54 @@ Module { Method { name: "clearData" } } Component { + name: "QDeclarativeGeoMapCopyrightNotice" + defaultProperty: "data" + prototype: "QQuickPaintedItem" + exports: ["QtLocation/MapCopyrightNotice 5.9"] + exportMetaObjectRevisions: [0] + Property { name: "mapSource"; type: "QDeclarativeGeoMap"; isPointer: true } + Property { name: "styleSheet"; type: "string" } + Signal { + name: "linkActivated" + Parameter { name: "link"; type: "string" } + } + Signal { + name: "backgroundColorChanged" + Parameter { name: "color"; type: "QColor" } + } + Signal { + name: "styleSheetChanged" + Parameter { name: "styleSheet"; type: "string" } + } + Method { + name: "copyrightsChanged" + Parameter { name: "copyrightsImage"; type: "QImage" } + } + Method { + name: "copyrightsChanged" + Parameter { name: "copyrightsHtml"; type: "string" } + } + Method { + name: "onCopyrightsStyleSheetChanged" + Parameter { name: "styleSheet"; type: "string" } + } + } + Component { name: "QDeclarativeGeoMapItemBase" defaultProperty: "data" prototype: "QQuickItem" exports: ["QtLocation/GeoMapItemBase 5.0"] isCreatable: false exportMetaObjectRevisions: [0] + Property { name: "geoShape"; type: "QGeoShape"; isReadonly: true } + Signal { name: "mapItemOpacityChanged" } + } + Component { + name: "QDeclarativeGeoMapItemGroup" + defaultProperty: "data" + prototype: "QQuickItem" + exports: ["QtLocation/MapItemGroup 5.9"] + exportMetaObjectRevisions: [0] } Component { name: "QDeclarativeGeoMapItemView" @@ -231,6 +340,16 @@ Module { Property { name: "autoFitViewport"; type: "bool" } } Component { + name: "QDeclarativeGeoMapParameter" + prototype: "QGeoMapParameter" + exports: ["QtLocation/MapParameter 5.9"] + exportMetaObjectRevisions: [0] + Signal { + name: "completed" + Parameter { type: "QDeclarativeGeoMapParameter"; isPointer: true } + } + } + Component { name: "QDeclarativeGeoMapQuickItem" defaultProperty: "data" prototype: "QDeclarativeGeoMapItemBase" @@ -317,6 +436,7 @@ Module { Property { name: "error"; type: "RouteError"; isReadonly: true } Property { name: "measurementSystem"; type: "QLocale::MeasurementSystem" } Signal { name: "routesChanged" } + Signal { name: "abortRequested" } Method { name: "update" } Method { name: "get" @@ -1125,6 +1245,16 @@ Module { Method { name: "errorString"; type: "string" } } Component { + name: "QGeoMapParameter" + prototype: "QObject" + Property { name: "type"; type: "string" } + Signal { + name: "propertyUpdated" + Parameter { name: "param"; type: "QGeoMapParameter"; isPointer: true } + Parameter { name: "propertyName"; type: "const char"; isPointer: true } + } + } + Component { name: "QGeoMapPinchEvent" prototype: "QObject" exports: ["QtLocation/MapPinchEvent 5.0"] @@ -1166,7 +1296,9 @@ Module { "NoGesture": 0, "PinchGesture": 1, "PanGesture": 2, - "FlickGesture": 4 + "FlickGesture": 4, + "RotationGesture": 8, + "TiltGesture": 16 } } Enum { @@ -1175,12 +1307,16 @@ Module { "NoGesture": 0, "PinchGesture": 1, "PanGesture": 2, - "FlickGesture": 4 + "FlickGesture": 4, + "RotationGesture": 8, + "TiltGesture": 16 } } Property { name: "enabled"; type: "bool" } Property { name: "pinchActive"; type: "bool"; isReadonly: true } Property { name: "panActive"; type: "bool"; isReadonly: true } + Property { name: "rotationActive"; type: "bool"; isReadonly: true } + Property { name: "tiltActive"; type: "bool"; isReadonly: true } Property { name: "acceptedGestures"; type: "AcceptedGestures" } Property { name: "maximumZoomLevelChange"; type: "double" } Property { name: "flickDeceleration"; type: "double" } @@ -1201,5 +1337,29 @@ Module { Signal { name: "panFinished" } Signal { name: "flickStarted" } Signal { name: "flickFinished" } + Signal { + name: "rotationStarted" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } + Signal { + name: "rotationUpdated" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } + Signal { + name: "rotationFinished" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } + Signal { + name: "tiltStarted" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } + Signal { + name: "tiltUpdated" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } + Signal { + name: "tiltFinished" + Parameter { name: "pinch"; type: "QGeoMapPinchEvent"; isPointer: true } + } } } |