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

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