aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickstates/data/unnamedWhen.qml
blob: 35eacff07ba81f1a0f9640b2ceb08ac39656bef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    id: theRect
    property bool triggerState: false
    property string stateString: ""
    states: State {
        when: triggerState
        PropertyChanges {
            target: theRect
            stateString: "inState"
        }
    }
}