blob: 36b1fbe1518540afeeaeba523d0af79f7f391c06 [file] [log] [blame]
import QtQuick 2.12
import QmlBench 1.0
import QtQuick.Controls 2.12
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
}
}
}
}