summaryrefslogtreecommitdiffstats
path: root/demos/declarative/minehunt/Description.qml
diff options
context:
space:
mode:
authorJustin McPherson <justin.mcpherson@nokia.com>2010-03-04 07:47:56 (GMT)
committerJustin McPherson <justin.mcpherson@nokia.com>2010-03-04 07:47:56 (GMT)
commitd29e837e34e3f683cfdea2d5e8f8241d4f26bafa (patch)
tree1914c0746a5cdb23a3f4bfdaa36df8dea7993f1f /demos/declarative/minehunt/Description.qml
parent5a3b9d3daf64ea686427478391d3773c5a1e024e (diff)
parent15f0fb150b924b890a8285fda8f10134f76d263c (diff)
downloadQt-d29e837e34e3f683cfdea2d5e8f8241d4f26bafa.zip
Qt-d29e837e34e3f683cfdea2d5e8f8241d4f26bafa.tar.gz
Qt-d29e837e34e3f683cfdea2d5e8f8241d4f26bafa.tar.bz2
Merge branch '4.7' of ../../qt-qml/4.7 into 4.7
Diffstat (limited to 'demos/declarative/minehunt/Description.qml')
-rw-r--r--demos/declarative/minehunt/Description.qml34
1 files changed, 0 insertions, 34 deletions
diff --git a/demos/declarative/minehunt/Description.qml b/demos/declarative/minehunt/Description.qml
deleted file mode 100644
index cc4d3b2..0000000
--- a/demos/declarative/minehunt/Description.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import Qt 4.6
-
-Item {
- id: page
- height: myText.height + 20
- property var text
- MouseArea {
- anchors.fill: parent
- drag.target: page
- drag.axis: "XandYAxis"
- drag.minimumX: 0
- drag.maximumX: 1000
- drag.minimumY: 0
- drag.maximumY: 1000
- }
- Rectangle {
- radius: 10
- anchors.fill: parent
- color: "lightsteelblue"
- }
- Item {
- x: 10
- y: 10
- width: parent.width - 20
- height: parent.height - 20
- Text {
- id: myText
- text: page.text
- width: parent.width
- clip: true
- wrap: true
- }
- }
-}