summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-02-24 09:37:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-25 14:42:53 +0100
commite656c31890dc382fafe03c4b9abf55565d2a3073 (patch)
tree26f1fabb292003194966db57a79da5523902aee5
parent8b16dc4c2b39dd98ad0975662c8254b8a57477b5 (diff)
Update QtPositioning QML API meta data including new 5.3 features.v5.3.0-alpha1
Change-Id: Ic841572e3079c0f600c696b477d9f7220d130029 Reviewed-by: Aaron McCarthy <mccarthy.aaron@gmail.com> Reviewed-by: Jim Ehrismann <jehrismann@blackberry.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
-rw-r--r--src/imports/positioning/plugins.qmltypes19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/imports/positioning/plugins.qmltypes b/src/imports/positioning/plugins.qmltypes
index 32a3c67d..bfb76203 100644
--- a/src/imports/positioning/plugins.qmltypes
+++ b/src/imports/positioning/plugins.qmltypes
@@ -11,6 +11,7 @@ Module {
name: "GeoShapeValueType"
prototype: "QQmlValueType"
exports: ["QtPositioning/GeoShape 5.0", "QtPositioning/GeoShape 5.2"]
+ isCreatable: false
exportMetaObjectRevisions: [0, 0]
Enum {
name: "ShapeType"
@@ -36,6 +37,8 @@ Module {
"QtPositioning/QtPositioning 5.0",
"QtPositioning/QtPositioning 5.2"
]
+ isCreatable: false
+ isSingleton: true
exportMetaObjectRevisions: [0, 0]
Method { name: "coordinate"; type: "QGeoCoordinate" }
Method {
@@ -122,8 +125,12 @@ Module {
Component {
name: "QDeclarativePosition"
prototype: "QObject"
- exports: ["QtPositioning/Position 5.0", "QtPositioning/Position 5.2"]
- exportMetaObjectRevisions: [0, 0]
+ exports: [
+ "QtPositioning/Position 5.0",
+ "QtPositioning/Position 5.2",
+ "QtPositioning/Position 5.3"
+ ]
+ exportMetaObjectRevisions: [0, 0, 1]
Property { name: "latitudeValid"; type: "bool"; isReadonly: true }
Property { name: "longitudeValid"; type: "bool"; isReadonly: true }
Property { name: "altitudeValid"; type: "bool"; isReadonly: true }
@@ -135,6 +142,14 @@ Module {
Property { name: "verticalAccuracy"; type: "double" }
Property { name: "horizontalAccuracyValid"; type: "bool"; isReadonly: true }
Property { name: "verticalAccuracyValid"; type: "bool"; isReadonly: true }
+ Property { name: "directionValid"; revision: 1; type: "bool"; isReadonly: true }
+ Property { name: "direction"; revision: 1; type: "double"; isReadonly: true }
+ Property { name: "verticalSpeedValid"; revision: 1; type: "bool"; isReadonly: true }
+ Property { name: "verticalSpeed"; revision: 1; type: "double"; isReadonly: true }
+ Signal { name: "directionValidChanged"; revision: 1 }
+ Signal { name: "directionChanged"; revision: 1 }
+ Signal { name: "verticalSpeedValidChanged"; revision: 1 }
+ Signal { name: "verticalSpeedChanged"; revision: 1 }
}
Component {
name: "QDeclarativePositionSource"