summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsTargets/JsOne.qml
blob: 117d0a51da25b2fad76672563116f9ac5af24466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 1.0

Item {
    id: root
    property int dynamicWidth: 10
    property int widthSignaledProperty: 20

    Rectangle {
        width: 100
        height: 50
        color: "red"
        border.color: "black"
        border.width: 5
        radius: 10
    }

    onDynamicWidthChanged: {
        widthSignaledProperty = dynamicWidth + (20/4) + 7 - 1;
    }
}