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

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