aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickwidgets/qquickwidget/data/enterleave.qml
blob: b3057e30ad0bdd5ccd28b21850a2eab01e464df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    property bool hasMouse: mouseArea.containsMouse
    height: 200
    width: 200
    MouseArea {
        id: mouseArea
        hoverEnabled: true
        anchors.fill: parent
    }
}