aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@qt.io>2022-03-16 16:10:57 +0100
committerRichard Moe Gustavsen <richard.gustavsen@qt.io>2022-03-28 06:43:41 +0100
commite718e369a677fe57bcb0955bd26a20a4ef07069b (patch)
treeefb804b2caaf997ffa870ea38f59c9cf278b04a0 /tests/manual/pointer
parent56a075341514db1242a0852ccf0fbe98e1fcabbc (diff)
manual test: add hoverpropagation test
Change-Id: If3cd93830c9ec7645d801cc9ad1dc31fc2551484 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/manual/pointer')
-rw-r--r--tests/manual/pointer/hoverpropagation.qml281
1 files changed, 281 insertions, 0 deletions
diff --git a/tests/manual/pointer/hoverpropagation.qml b/tests/manual/pointer/hoverpropagation.qml
new file mode 100644
index 0000000000..2492e2a683
--- /dev/null
+++ b/tests/manual/pointer/hoverpropagation.qml
@@ -0,0 +1,281 @@
+/****************************************************************************
+**
+** 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
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}