aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/creation/quick/delegates_textmetrics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/auto/creation/quick/delegates_textmetrics.qml')
-rw-r--r--src/benchmarks/auto/creation/quick/delegates_textmetrics.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/benchmarks/auto/creation/quick/delegates_textmetrics.qml b/src/benchmarks/auto/creation/quick/delegates_textmetrics.qml
new file mode 100644
index 0000000..33a9506
--- /dev/null
+++ b/src/benchmarks/auto/creation/quick/delegates_textmetrics.qml
@@ -0,0 +1,29 @@
+import QtQuick 2.4
+import QmlBench 1.0
+
+// Tests the creation of TextMetrics with some simple props
+CreationBenchmark {
+ id: root;
+ count: 50;
+ staticCount: 2500;
+
+ property string fontName: {
+ if (Qt.platform.os == "osx") {
+ return "Helvetica"
+ } else if (Qt.platform.os == "linux") {
+ return "Open Sans"
+ } else if (Qt.platform.os == "windows") {
+ return "Arial"
+ }
+ }
+
+ delegate: Item {
+ TextMetrics {
+ font.family: root.fontName
+ text: "Hello world"
+ }
+ }
+}
+
+
+