diff options
author | Alex Blasche <alexander.blasche@theqtcompany.com> | 2016-02-10 11:30:08 +0100 |
---|---|---|
committer | Alex Blasche <alexander.blasche@theqtcompany.com> | 2016-02-11 12:02:31 +0000 |
commit | 29bf46429751832f64b8afbee0170a00330a69f2 (patch) | |
tree | 106537353f18b69f23889010aeb9a6c35f87f917 | |
parent | fa74328c7a92630dc25494a1465229372b56cfd6 (diff) | |
download | qtlocation-29bf46429751832f64b8afbee0170a00330a69f2.tar.gz |
Update qmltypes for QtPositioning QML API
I forgot QtPositioning when I updated the QtLocation QML qmltypes.
Change-Id: I9616fd510b40c1b58bfce839b3651736c572233a
Reviewed-by: Michal Klocek <michal.klocek@theqtcompany.com>
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r-- | src/imports/positioning/plugins.qmltypes | 73 |
1 files changed, 1 insertions, 72 deletions
diff --git a/src/imports/positioning/plugins.qmltypes b/src/imports/positioning/plugins.qmltypes index a47aa277..c3451c2a 100644 --- a/src/imports/positioning/plugins.qmltypes +++ b/src/imports/positioning/plugins.qmltypes @@ -7,7 +7,7 @@ import QtQuick.tooling 1.2 // 'qmlplugindump -nonrelocatable QtPositioning 5.6' Module { - dependencies: [] + dependencies: ["QtQuick 2.0"] Component { name: "LocationSingleton" prototype: "QObject" @@ -205,44 +205,6 @@ Module { Method { name: "toString"; type: "string" } } Component { - name: "QQuickAbstractAnimation" - prototype: "QObject" - Enum { - name: "Loops" - values: { - "Infinite": -2 - } - } - Property { name: "running"; type: "bool" } - Property { name: "paused"; type: "bool" } - Property { name: "alwaysRunToEnd"; type: "bool" } - Property { name: "loops"; type: "int" } - Signal { name: "started" } - Signal { name: "stopped" } - Signal { - name: "runningChanged" - Parameter { type: "bool" } - } - Signal { - name: "pausedChanged" - Parameter { type: "bool" } - } - Signal { - name: "alwaysRunToEndChanged" - Parameter { type: "bool" } - } - Signal { - name: "loopCountChanged" - Parameter { type: "int" } - } - Method { name: "restart" } - Method { name: "start" } - Method { name: "pause" } - Method { name: "resume" } - Method { name: "stop" } - Method { name: "complete" } - } - Component { name: "QQuickGeoCoordinateAnimation" prototype: "QQuickPropertyAnimation" exports: ["QtPositioning/CoordinateAnimation 5.3"] @@ -259,37 +221,4 @@ Module { Property { name: "to"; type: "QGeoCoordinate" } Property { name: "direction"; type: "Direction" } } - Component { - name: "QQuickPropertyAnimation" - prototype: "QQuickAbstractAnimation" - Property { name: "duration"; type: "int" } - Property { name: "from"; type: "QVariant" } - Property { name: "to"; type: "QVariant" } - Property { name: "easing"; type: "QEasingCurve" } - Property { name: "target"; type: "QObject"; isPointer: true } - Property { name: "property"; type: "string" } - Property { name: "properties"; type: "string" } - Property { name: "targets"; type: "QObject"; isList: true; isReadonly: true } - Property { name: "exclude"; type: "QObject"; isList: true; isReadonly: true } - Signal { - name: "durationChanged" - Parameter { type: "int" } - } - Signal { - name: "fromChanged" - Parameter { type: "QVariant" } - } - Signal { - name: "toChanged" - Parameter { type: "QVariant" } - } - Signal { - name: "easingChanged" - Parameter { type: "QEasingCurve" } - } - Signal { - name: "propertiesChanged" - Parameter { type: "string" } - } - } } |