aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.text/delegates_text.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.text/delegates_text.qml')
-rw-r--r--benchmarks/auto/creation/quick.text/delegates_text.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/benchmarks/auto/creation/quick.text/delegates_text.qml b/benchmarks/auto/creation/quick.text/delegates_text.qml
new file mode 100644
index 0000000..0f52ac3
--- /dev/null
+++ b/benchmarks/auto/creation/quick.text/delegates_text.qml
@@ -0,0 +1,27 @@
+import QtQuick 2.0
+
+Item {
+ id: root;
+ property int count: 50;
+ 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
+ Text {
+ x: Math.random() * (root.width - width)
+ y: Math.random() * (root.height - height)
+ text: "Qt Quick!"
+ font.pixelSize: 10
+// renderType: Text.NativeRendering
+ }
+ }
+}