aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-05-30 11:23:22 +1000
committerMartin Jones <martin.jones@nokia.com>2011-05-30 11:23:22 +1000
commit0063c93d1ca1cc69b890e6263b95f18a7667b6ff (patch)
tree1e77bb6c8f49499e6d0012984d947105b0ac9084 /tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml
parent481eb161412b33222a74570183f74220265d19b9 (diff)
qmlvisual is broken and unmaintained. Remove it.
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml52
1 files changed, 0 insertions, 52 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml
deleted file mode 100644
index 70ea78c7d5..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml
+++ /dev/null
@@ -1,52 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400; height: 480
- color: "white"
-
- Flickable {
- anchors.fill: parent
- contentHeight: 100
-
- Rectangle {
- id: yellow
- width: 400; height: 120
- color: "yellow"
- MouseArea {
- anchors.fill: parent
- onPressedChanged: pressed ? yellow.color = "lightyellow": yellow.color = "yellow"
- }
- }
- Rectangle {
- id: blue
- width: 400; height: 120
- y: 120
- color: "steelblue"
- MouseArea {
- anchors.fill: parent
- onPressed: blue.color = "lightsteelblue"
- onCanceled: blue.color = "steelblue"
- }
- }
- Rectangle {
- id: red
- y: 240
- width: 400; height: 120
- color: "red"
- MouseArea {
- anchors.fill: parent
- onEntered: { red.color = "darkred"; tooltip.opacity = 1 }
- onCanceled: { red.color = "red"; tooltip.opacity = 0 }
- }
- Rectangle {
- id: tooltip
- x: 10; y: 20
- width: 100; height: 50
- color: "green"
- opacity: 0
- }
- }
-
- }
-
-}