aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/signalTriggeredBindings.qml
blob: 1def3d0307a705ccc62335ed7b86aab485abd028 (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
}