aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers/qquickhoverhandler/data/hoverHandler.qml
blob: 60dfc53c4027c4343a298eafeb1407ddfe917484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick

Item {
    width: 320
    height: 240

    Rectangle {
        width: 100
        height: 100
        anchors.centerIn: parent
        color: hh.hovered ? "lightsteelblue" : "beige"

        HoverHandler {
            id: hh
        }
    }
}