aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/touchmouse/data
diff options
context:
space:
mode:
authorDaniel d'Andrada <daniel.dandrada@canonical.com>2012-12-19 15:29:49 -0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-09 18:42:42 +0100
commit5644e4f46c39964c0541d29740a9f741a0830f66 (patch)
tree424aa875a1845ae516001707469694920ff9d807 /tests/auto/quick/touchmouse/data
parent54f9fe5d41bc4a66d03c9846c1990958518d8623 (diff)
Test case for tapping on stacked mouse areas
Shows bug where the bottom mouse area could get a double click event out of a single tap. Change-Id: I4907a1506db2b4ccc5299d698c6e05fd02db963c Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'tests/auto/quick/touchmouse/data')
-rw-r--r--tests/auto/quick/touchmouse/data/twoMouseAreas.qml33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/auto/quick/touchmouse/data/twoMouseAreas.qml b/tests/auto/quick/touchmouse/data/twoMouseAreas.qml
new file mode 100644
index 0000000000..a02a6a4444
--- /dev/null
+++ b/tests/auto/quick/touchmouse/data/twoMouseAreas.qml
@@ -0,0 +1,33 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 320
+ height: 480
+ color: "#0c6d49"
+ objectName: "top rect"
+
+ Rectangle {
+ id: greyRectangle
+ objectName: "grey rect"
+ anchors {
+ left: parent.left
+ right: parent.right
+ top: parent.top
+ }
+ height: parent.height / 2
+ color: "grey"
+ }
+
+ MouseArea {
+ objectName: "rear mouseArea"
+ anchors.fill: parent
+ }
+
+ MouseArea {
+ objectName: "front mouseArea"
+ anchors.fill: greyRectangle
+ onPressed: {
+ mouse.accepted = false;
+ }
+ }
+}