summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/SideRect.qml
blob: c7c7ebfafa7c7a88d3ed6f1d9e7588bc2e078b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.6

Rectangle {
    id: myRect

    property string text

    color: "black"
    width: 75; height: 50
    radius: 5
    border.width: 10; border.color: "white";
    MouseRegion {
        anchors.fill: parent
        hoverEnabled: true
        onEntered: { focusRect.x = myRect.x; focusRect.y = myRect.y; focusRect.text = myRect.text }
    }
}