aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick/delegates_fontloader.qml
blob: 354552bc8230c234e955db950f84ddd9b2fe3507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import QtQuick 2.0
import QmlBench 1.0

// Tests the creation of FontLoader with some simple props
// ### add a test for FontLoader from TTF?
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 {
        FontLoader {
            name: root.fontName
        }
    }
}