blob: 91f3b6e422d860850a4e487b3008946c90f4bf7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import Qt 4.6
Rectangle {
color: "white"
width: 200; height: 200
Rectangle {
width: 50; height: 50
color: "red"
Text { text: "Click"; anchors.centerIn: parent }
MouseRegion {
hoverEnabled: true
acceptedButtons: Qt.LeftButton | Qt.RightButton
onPressed: { print('press (x: ' + mouse.x + ' y: ' + mouse.y + ' button: ' + (mouse.button == Qt.RightButton ? 'right' : 'left') + ' Shift: ' + (mouse.modifiers & Qt.ShiftModifier ? 'true' : 'false') + ')') }
onReleased: { print('release (x: ' + mouse.x + ' y: ' + mouse.y + ' isClick: ' + mouse.isClick + ' wasHeld: ' + mouse.wasHeld + ')') }
onClicked: { print('click (x: ' + mouse.x + ' y: ' + mouse.y + ' wasHeld: ' + mouse.wasHeld + ')') }
onDoubleClicked: { print('double click (x: ' + mouse.x + ' y: ' + mouse.y + ')') }
onPressAndHold: { print('press and hold') }
onEntered: { print('entered ' + pressed) }
onExited: { print('exited ' + pressed) }
anchors.fill: parent
}
}
Rectangle {
y: 100; width: 50; height: 50
color: "blue"
Text { text: "Drag"; anchors.centerIn: parent }
MouseRegion {
drag.target: parent
drag.axis: "XAxis"
drag.minimumX: 0
drag.maximumX: 150
onPressed: { print('press') }
onReleased: { print('release (isClick: ' + mouse.isClick + ') (wasHeld: ' + mouse.wasHeld + ')') }
onClicked: { print('click' + '(wasHeld: ' + mouse.wasHeld + ')') }
onDoubleClicked: { print('double click') }
onPressAndHold: { print('press and hold') }
anchors.fill: parent
}
}
}
|