summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlstates/data/legalTempState.qml
blob: 54c97b9d120234f0d0d5bb7b2908785b6f1b3df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Qt 4.6

Rectangle {
    id: card
    width: 100; height: 100

    states: [
        State {
            name: "placed"
            onCompleted: card.state = "idle"
            StateChangeScript { script: console.log("entering placed") }
        },
        State {
            name: "idle"
            StateChangeScript { script: console.log("entering idle") }
        }
    ]

    MouseRegion {
        anchors.fill: parent
        onClicked: card.state = "placed"
    }
}