From b9fe898f64c47edd838d2c7d9cd12faba82c086a Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 24 Sep 2019 12:46:46 +0200 Subject: Update plugins.qmltypes for 5.14 Task-number: QTBUG-78690 Change-Id: Ica3ae02c5429167d41b0a332d448a4c9d9eb3bbd Reviewed-by: Alex Blasche --- src/imports/location/plugins.qmltypes | 329 +++++++++++++++++++++++++++--- src/imports/locationlabs/plugins.qmltypes | 11 + src/imports/positioning/plugins.qmltypes | 40 +++- 3 files changed, 356 insertions(+), 24 deletions(-) diff --git a/src/imports/location/plugins.qmltypes b/src/imports/location/plugins.qmltypes index 64f19ec1..27d8cbed 100644 --- a/src/imports/location/plugins.qmltypes +++ b/src/imports/location/plugins.qmltypes @@ -4,10 +4,284 @@ import QtQuick.tooling 1.2 // It is used for QML tooling purposes only. // // This file was auto-generated by: -// 'qmlplugindump -nonrelocatable QtLocation 5.13' +// 'qmlplugindump -nonrelocatable QtLocation 5.14' Module { dependencies: ["QtQuick 2.0"] + Component { + name: "QAbstractItemModel" + prototype: "QObject" + Enum { + name: "LayoutChangeHint" + values: { + "NoLayoutChangeHint": 0, + "VerticalSortHint": 1, + "HorizontalSortHint": 2 + } + } + Enum { + name: "CheckIndexOption" + values: { + "NoOption": 0, + "IndexIsValid": 1, + "DoNotUseParent": 2, + "ParentIsInvalid": 4 + } + } + Signal { + name: "dataChanged" + Parameter { name: "topLeft"; type: "QModelIndex" } + Parameter { name: "bottomRight"; type: "QModelIndex" } + Parameter { name: "roles"; type: "QVector" } + } + Signal { + name: "dataChanged" + Parameter { name: "topLeft"; type: "QModelIndex" } + Parameter { name: "bottomRight"; type: "QModelIndex" } + } + Signal { + name: "headerDataChanged" + Parameter { name: "orientation"; type: "Qt::Orientation" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "layoutChanged" + Parameter { name: "parents"; type: "QList" } + Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" } + } + Signal { + name: "layoutChanged" + Parameter { name: "parents"; type: "QList" } + } + Signal { name: "layoutChanged" } + Signal { + name: "layoutAboutToBeChanged" + Parameter { name: "parents"; type: "QList" } + Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" } + } + Signal { + name: "layoutAboutToBeChanged" + Parameter { name: "parents"; type: "QList" } + } + Signal { name: "layoutAboutToBeChanged" } + Signal { + name: "rowsAboutToBeInserted" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "rowsInserted" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "rowsAboutToBeRemoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "rowsRemoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "columnsAboutToBeInserted" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "columnsInserted" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "columnsAboutToBeRemoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { + name: "columnsRemoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "first"; type: "int" } + Parameter { name: "last"; type: "int" } + } + Signal { name: "modelAboutToBeReset" } + Signal { name: "modelReset" } + Signal { + name: "rowsAboutToBeMoved" + Parameter { name: "sourceParent"; type: "QModelIndex" } + Parameter { name: "sourceStart"; type: "int" } + Parameter { name: "sourceEnd"; type: "int" } + Parameter { name: "destinationParent"; type: "QModelIndex" } + Parameter { name: "destinationRow"; type: "int" } + } + Signal { + name: "rowsMoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "start"; type: "int" } + Parameter { name: "end"; type: "int" } + Parameter { name: "destination"; type: "QModelIndex" } + Parameter { name: "row"; type: "int" } + } + Signal { + name: "columnsAboutToBeMoved" + Parameter { name: "sourceParent"; type: "QModelIndex" } + Parameter { name: "sourceStart"; type: "int" } + Parameter { name: "sourceEnd"; type: "int" } + Parameter { name: "destinationParent"; type: "QModelIndex" } + Parameter { name: "destinationColumn"; type: "int" } + } + Signal { + name: "columnsMoved" + Parameter { name: "parent"; type: "QModelIndex" } + Parameter { name: "start"; type: "int" } + Parameter { name: "end"; type: "int" } + Parameter { name: "destination"; type: "QModelIndex" } + Parameter { name: "column"; type: "int" } + } + Method { name: "submit"; type: "bool" } + Method { name: "revert" } + Method { + name: "hasIndex" + type: "bool" + Parameter { name: "row"; type: "int" } + Parameter { name: "column"; type: "int" } + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { + name: "hasIndex" + type: "bool" + Parameter { name: "row"; type: "int" } + Parameter { name: "column"; type: "int" } + } + Method { + name: "index" + type: "QModelIndex" + Parameter { name: "row"; type: "int" } + Parameter { name: "column"; type: "int" } + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { + name: "index" + type: "QModelIndex" + Parameter { name: "row"; type: "int" } + Parameter { name: "column"; type: "int" } + } + Method { + name: "parent" + type: "QModelIndex" + Parameter { name: "child"; type: "QModelIndex" } + } + Method { + name: "sibling" + type: "QModelIndex" + Parameter { name: "row"; type: "int" } + Parameter { name: "column"; type: "int" } + Parameter { name: "idx"; type: "QModelIndex" } + } + Method { + name: "rowCount" + type: "int" + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { name: "rowCount"; type: "int" } + Method { + name: "columnCount" + type: "int" + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { name: "columnCount"; type: "int" } + Method { + name: "hasChildren" + type: "bool" + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { name: "hasChildren"; type: "bool" } + Method { + name: "data" + type: "QVariant" + Parameter { name: "index"; type: "QModelIndex" } + Parameter { name: "role"; type: "int" } + } + Method { + name: "data" + type: "QVariant" + Parameter { name: "index"; type: "QModelIndex" } + } + Method { + name: "setData" + type: "bool" + Parameter { name: "index"; type: "QModelIndex" } + Parameter { name: "value"; type: "QVariant" } + Parameter { name: "role"; type: "int" } + } + Method { + name: "setData" + type: "bool" + Parameter { name: "index"; type: "QModelIndex" } + Parameter { name: "value"; type: "QVariant" } + } + Method { + name: "headerData" + type: "QVariant" + Parameter { name: "section"; type: "int" } + Parameter { name: "orientation"; type: "Qt::Orientation" } + Parameter { name: "role"; type: "int" } + } + Method { + name: "headerData" + type: "QVariant" + Parameter { name: "section"; type: "int" } + Parameter { name: "orientation"; type: "Qt::Orientation" } + } + Method { + name: "fetchMore" + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { + name: "canFetchMore" + type: "bool" + Parameter { name: "parent"; type: "QModelIndex" } + } + Method { + name: "flags" + type: "Qt::ItemFlags" + Parameter { name: "index"; type: "QModelIndex" } + } + Method { + name: "match" + type: "QModelIndexList" + Parameter { name: "start"; type: "QModelIndex" } + Parameter { name: "role"; type: "int" } + Parameter { name: "value"; type: "QVariant" } + Parameter { name: "hits"; type: "int" } + Parameter { name: "flags"; type: "Qt::MatchFlags" } + } + Method { + name: "match" + type: "QModelIndexList" + Parameter { name: "start"; type: "QModelIndex" } + Parameter { name: "role"; type: "int" } + Parameter { name: "value"; type: "QVariant" } + Parameter { name: "hits"; type: "int" } + } + Method { + name: "match" + type: "QModelIndexList" + Parameter { name: "start"; type: "QModelIndex" } + Parameter { name: "role"; type: "int" } + Parameter { name: "value"; type: "QVariant" } + } + } + Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" } Component { name: "QDeclarativeCategory" prototype: "QObject" @@ -153,9 +427,10 @@ Module { "QtLocation/Map 5.0", "QtLocation/Map 5.11", "QtLocation/Map 5.12", - "QtLocation/Map 5.13" + "QtLocation/Map 5.13", + "QtLocation/Map 5.14" ] - exportMetaObjectRevisions: [0, 11, 12, 13] + exportMetaObjectRevisions: [0, 11, 12, 13, 14] Property { name: "gesture"; type: "QQuickGeoMapGestureArea"; isReadonly: true; isPointer: true } Property { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true } Property { name: "minimumZoomLevel"; type: "double" } @@ -250,6 +525,7 @@ Module { Parameter { name: "ready"; type: "bool" } } Signal { name: "mapObjectsChanged"; revision: 11 } + Signal { name: "visibleRegionChanged"; revision: 14 } Method { name: "setBearing" Parameter { name: "bearing"; type: "double" } @@ -372,11 +648,13 @@ Module { prototype: "QQuickItem" exports: [ "QtLocation/GeoMapItemBase 5.0", - "QtLocation/GeoMapItemBase 5.11" + "QtLocation/GeoMapItemBase 5.11", + "QtLocation/GeoMapItemBase 5.14" ] isCreatable: false - exportMetaObjectRevisions: [0, 11] + exportMetaObjectRevisions: [0, 11, 14] Property { name: "geoShape"; type: "QGeoShape" } + Property { name: "autoFadeIn"; revision: 14; type: "bool" } Signal { name: "mapItemOpacityChanged" } Signal { name: "addTransitionFinished"; revision: 12 } Signal { name: "removeTransitionFinished"; revision: 12 } @@ -833,7 +1111,7 @@ Module { Property { name: "availableServiceProviders"; type: "QStringList"; isReadonly: true } Property { name: "parameters" - type: "QDeclarativeGeoServiceProviderParameter" + type: "QDeclarativePluginParameter" isList: true isReadonly: true } @@ -891,23 +1169,6 @@ Module { } Method { name: "supportsNavigation"; revision: 11; type: "bool" } } - Component { - name: "QDeclarativeGeoServiceProviderParameter" - prototype: "QObject" - exports: ["QtLocation/PluginParameter 5.0"] - exportMetaObjectRevisions: [0] - Property { name: "name"; type: "string" } - Property { name: "value"; type: "QVariant" } - Signal { - name: "nameChanged" - Parameter { name: "name"; type: "string" } - } - Signal { - name: "valueChanged" - Parameter { name: "value"; type: "QVariant" } - } - Signal { name: "initialized" } - } Component { name: "QDeclarativeGeoServiceProviderRequirements" prototype: "QObject" @@ -918,6 +1179,7 @@ Module { Property { name: "routing"; type: "QDeclarativeGeoServiceProvider::RoutingFeatures" } Property { name: "geocoding"; type: "QDeclarativeGeoServiceProvider::GeocodingFeatures" } Property { name: "places"; type: "QDeclarativeGeoServiceProvider::PlacesFeatures" } + Property { name: "navigation"; type: "QDeclarativeGeoServiceProvider::NavigationFeatures" } Signal { name: "mappingRequirementsChanged" Parameter { name: "features"; type: "QDeclarativeGeoServiceProvider::MappingFeatures" } @@ -934,6 +1196,10 @@ Module { name: "placesRequirementsChanged" Parameter { name: "features"; type: "QDeclarativeGeoServiceProvider::PlacesFeatures" } } + Signal { + name: "navigationRequirementsChanged" + Parameter { name: "features"; type: "QDeclarativeGeoServiceProvider::NavigationFeatures" } + } Signal { name: "requirementsChanged" } Method { name: "matches" @@ -1147,6 +1413,23 @@ Module { Property { name: "userId"; type: "string" } Property { name: "name"; type: "string" } } + Component { + name: "QDeclarativePluginParameter" + prototype: "QObject" + exports: ["QtLocation/PluginParameter 5.0"] + exportMetaObjectRevisions: [0] + Property { name: "name"; type: "string" } + Property { name: "value"; type: "QVariant" } + Signal { + name: "nameChanged" + Parameter { name: "name"; type: "string" } + } + Signal { + name: "valueChanged" + Parameter { name: "value"; type: "QVariant" } + } + Signal { name: "initialized" } + } Component { name: "QDeclarativePolygonMapItem" defaultProperty: "data" diff --git a/src/imports/locationlabs/plugins.qmltypes b/src/imports/locationlabs/plugins.qmltypes index 24abe0a2..d69039b1 100644 --- a/src/imports/locationlabs/plugins.qmltypes +++ b/src/imports/locationlabs/plugins.qmltypes @@ -39,6 +39,8 @@ Module { Signal { name: "currentSegmentChanged" } Signal { name: "nextManeuverIconChanged" } Signal { name: "progressInformationChanged" } + Signal { name: "isOnRouteChanged" } + Signal { name: "alternativeRoutesChanged" } Method { name: "start"; type: "bool" } Method { name: "stop"; type: "bool" } Method { @@ -66,6 +68,12 @@ Module { isPointer: true } Property { name: "currentSegment"; type: "int"; isReadonly: true } + Property { + name: "alternativeRoutes" + type: "QAbstractItemModel" + isReadonly: true + isPointer: true + } Signal { name: "progressInformationChanged" } Signal { name: "waypointReached" @@ -86,6 +94,8 @@ Module { Property { name: "active"; type: "bool" } Property { name: "navigatorReady"; type: "bool"; isReadonly: true } Property { name: "trackPositionSource"; type: "bool" } + Property { name: "automaticReroutingEnabled"; type: "bool" } + Property { name: "isOnRoute"; type: "bool"; isReadonly: true } Property { name: "directions" type: "QDeclarativeNavigationBasicDirections" @@ -107,6 +117,7 @@ Module { name: "activeChanged" Parameter { name: "active"; type: "bool" } } + Method { name: "recalculateRoutes" } } Component { name: "QGeoMapObject" diff --git a/src/imports/positioning/plugins.qmltypes b/src/imports/positioning/plugins.qmltypes index c5c37db5..e951961c 100644 --- a/src/imports/positioning/plugins.qmltypes +++ b/src/imports/positioning/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 QtPositioning 5.13' +// 'qmlplugindump -nonrelocatable QtPositioning 5.14' Module { dependencies: ["QtQuick 2.0"] @@ -146,6 +146,23 @@ Module { Property { name: "boundingBox"; type: "QGeoRectangle" } Property { name: "extendedAttributes"; revision: 13; type: "QVariantMap" } } + Component { + name: "QDeclarativePluginParameter" + prototype: "QObject" + exports: ["QtPositioning/PluginParameter 5.14"] + exportMetaObjectRevisions: [0] + Property { name: "name"; type: "string" } + Property { name: "value"; type: "QVariant" } + Signal { + name: "nameChanged" + Parameter { name: "name"; type: "string" } + } + Signal { + name: "valueChanged" + Parameter { name: "value"; type: "QVariant" } + } + Signal { name: "initialized" } + } Component { name: "QDeclarativePosition" prototype: "QObject" @@ -181,6 +198,7 @@ Module { } Component { name: "QDeclarativePositionSource" + defaultProperty: "parameters" prototype: "QObject" exports: ["QtPositioning/PositionSource 5.0"] exportMetaObjectRevisions: [0] @@ -221,11 +239,31 @@ Module { Property { name: "preferredPositioningMethods"; type: "PositioningMethods" } Property { name: "sourceError"; type: "SourceError"; isReadonly: true } Property { name: "name"; type: "string" } + Property { + name: "parameters" + revision: 14 + type: "QDeclarativePluginParameter" + isList: true + isReadonly: true + } Signal { name: "validityChanged" } Signal { name: "updateTimeout" } Method { name: "update" } Method { name: "start" } Method { name: "stop" } + Method { + name: "setBackendProperty" + revision: 14 + type: "bool" + Parameter { name: "name"; type: "string" } + Parameter { name: "value"; type: "QVariant" } + } + Method { + name: "backendProperty" + revision: 14 + type: "QVariant" + Parameter { name: "name"; type: "string" } + } } Component { name: "QGeoShape" -- cgit v1.2.1