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

Rectangle {
    id: myRect

    property string text

    width: 75; height: 50; radius: 6
    color: "#646464"; border.width: 4; border.color: "white"

    MouseArea {
        anchors.fill: parent
        hoverEnabled: true
        onEntered: { focusRect.x = myRect.x; focusRect.y = myRect.y; focusRect.text = myRect.text }
    }
}