aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/layouts/delegates_gridlayout.qml
blob: 8cdd48a503101ae754c3a1a4f079d7e4f7d157cc (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
39
40
import QtQuick 2.0
import QmlBench 1.0
import QtQuick.Layouts 1.0

// Tests the creation of GridLayout, to be compared with Grid
CreationBenchmark {
    id: root;
    count: 20;
    staticCount: 1000;
    delegate: GridLayout {
        x: Math.random() * (root.width - width)
        y: Math.random() * (root.height - height)
        columns: 2
        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"
        }
    }
}