From d73731665b754f279719dfa8b5c7d43b21278387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomi=20Korpip=C3=A4=C3=A4?= Date: Fri, 23 May 2014 09:01:50 +0300 Subject: Regenerated plugins.qmltypes Task-number: QTRD-3011 Change-Id: I195721bb87b6c7b70e6a4a02f77fde5cbed05c9c Change-Id: I195721bb87b6c7b70e6a4a02f77fde5cbed05c9c Reviewed-by: Miikka Heikkinen --- src/datavisualizationqml2/plugins.qmltypes | 440 +++++++++++++++++++++++++++-- 1 file changed, 414 insertions(+), 26 deletions(-) diff --git a/src/datavisualizationqml2/plugins.qmltypes b/src/datavisualizationqml2/plugins.qmltypes index 48a30665..0bd76543 100644 --- a/src/datavisualizationqml2/plugins.qmltypes +++ b/src/datavisualizationqml2/plugins.qmltypes @@ -4,16 +4,19 @@ import QtQuick.tooling 1.1 // It is used for QML tooling purposes only. // // This file was auto-generated by: -// 'qmlplugindump -nonrelocatable QtDataVisualization 1.0' +// 'qmlplugindump -nonrelocatable QtDataVisualization 1.1' Module { Component { name: "QtDataVisualization::AbstractDeclarative" defaultProperty: "data" prototype: "QQuickItem" - exports: ["QtDataVisualization/AbstractGraph3D 1.0"] + exports: [ + "QtDataVisualization/AbstractGraph3D 1.0", + "QtDataVisualization/AbstractGraph3D 1.1" + ] isCreatable: false - exportMetaObjectRevisions: [0] + exportMetaObjectRevisions: [0, 1] Enum { name: "SelectionFlag" values: { @@ -56,6 +59,17 @@ Module { "ShadowQualitySoftHigh": 6 } } + Enum { + name: "ElementType" + values: { + "ElementNone": 0, + "ElementSeries": 1, + "ElementAxisXLabel": 2, + "ElementAxisYLabel": 3, + "ElementAxisZLabel": 4, + "ElementCustomItem": 5 + } + } Enum { name: "RenderingMode" values: { @@ -66,18 +80,34 @@ Module { } Property { name: "selectionMode"; type: "SelectionFlags" } Property { name: "shadowQuality"; type: "ShadowQuality" } + Property { name: "shadowsSupported"; type: "bool"; isReadonly: true } Property { name: "msaaSamples"; type: "int" } Property { name: "scene"; type: "Declarative3DScene"; isReadonly: true; isPointer: true } Property { name: "inputHandler"; type: "QAbstract3DInputHandler"; isPointer: true } Property { name: "theme"; type: "Q3DTheme"; isPointer: true } Property { name: "renderingMode"; type: "RenderingMode" } + Property { name: "measureFps"; revision: 1; type: "bool" } + Property { name: "currentFps"; revision: 1; type: "double"; isReadonly: true } + Property { + name: "customItemList" + revision: 1 + type: "QCustom3DItem" + isList: true + isReadonly: true + } + Property { name: "orthoProjection"; revision: 1; type: "bool" } + Property { name: "selectedElement"; revision: 1; type: "ElementType"; isReadonly: true } Signal { name: "selectionModeChanged" - Parameter { name: "mode"; type: "SelectionFlags" } + Parameter { name: "mode"; type: "AbstractDeclarative::SelectionFlags" } } Signal { name: "shadowQualityChanged" - Parameter { name: "quality"; type: "ShadowQuality" } + Parameter { name: "quality"; type: "AbstractDeclarative::ShadowQuality" } + } + Signal { + name: "shadowsSupportedChanged" + Parameter { name: "supported"; type: "bool" } } Signal { name: "msaaSamplesChanged" @@ -97,7 +127,27 @@ Module { } Signal { name: "renderingModeChanged" - Parameter { name: "mode"; type: "RenderingMode" } + Parameter { name: "mode"; type: "AbstractDeclarative::RenderingMode" } + } + Signal { + name: "measureFpsChanged" + revision: 1 + Parameter { name: "enabled"; type: "bool" } + } + Signal { + name: "currentFpsChanged" + revision: 1 + Parameter { name: "fps"; type: "double" } + } + Signal { + name: "selectedElementChanged" + revision: 1 + Parameter { name: "type"; type: "QAbstract3DGraph::ElementType" } + } + Signal { + name: "orthoProjectionChanged" + revision: 1 + Parameter { name: "enabled"; type: "bool" } } Method { name: "handleAxisXChanged" @@ -116,6 +166,32 @@ Module { Parameter { name: "obj"; type: "QObject"; isPointer: true } } Method { name: "clearSelection" } + Method { + name: "addCustomItem" + revision: 1 + type: "int" + Parameter { name: "item"; type: "QCustom3DItem"; isPointer: true } + } + Method { name: "removeCustomItems"; revision: 1 } + Method { + name: "removeCustomItem" + revision: 1 + Parameter { name: "item"; type: "QCustom3DItem"; isPointer: true } + } + Method { + name: "removeCustomItemAt" + revision: 1 + Parameter { name: "position"; type: "QVector3D" } + } + Method { + name: "releaseCustomItem" + revision: 1 + Parameter { name: "item"; type: "QCustom3DItem"; isPointer: true } + } + Method { name: "selectedLabelIndex"; revision: 1; type: "int" } + Method { name: "selectedAxis"; revision: 1; type: "QAbstract3DAxis*" } + Method { name: "selectedCustomItemIndex"; revision: 1; type: "int" } + Method { name: "selectedCustomItem"; revision: 1; type: "QCustom3DItem*" } } Component { name: "QtDataVisualization::ColorGradient" @@ -437,11 +513,11 @@ Module { } Component { name: "QtDataVisualization::DeclarativeTheme3D" - defaultProperty: "seriesChildren" + defaultProperty: "themeChildren" prototype: "QtDataVisualization::Q3DTheme" exports: ["QtDataVisualization/Theme3D 1.0"] exportMetaObjectRevisions: [0] - Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true } + Property { name: "themeChildren"; type: "QObject"; isList: true; isReadonly: true } Property { name: "baseColors"; type: "DeclarativeColor"; isList: true; isReadonly: true } Property { name: "baseGradients"; type: "ColorGradient"; isList: true; isReadonly: true } Property { name: "singleHighlightGradient"; type: "ColorGradient"; isPointer: true } @@ -510,7 +586,7 @@ Module { } Signal { name: "cameraPresetChanged" - Parameter { name: "preset"; type: "CameraPreset" } + Parameter { name: "preset"; type: "Q3DCamera::CameraPreset" } } Signal { name: "wrapXRotationChanged" @@ -642,7 +718,7 @@ Module { Property { name: "colorStyle"; type: "ColorStyle" } Signal { name: "typeChanged" - Parameter { name: "themeType"; type: "Theme" } + Parameter { name: "themeType"; type: "Q3DTheme::Theme" } } Signal { name: "baseColorsChanged" @@ -726,15 +802,18 @@ Module { } Signal { name: "colorStyleChanged" - Parameter { name: "style"; type: "ColorStyle" } + Parameter { name: "style"; type: "Q3DTheme::ColorStyle" } } } Component { name: "QtDataVisualization::QAbstract3DAxis" prototype: "QObject" - exports: ["QtDataVisualization/AbstractAxis3D 1.0"] + exports: [ + "QtDataVisualization/AbstractAxis3D 1.0", + "QtDataVisualization/AbstractAxis3D 1.1" + ] isCreatable: false - exportMetaObjectRevisions: [0] + exportMetaObjectRevisions: [0, 1] Enum { name: "AxisOrientation" values: { @@ -759,13 +838,14 @@ Module { Property { name: "min"; type: "double" } Property { name: "max"; type: "double" } Property { name: "autoAdjustRange"; type: "bool" } + Property { name: "labelAutoRotation"; revision: 1; type: "double" } Signal { name: "titleChanged" Parameter { name: "newTitle"; type: "string" } } Signal { name: "orientationChanged" - Parameter { name: "orientation"; type: "AxisOrientation" } + Parameter { name: "orientation"; type: "QAbstract3DAxis::AxisOrientation" } } Signal { name: "minChanged" @@ -784,6 +864,11 @@ Module { name: "autoAdjustRangeChanged" Parameter { name: "autoAdjust"; type: "bool" } } + Signal { + name: "labelAutoRotationChanged" + revision: 1 + Parameter { name: "angle"; type: "double" } + } } Component { name: "QtDataVisualization::QAbstract3DInputHandler" @@ -808,7 +893,7 @@ Module { } Signal { name: "inputViewChanged" - Parameter { name: "view"; type: "InputView" } + Parameter { name: "view"; type: "QAbstract3DInputHandler::InputView" } } Signal { name: "sceneChanged" @@ -818,9 +903,12 @@ Module { Component { name: "QtDataVisualization::QAbstract3DSeries" prototype: "QObject" - exports: ["QtDataVisualization/Abstract3DSeries 1.0"] + exports: [ + "QtDataVisualization/Abstract3DSeries 1.0", + "QtDataVisualization/Abstract3DSeries 1.1" + ] isCreatable: false - exportMetaObjectRevisions: [0] + exportMetaObjectRevisions: [0, 1] Enum { name: "SeriesType" values: { @@ -862,6 +950,8 @@ Module { Property { name: "multiHighlightColor"; type: "QColor" } Property { name: "multiHighlightGradient"; type: "QLinearGradient" } Property { name: "name"; type: "string" } + Property { name: "itemLabel"; revision: 1; type: "string"; isReadonly: true } + Property { name: "itemLabelVisible"; revision: 1; type: "bool" } Signal { name: "itemLabelFormatChanged" Parameter { name: "format"; type: "string" } @@ -872,7 +962,7 @@ Module { } Signal { name: "meshChanged" - Parameter { name: "mesh"; type: "Mesh" } + Parameter { name: "mesh"; type: "QAbstract3DSeries::Mesh" } } Signal { name: "meshSmoothChanged" @@ -918,6 +1008,16 @@ Module { name: "nameChanged" Parameter { name: "name"; type: "string" } } + Signal { + name: "itemLabelChanged" + revision: 1 + Parameter { name: "label"; type: "string" } + } + Signal { + name: "itemLabelVisibilityChanged" + revision: 1 + Parameter { name: "visible"; type: "bool" } + } Method { name: "setMeshAxisAndAngle" Parameter { name: "axis"; type: "QVector3D" } @@ -1015,6 +1115,57 @@ Module { exportMetaObjectRevisions: [0] Property { name: "labels"; type: "QStringList" } } + Component { + name: "QtDataVisualization::QCustom3DItem" + prototype: "QObject" + exports: ["QtDataVisualization/Custom3DItem 1.1"] + exportMetaObjectRevisions: [0] + Property { name: "meshFile"; type: "string" } + Property { name: "textureFile"; type: "string" } + Property { name: "position"; type: "QVector3D" } + Property { name: "positionAbsolute"; type: "bool" } + Property { name: "scaling"; type: "QVector3D" } + Property { name: "rotation"; type: "QQuaternion" } + Property { name: "visible"; type: "bool" } + Property { name: "shadowCasting"; type: "bool" } + Signal { + name: "meshFileChanged" + Parameter { name: "meshFile"; type: "string" } + } + Signal { + name: "textureFileChanged" + Parameter { name: "textureFile"; type: "string" } + } + Signal { + name: "positionChanged" + Parameter { name: "position"; type: "QVector3D" } + } + Signal { + name: "positionAbsoluteChanged" + Parameter { name: "positionAbsolute"; type: "bool" } + } + Signal { + name: "scalingChanged" + Parameter { name: "scaling"; type: "QVector3D" } + } + Signal { + name: "rotationChanged" + Parameter { name: "rotation"; type: "QQuaternion" } + } + Signal { + name: "visibleChanged" + Parameter { name: "visible"; type: "bool" } + } + Signal { + name: "shadowCastingChanged" + Parameter { name: "shadowCasting"; type: "bool" } + } + Method { + name: "setRotationAxisAndAngle" + Parameter { name: "axis"; type: "QVector3D" } + Parameter { name: "angle"; type: "double" } + } + } Component { name: "QtDataVisualization::QHeightMapSurfaceDataProxy" prototype: "QtDataVisualization::QSurfaceDataProxy" @@ -1054,8 +1205,20 @@ Module { Component { name: "QtDataVisualization::QItemModelBarDataProxy" prototype: "QtDataVisualization::QBarDataProxy" - exports: ["QtDataVisualization/ItemModelBarDataProxy 1.0"] - exportMetaObjectRevisions: [0] + exports: [ + "QtDataVisualization/ItemModelBarDataProxy 1.0", + "QtDataVisualization/ItemModelBarDataProxy 1.1" + ] + exportMetaObjectRevisions: [0, 1] + Enum { + name: "MultiMatchBehavior" + values: { + "MMBFirst": 0, + "MMBLast": 1, + "MMBAverage": 2, + "MMBCumulative": 3 + } + } Property { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } Property { name: "rowRole"; type: "string" } Property { name: "columnRole"; type: "string" } @@ -1066,6 +1229,15 @@ Module { Property { name: "useModelCategories"; type: "bool" } Property { name: "autoRowCategories"; type: "bool" } Property { name: "autoColumnCategories"; type: "bool" } + Property { name: "rowRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "columnRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "valueRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "rotationRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "rowRoleReplace"; revision: 1; type: "string" } + Property { name: "columnRoleReplace"; revision: 1; type: "string" } + Property { name: "valueRoleReplace"; revision: 1; type: "string" } + Property { name: "rotationRoleReplace"; revision: 1; type: "string" } + Property { name: "multiMatchBehavior"; revision: 1; type: "MultiMatchBehavior" } Signal { name: "itemModelChanged" Parameter { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } @@ -1098,6 +1270,51 @@ Module { name: "autoColumnCategoriesChanged" Parameter { name: "enable"; type: "bool" } } + Signal { + name: "rowRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "columnRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "valueRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "rotationRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "rowRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "columnRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "valueRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "rotationRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "multiMatchBehaviorChanged" + revision: 1 + Parameter { name: "behavior"; type: "MultiMatchBehavior" } + } Method { name: "rowCategoryIndex" type: "int" @@ -1112,13 +1329,24 @@ Module { Component { name: "QtDataVisualization::QItemModelScatterDataProxy" prototype: "QtDataVisualization::QScatterDataProxy" - exports: ["QtDataVisualization/ItemModelScatterDataProxy 1.0"] - exportMetaObjectRevisions: [0] + exports: [ + "QtDataVisualization/ItemModelScatterDataProxy 1.0", + "QtDataVisualization/ItemModelScatterDataProxy 1.1" + ] + exportMetaObjectRevisions: [0, 1] Property { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } Property { name: "xPosRole"; type: "string" } Property { name: "yPosRole"; type: "string" } Property { name: "zPosRole"; type: "string" } Property { name: "rotationRole"; type: "string" } + Property { name: "xPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "yPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "zPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "rotationRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "xPosRoleReplace"; revision: 1; type: "string" } + Property { name: "yPosRoleReplace"; revision: 1; type: "string" } + Property { name: "zPosRoleReplace"; revision: 1; type: "string" } + Property { name: "rotationRoleReplace"; revision: 1; type: "string" } Signal { name: "itemModelChanged" Parameter { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } @@ -1139,12 +1367,64 @@ Module { name: "rotationRoleChanged" Parameter { name: "role"; type: "string" } } + Signal { + name: "xPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "yPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "zPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "rotationRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "rotationRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "xPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "yPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "zPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } } Component { name: "QtDataVisualization::QItemModelSurfaceDataProxy" prototype: "QtDataVisualization::QSurfaceDataProxy" - exports: ["QtDataVisualization/ItemModelSurfaceDataProxy 1.0"] - exportMetaObjectRevisions: [0] + exports: [ + "QtDataVisualization/ItemModelSurfaceDataProxy 1.0", + "QtDataVisualization/ItemModelSurfaceDataProxy 1.1" + ] + exportMetaObjectRevisions: [0, 1] + Enum { + name: "MultiMatchBehavior" + values: { + "MMBFirst": 0, + "MMBLast": 1, + "MMBAverage": 2, + "MMBCumulativeY": 3 + } + } Property { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } Property { name: "rowRole"; type: "string" } Property { name: "columnRole"; type: "string" } @@ -1156,6 +1436,17 @@ Module { Property { name: "useModelCategories"; type: "bool" } Property { name: "autoRowCategories"; type: "bool" } Property { name: "autoColumnCategories"; type: "bool" } + Property { name: "rowRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "columnRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "xPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "yPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "zPosRolePattern"; revision: 1; type: "QRegExp" } + Property { name: "rowRoleReplace"; revision: 1; type: "string" } + Property { name: "columnRoleReplace"; revision: 1; type: "string" } + Property { name: "xPosRoleReplace"; revision: 1; type: "string" } + Property { name: "yPosRoleReplace"; revision: 1; type: "string" } + Property { name: "zPosRoleReplace"; revision: 1; type: "string" } + Property { name: "multiMatchBehavior"; revision: 1; type: "MultiMatchBehavior" } Signal { name: "itemModelChanged" Parameter { name: "itemModel"; type: "const QAbstractItemModel"; isPointer: true } @@ -1192,6 +1483,61 @@ Module { name: "autoColumnCategoriesChanged" Parameter { name: "enable"; type: "bool" } } + Signal { + name: "rowRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "columnRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "xPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "yPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "zPosRolePatternChanged" + revision: 1 + Parameter { name: "pattern"; type: "QRegExp" } + } + Signal { + name: "rowRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "columnRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "xPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "yPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "zPosRoleReplaceChanged" + revision: 1 + Parameter { name: "replace"; type: "string" } + } + Signal { + name: "multiMatchBehaviorChanged" + revision: 1 + Parameter { name: "behavior"; type: "MultiMatchBehavior" } + } Method { name: "rowCategoryIndex" type: "int" @@ -1203,6 +1549,27 @@ Module { Parameter { name: "category"; type: "string" } } } + Component { + name: "QtDataVisualization::QLogValue3DAxisFormatter" + prototype: "QtDataVisualization::QValue3DAxisFormatter" + exports: ["QtDataVisualization/LogValueAxis3DFormatter 1.1"] + exportMetaObjectRevisions: [0] + Property { name: "base"; type: "double" } + Property { name: "autoSubGrid"; type: "bool" } + Property { name: "showEdgeLabels"; type: "bool" } + Signal { + name: "baseChanged" + Parameter { name: "base"; type: "double" } + } + Signal { + name: "autoSubGridChanged" + Parameter { name: "enabled"; type: "bool" } + } + Signal { + name: "showEdgeLabelsChanged" + Parameter { name: "enabled"; type: "bool" } + } + } Component { name: "QtDataVisualization::QScatter3DSeries" prototype: "QtDataVisualization::QAbstract3DSeries" @@ -1366,11 +1733,16 @@ Module { Component { name: "QtDataVisualization::QValue3DAxis" prototype: "QtDataVisualization::QAbstract3DAxis" - exports: ["QtDataVisualization/ValueAxis3D 1.0"] - exportMetaObjectRevisions: [0] + exports: [ + "QtDataVisualization/ValueAxis3D 1.0", + "QtDataVisualization/ValueAxis3D 1.1" + ] + exportMetaObjectRevisions: [0, 1] Property { name: "segmentCount"; type: "int" } Property { name: "subSegmentCount"; type: "int" } Property { name: "labelFormat"; type: "string" } + Property { name: "formatter"; revision: 1; type: "QValue3DAxisFormatter"; isPointer: true } + Property { name: "reversed"; revision: 1; type: "bool" } Signal { name: "segmentCountChanged" Parameter { name: "count"; type: "int" } @@ -1383,5 +1755,21 @@ Module { name: "labelFormatChanged" Parameter { name: "format"; type: "string" } } + Signal { + name: "formatterChanged" + revision: 1 + Parameter { name: "formatter"; type: "QValue3DAxisFormatter"; isPointer: true } + } + Signal { + name: "reversedChanged" + revision: 1 + Parameter { name: "enable"; type: "bool" } + } + } + Component { + name: "QtDataVisualization::QValue3DAxisFormatter" + prototype: "QObject" + exports: ["QtDataVisualization/ValueAxis3DFormatter 1.1"] + exportMetaObjectRevisions: [0] } } -- cgit v1.2.3