aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml')
-rw-r--r--src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml b/src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml
new file mode 100644
index 0000000..1be0b0c
--- /dev/null
+++ b/src/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.0
+import QmlBench 1.0
+
+// Tests the creation of Text with a short string of chinese text
+// This is similar to delegates_text, except with more glyphs
+CreationBenchmark {
+ id: root;
+ count: 50;
+ staticCount: 1000;
+ delegate: Text {
+ x: QmlBench.getRandom() * (root.width - width)
+ y: QmlBench.getRandom() * (root.height - height)
+ font.pixelSize: 10
+ text: "天地玄黄,宇宙洪荒。日月盈昃,辰宿列张。寒来暑往,秋收冬藏。闰余成岁,律吕调阳。云腾致雨,露结为霜。金生丽水,玉出崑冈。剑号巨阙,珠称夜光。果珍李柰,菜重芥姜。海咸河淡,鳞潜羽翔。龙师火帝,鸟官人皇。始制文字,乃服衣裳。推位让国,有虞陶唐。弔民伐罪,周发商汤。坐朝问道,垂拱平章。爱育黎首,臣伏戎羌。"
+ }
+}