aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/touchmouse/data/oneMouseArea.qml
blob: dccc5792c808544c37023e224a3de670f8b45d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    width: 320; height: 240

    Rectangle {
        width: parent.width / 2; height: parent.height; x: width
        color: ma.containsPress ? "steelblue" : "lightsteelblue"
        MouseArea {
            id: ma
            anchors.fill: parent
        }
    }
}