summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/MyRect.qml
blob: 1ccf4dbb7eae460af4a23c2d1c930a775181af3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

Rect {
    radius: 15
    pen.color: "black"
    width: 100
    height: 100
    id: Page
    MouseRegion {
        anchors.fill: parent
        onClicked: { bluerect.parent = Page; bluerect.x=0 }
    }
}