aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pointer/main.qml')
-rw-r--r--tests/manual/pointer/main.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/manual/pointer/main.qml b/tests/manual/pointer/main.qml
index 4f7f610e8d..de7a11bbcc 100644
--- a/tests/manual/pointer/main.qml
+++ b/tests/manual/pointer/main.qml
@@ -28,7 +28,9 @@
import QtQuick 2.8
import QtQuick.Window 2.2
+import Qt.labs.handlers 1.0
import "qrc:/quick/shared/" as Examples
+import "content"
Window {
width: 800
@@ -53,4 +55,18 @@ Window {
addExample("flickable with Handlers", "Flickable with buttons, sliders etc. implemented in various ways", Qt.resolvedUrl("flickableWithHandlers.qml"))
}
}
+ Item {
+ id: glassPane
+ objectName: "glassPane"
+ z: 10000
+ anchors.fill: parent
+
+ // TODO use Instantiator to create these... but we need to be able to set their parents to glassPane somehow (QTBUG-64546)
+ TouchpointFeedbackSprite { }
+ TouchpointFeedbackSprite { }
+ TouchpointFeedbackSprite { }
+ TouchpointFeedbackSprite { }
+ TouchpointFeedbackSprite { }
+ TouchpointFeedbackSprite { }
+ }
}