aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/layouts/delegates_column.qml
blob: e9b9d829a9328a4911865163bbb46f34ae86038a (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
28
29
30
31
32
33
34
35
36
37
38
import QtQuick 2.0
import QmlBench 1.0

// Tests the creation of a Column, to be compared with ColumnLayout.
CreationBenchmark {
    id: root;
    count: 20;
    staticCount: 1000;
    delegate: Column {
        x: Math.random() * (root.width - width)
        y: Math.random() * (root.height - height)
        Rectangle {
            width: 50
            height: 10
            color: "red"
        }
        Rectangle {
            width: 50
            height: 10
            color: "red"
        }
        Rectangle {
            width: 50
            height: 10
            color: "red"
        }
        Rectangle {
            width: 50
            height: 10
            color: "red"
        }
        Rectangle {
            width: 50
            height: 10
            color: "red"
        }
    }
}