summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/MyRect.qml
blob: caf0d83785c3fd59dced4a72042f22797c34b4fe (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
    MouseArea {
        anchors.fill: parent
        onClicked: { bluerect.parent = page; bluerect.x=0 }
    }
}