aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers/qquickhoverhandler/data/windowCursorShape.qml
blob: b5c1f3d2efb631f930ab08f55a5404e2c860f6ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.15
import QtQuick.Window 2.15

Window {
    width: 320
    height: 240
    visible: true
    color: hh.hovered ? "lightsteelblue" : "beige"
    HoverHandler {
        id: hh
        cursorShape: Qt.OpenHandCursor
    }
}