aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/examples/delegates_complex.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/examples/delegates_complex.qml')
-rw-r--r--benchmarks/auto/creation/examples/delegates_complex.qml44
1 files changed, 44 insertions, 0 deletions
diff --git a/benchmarks/auto/creation/examples/delegates_complex.qml b/benchmarks/auto/creation/examples/delegates_complex.qml
new file mode 100644
index 0000000..f78943a
--- /dev/null
+++ b/benchmarks/auto/creation/examples/delegates_complex.qml
@@ -0,0 +1,44 @@
+import QtQuick 2.0
+
+Item {
+ id: root;
+ property int count: 20;
+ property int staticCount: 1000;
+
+ property real t;
+ NumberAnimation on t { from: 0; to: 1; duration: 1000; loops: Animation.Infinite }
+ onTChanged: {
+ repeater.model = 0;
+ repeater.model = root.count
+ }
+
+ Component.onCompleted: repeater.model = root.count
+
+ Repeater {
+ id: repeater
+ Rectangle {
+ x: Math.random() * root.width
+ y: Math.random() * root.height
+ width: 100
+ height: 50
+ gradient: Gradient {
+ GradientStop { position: 0; color: "steelblue" }
+ GradientStop { position: 1; color: "black" }
+ }
+ Repeater {
+ model: 10
+ Text {
+ id: label
+ x: (index % 2) * 50
+ y: Math.floor(index / 2) * 10;
+ width: 50
+ height: 10
+ horizontalAlignment: Text.AlignHCenter
+ text: "Item #" + index
+ color: "white"
+ font.pixelSize: 10
+ }
+ }
+ }
+ }
+}