aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/mousearea/mousearea-snippet.qml
blob: d99f0efc6e7769ee2ad405210a22f1c3ce7e9573 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [document]
import QtQuick

//! [parent begin]
Rectangle {
//! [parent begin]
    width: 500; height: 500
    color: "green"

    Column {
        //! [anchor fill]
        Rectangle {
            id: button
            width: 100; height: 100

            MouseArea {
                anchors.fill: parent
                onClicked: console.log("button clicked")
            }
            MouseArea {
                width:150; height: 75
                onClicked: console.log("irregular area clicked")
            }
        }
        //! [anchor fill]

        Rectangle {
            width: 100; height: 100

        //! [enable handlers]
            MouseArea {
                hoverEnabled: true
                acceptedButtons: Qt.LeftButton | Qt.RightButton
                onEntered: console.log("mouse entered the area")
                onExited: console.log("mouse left the area")
            }
        //! [enable handlers]
        }

        Rectangle {
            width: 100; height: 100

        //! [signal handlers]
            MouseArea {
                anchors.fill: parent
                onClicked: console.log("area clicked")
                onDoubleClicked: console.log("area double clicked")
                onEntered: console.log("mouse entered the area")
                onExited: console.log("mouse left the area")
            }
        //! [signal handlers]
        }

    } //end of column
//! [parent end]
}
//! [parent end]
//! [document]