summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml
blob: e800f98500f57aecb211cf7b2606aba4e176fb2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

Item {
    id: root
    property bool clicked: false
    property bool held: false

    MouseArea {
        width: 200; height: 200
        onClicked: { root.clicked = true }
        onPressAndHold: { root.held = true }
    }
}