summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/signalTriggeredBindings.qml
blob: f65e2530cd6c961b557acf66c5544ab2a7fc896d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Qt.test 1.0
import Qt 4.6

MyQmlObject {
    property real base: 50
    property alias test1: myObject.test1
    property alias test2: myObject.test2

    objectProperty: Object {
        id: myObject
        property real test1: base
        property real test2: Math.max(0, base)
    }
        
    // Signal with no args
    onBasicSignal: base = 200
    // Signal with args
    onArgumentSignal: base = 400
}