aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qmlbench/creation/delegates_dialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/qmlbench/creation/delegates_dialog.qml')
-rw-r--r--tests/benchmarks/qmlbench/creation/delegates_dialog.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/benchmarks/qmlbench/creation/delegates_dialog.qml b/tests/benchmarks/qmlbench/creation/delegates_dialog.qml
new file mode 100644
index 00000000..b653252c
--- /dev/null
+++ b/tests/benchmarks/qmlbench/creation/delegates_dialog.qml
@@ -0,0 +1,28 @@
+import QtQuick 2.0
+import QmlBench 1.0
+import QtQuick.Controls 2.1
+
+CreationBenchmark {
+ id: root
+ count: 20
+ staticCount: 200
+ delegate: Item {
+ x: QmlBench.getRandom() * root.width - width
+ y: QmlBench.getRandom() * root.height - height
+ width: dialog.width
+ height: dialog.height
+ Dialog {
+ id: dialog
+ visible: true
+ title: "Dialog"
+ modal: (index % 100) === 0
+ width: parent.width
+ height: parent.height
+ standardButtons: Dialog.Ok | Dialog.Cancel
+ Item {
+ implicitWidth: 200
+ implicitHeight: 200
+ }
+ }
+ }
+}