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

Item {
    implicitWidth: 200
    implicitHeight: 100

    width: 80
    height: 60

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

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