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

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 }
    }
}