aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrectangle/data/multi-radius.qml
blob: 18c74a2dd9b6f7aac13f52f4cf49eb27b243f6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import QtQuick

Item {
    property alias firstRectangle: r1
    property alias secondRectangle: r2
    property alias thirdRectangle: r3
    Rectangle {
        id: r1
        anchors.fill: parent
        radius: 5
        topLeftRadius: 10
        bottomRightRadius: 2
    }
    Rectangle {
        id: r2
        anchors.fill: parent
        radius: 5
        topRightRadius: 10
        bottomLeftRadius: 2
    }
    Rectangle {
        id: r3
        anchors.fill: parent
        radius: 5
    }
}