aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml
blob: 9ab8037e5183dc43adc989cd91099320334b0e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0
import Qt.test 1.0

MyRectangle {
    id: rect

    onDidSomething: color = "blue"

    width: 100; height: 100
    color: "red"
    states: State {
        name: "green"
        PropertyChanges {
            target: rect
            onDidSomething: color = "green"
        }
    }
}