summaryrefslogtreecommitdiffstats
path: root/tests/mousearea.qml
blob: 48e9044a1813fbc43ae8329e81d496692ecaa81b (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 2.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
        }
    }

}