summaryrefslogtreecommitdiff
path: root/src/imports/location
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2019-02-24 10:59:20 +0100
committerKai Koehne <kai.koehne@qt.io>2019-03-22 07:38:50 +0000
commit6365030928d3562258932647d3ade81d0a890137 (patch)
tree31152889dc1440245aabfcadc951f0d8ecf2b743 /src/imports/location
parentb5e8d016ec819183d11307698e9e48b894321b9e (diff)
downloadqtlocation-6365030928d3562258932647d3ade81d0a890137.tar.gz
Update plugins.qmltypes for Qt 5.13
Task-number: QTBUG-73484 Change-Id: Ic6025449c74fcfa242545ffc82c9a74ceb2b5f6e Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/imports/location')
-rw-r--r--src/imports/location/plugins.qmltypes56
1 files changed, 52 insertions, 4 deletions
diff --git a/src/imports/location/plugins.qmltypes b/src/imports/location/plugins.qmltypes
index c7ab0e69..8d94169a 100644
--- a/src/imports/location/plugins.qmltypes
+++ b/src/imports/location/plugins.qmltypes
@@ -4,10 +4,10 @@ import QtQuick.tooling 1.2
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
-// 'qmlplugindump -nonrelocatable QtLocation 5.12'
+// 'qmlplugindump -nonrelocatable QtLocation 5.13'
Module {
- dependencies: ["QtQuick 2.12"]
+ dependencies: ["QtQuick 2.0"]
Component {
name: "QDeclarativeCategory"
prototype: "QObject"
@@ -324,6 +324,12 @@ Module {
}
Method { name: "prefetchData" }
Method { name: "clearData" }
+ Method {
+ name: "fitViewportToGeoShape"
+ revision: 13
+ Parameter { name: "shape"; type: "QGeoShape" }
+ Parameter { name: "margins"; type: "QVariant" }
+ }
}
Component {
name: "QDeclarativeGeoMapCopyrightNotice"
@@ -480,6 +486,13 @@ Module {
isPointer: true
}
Property { name: "legs"; revision: 12; type: "QList<QObject*>"; isReadonly: true }
+ Property {
+ name: "extendedAttributes"
+ revision: 13
+ type: "QObject"
+ isReadonly: true
+ isPointer: true
+ }
Method {
name: "equals"
type: "bool"
@@ -544,8 +557,12 @@ Module {
name: "QDeclarativeGeoRouteQuery"
defaultProperty: "quickChildren"
prototype: "QObject"
- exports: ["QtLocation/RouteQuery 5.0", "QtLocation/RouteQuery 5.11"]
- exportMetaObjectRevisions: [0, 11]
+ exports: [
+ "QtLocation/RouteQuery 5.0",
+ "QtLocation/RouteQuery 5.11",
+ "QtLocation/RouteQuery 5.13"
+ ]
+ exportMetaObjectRevisions: [0, 11, 13]
Enum {
name: "TravelMode"
values: {
@@ -646,6 +663,7 @@ Module {
Property { name: "excludedAreas"; type: "QJSValue" }
Property { name: "featureTypes"; type: "QList<int>"; isReadonly: true }
Property { name: "extraParameters"; revision: 11; type: "QVariantMap"; isReadonly: true }
+ Property { name: "departureTime"; revision: 13; type: "QDateTime" }
Property { name: "quickChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal { name: "queryDetailsChanged" }
Signal { name: "extraParametersChanged"; revision: 11 }
@@ -1391,6 +1409,30 @@ Module {
Property { name: "coordinate"; type: "QGeoCoordinate" }
}
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 }
+ Property { name: "geoShape"; type: "QGeoShape" }
+ Signal { name: "selected" }
+ Signal { name: "completed" }
+ }
+ Component {
name: "QGeoMapParameter"
prototype: "QObject"
Property { name: "type"; type: "string" }
@@ -1414,6 +1456,12 @@ Module {
Property { name: "accepted"; type: "bool" }
}
Component {
+ name: "QParameterizableObject"
+ defaultProperty: "quickChildren"
+ prototype: "QObject"
+ Property { name: "quickChildren"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
name: "QQmlPropertyMap"
prototype: "QObject"
exports: ["QtLocation/ExtendedAttributes 5.0"]