aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/signalTriggeredBindings.qml
blob: d98d7e9c819dfbce68d4123f146051f1600e6e46 (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 QtQuick 2.0

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

    objectProperty: QtObject {
        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
}