aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2013-09-04 13:18:40 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-18 18:48:24 +0200
commit8694af08166a9a28d7cf5aaa850c620ed755bab5 (patch)
tree5123f16bb66967a82b0f34b63a21f427bdd18ed7 /src/imports
parent7efe51e116652f5e98cfda7affd992a2d91e65b1 (diff)
rerun qmlplugindump for QtQuick.Dialogs, now including QML types
Task-number: QTBUG-33106 Change-Id: Ib2ee0563f423bf7fe1d5990c621c46950f81516a Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com> Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/dialogs/plugins.qmltypes43
1 files changed, 29 insertions, 14 deletions
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"
@@ -29,6 +34,10 @@ Module {
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" }
- }
}
}