File: delegates_dialog.qml

package info (click to toggle)
qtquickcontrols2-opensource-src 5.11.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 30,280 kB
  • sloc: cpp: 50,609; ansic: 128; makefile: 26
file content (28 lines) | stat: -rw-r--r-- 699 bytes parent folder | download
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
import QtQuick 2.0
import QmlBench 1.0
import QtQuick.Controls 2.1

CreationBenchmark {
    id: root
    count: 20
    staticCount: 200
    delegate: Item {
        x: QmlBench.getRandom() * root.width - width
        y: QmlBench.getRandom() * root.height - height
        width: dialog.width
        height: dialog.height
        Dialog {
            id: dialog
            visible: true
            title: "Dialog"
            modal: (index % 100) === 0
            width: parent.width
            height: parent.height
            standardButtons: Dialog.Ok | Dialog.Cancel
            Item {
                implicitWidth: 200
                implicitHeight: 200
            }
        }
    }
}