aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes/data/rect_read.qml
blob: da6deddd75bad13c7e937ff3c02c31969b505fe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Test 1.0

MyTypeObject {
    property int r_x: rect.x
    property int r_y: rect.y
    property int r_width: rect.width
    property int r_height: rect.height
    property int r_left: rect.left
    property int r_right: rect.right
    property int r_top: rect.top
    property int r_bottom: rect.bottom
    property variant copy: rect
}