aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/fakeExtension.qml
blob: 6a5c7003f6a54f2f7872894dadd670b596e16c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: [
        State {
            name: "blue"
            PropertyChanges { target: myRectangle; color: "blue" }
        },
        State {
            name: "green"
            extend: "blue"
            PropertyChanges { target: myRectangle; color: "green" }
        }]
}