aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/layouts/delegates_columnlayout.qml
blob: 5324b674523931c1a1501f565bfbd06267036579 (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
import QtQuick.Layouts 1.0

CreationBenchmark {
    id: root;
    count: 20;
    staticCount: 1000;
    delegate: ColumnLayout {
        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"
        }
    }
}