summaryrefslogtreecommitdiffstats
path: root/examples/declarative/mouseregion/mouse.qml
blob: 34c6e66a99c298ea98443099ee9c6ce1d8c2cdb5 (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
import Qt 4.6

Rect {
    color: "white"
    width: 200; height: 200
    Rect {
        width: 50; height: 50
        color: "red"
        Text { text: "Click"; anchors.centerIn: parent }
        MouseRegion {
            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
        }
    }
    Rect {
        y: 100; width: 50; height: 50
        color: "blue"
        Text { text: "Drag"; anchors.centerIn: parent }
        MouseRegion {
            drag.target: parent
            drag.axis: "x"
            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
        }
    }
}