summaryrefslogtreecommitdiffstats
path: root/tests/mousearea.qml
blob: 6924dd690d2c6b0c79f47f4415fe6c356edf1442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import QtQuick 1.0


Item
{
    width: 800
    height: 600

    Rectangle {
        id: box
        color: mouseArea.pressed ? "black" : "steelblue"
        radius: 10
        width: 100
        height: 100
        border.color: "red"
        border.width: 3

        MouseArea {
            id: mouseArea
            anchors.fill: parent
            drag.target: box
        }
    }

}