aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickmousearea/data/simple.qml
blob: 56d561e5afb5f87eb759211bcda77d2c02743ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    id: whiteRect
    width: 200
    height: 200
    color: "white"
    MouseArea {
        objectName: "mousearea"
        anchors.fill: parent
    }
}