aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickitem2/data/implicitsize.qml
blob: cc6aaf7d6023e0ab0ddfdff3b04fa6ae13dea050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

Item {
    implicitWidth: 200
    implicitHeight: 100

    width: 80
    height: 60

    function resetSize() {
        width = undefined
        height = undefined
    }

    function changeImplicit() {
        implicitWidth = 150
        implicitHeight = 80
    }
}