aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickmousearea/data/hoverPosition.qml
blob: 01beb9a9afee6a447ea653d286dda95c449c0429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick

Rectangle {
    width: 400; height: 400

    Rectangle {
        width: 100; height: 100
        color: mousetracker.containsMouse ? "lightsteelblue" : "beige"

        MouseArea {
            id: mousetracker
            anchors.fill: parent
            hoverEnabled: true
        }
    }
}