From 8694af08166a9a28d7cf5aaa850c620ed755bab5 Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Wed, 4 Sep 2013 13:18:40 +0200 Subject: rerun qmlplugindump for QtQuick.Dialogs, now including QML types Task-number: QTBUG-33106 Change-Id: Ib2ee0563f423bf7fe1d5990c621c46950f81516a Reviewed-by: Shawn Rutledge Reviewed-by: Liang Qi --- src/imports/dialogs/plugins.qmltypes | 43 ++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 14 deletions(-) (limited to 'src/imports') diff --git a/src/imports/dialogs/plugins.qmltypes b/src/imports/dialogs/plugins.qmltypes index 4e7090b960..c52d355cad 100644 --- a/src/imports/dialogs/plugins.qmltypes +++ b/src/imports/dialogs/plugins.qmltypes @@ -11,6 +11,11 @@ Module { prototype: "QQuickAbstractDialog" Property { name: "showAlphaChannel"; type: "bool" } Property { name: "color"; type: "QColor" } + Property { name: "currentColor"; type: "QColor" } + Property { name: "currentHue"; type: "double"; isReadonly: true } + Property { name: "currentSaturation"; type: "double"; isReadonly: true } + Property { name: "currentLightness"; type: "double"; isReadonly: true } + Property { name: "currentAlpha"; type: "double"; isReadonly: true } Signal { name: "selectionAccepted" } Method { name: "setVisible" @@ -28,6 +33,10 @@ Module { name: "setColor" Parameter { name: "arg"; type: "QColor" } } + Method { + name: "setCurrentColor" + Parameter { name: "currentColor"; type: "QColor" } + } Method { name: "setShowAlphaChannel" Parameter { name: "arg"; type: "bool" } @@ -50,6 +59,22 @@ Module { Signal { name: "rejected" } Method { name: "open" } Method { name: "close" } + Method { + name: "setX" + Parameter { name: "arg"; type: "int" } + } + Method { + name: "setY" + Parameter { name: "arg"; type: "int" } + } + Method { + name: "setWidth" + Parameter { name: "arg"; type: "int" } + } + Method { + name: "setHeight" + Parameter { name: "arg"; type: "int" } + } } Component { name: "QQuickAbstractFileDialog" @@ -99,25 +124,15 @@ Module { } } Component { - name: "QQuickColorDialog" - defaultProperty: "implementation" + name: "QQuickPlatformColorDialog" prototype: "QQuickAbstractColorDialog" - exports: ["QtQuick.Dialogs/AbstractColorDialog 1.0"] + exports: ["QtQuick.Dialogs/ColorDialog 1.0"] exportMetaObjectRevisions: [0] - Property { name: "implementation"; type: "QObject"; isPointer: true } } Component { - name: "QQuickFileDialog" - defaultProperty: "implementation" + name: "QQuickPlatformFileDialog" prototype: "QQuickAbstractFileDialog" - exports: ["QtQuick.Dialogs/AbstractFileDialog 1.0"] + exports: ["QtQuick.Dialogs/FileDialog 1.0"] exportMetaObjectRevisions: [0] - Property { name: "implementation"; type: "QObject"; isPointer: true } - Method { name: "clearSelection" } - Method { - name: "addSelection" - type: "bool" - Parameter { name: "path"; type: "QUrl" } - } } } -- cgit v1.2.3