qtdeclarative/tests/manual/pointer/hoverpropagation.qml

282 lines
8.3 KiB
QML
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the manual tests of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.1
import QtQuick.Window
import QtQuick.Controls
Window {
width: 800
height: 700
visible: true
Flow {
anchors.fill: parent
spacing: 20
Column {
Label {
text: "Nested: MouseArea, MouseArea"
}
Rectangle {
width: 200
height: 200
border.width: 1
color: m3.containsMouse ? "yellow" : "transparent"
MouseArea {
id: m3
anchors.fill: parent
hoverEnabled: true
MouseArea {
id: m2
width: 100
height: 100
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: m2.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
}
}
}
}
}
Column {
Label {
text: "Nested: MouseArea, Rectangle, MouseArea"
}
Rectangle {
width: 200
height: 200
border.width: 1
color: m4.containsMouse ? "yellow" : "transparent"
MouseArea {
id: m4
anchors.fill: parent
hoverEnabled: true
Rectangle {
width: 100
height: 100
color: m1.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
MouseArea {
id: m1
anchors.fill: parent
hoverEnabled: true
}
}
}
}
}
Column {
Label {
text: "Siblings: MouseArea, MouseArea"
}
Item {
width: 200
height: 200
MouseArea {
id: ma1
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma1.containsMouse ? "red" : "white"
opacity: 0.5
border.width: 1
}
}
MouseArea {
id: ma2
x: 50
y: 50
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma2.containsMouse ? "blue" : "white"
opacity: 0.5
border.width: 1
}
}
}
}
Column {
Label {
text: "Nested: Button, Button"
}
Button {
width: 200
height: 200
hoverEnabled: true
text: hovered ? "hovered" : ""
Button {
width: 100
height: 100
text: hovered ? "hovered" : ""
}
}
}
Column {
Label {
text: "Siblings: Button, Button"
}
Item {
width: 200
height: 200
Button {
width: 150
height: 150
hoverEnabled: true
text: hovered ? "hovered" : ""
}
Button {
x: 50
y: 50
width: 150
height: 150
text: hovered ? "hovered" : ""
opacity: 0.8
}
}
}
Column {
Label {
text: "Siblings: Button, MouseArea"
}
Item {
width: 200
height: 200
Button {
width: 150
height: 150
text: hovered ? "hovered" : ""
}
MouseArea {
id: m8
x: 50
y: 50
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: m8.containsMouse ? "blue" : "transparent"
opacity: 0.5
border.width: 1
}
}
}
}
Column {
Label {
text: "Siblings: MouseArea, Button"
}
Item {
width: 200
height: 200
MouseArea {
id: ma11
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma11.containsMouse ? "blue" : "transparent"
opacity: 0.5
border.width: 1
}
}
Button {
x: 50
y: 50
width: 150
height: 150
text: hovered ? "hovered" : ""
opacity: 0.8
}
}
}
Column {
Label {
text: "Nested: Button, Rectangle, MouseArea, Rectangle, MouseArea"
}
Button {
width: 200
height: 200
text: hovered ? "hovered" : ""
Rectangle {
anchors.fill: parent
anchors.margins: 20
border.width: 1
color: m5.containsMouse ? "yellow" : "transparent"
opacity: 0.5
MouseArea {
id: m5
anchors.fill: parent
hoverEnabled: true
Rectangle {
anchors.fill: parent
anchors.margins: 20
color: m6.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
MouseArea {
id: m6
anchors.fill: parent
hoverEnabled: true
}
}
}
}
}
}
}
}