summaryrefslogtreecommitdiff
path: root/examples/sensors/maze/Congratulation.qml
diff options
context:
space:
mode:
authorWolfgang Beck <wolfgang.beck@nokia.com>2011-09-23 15:05:58 +1000
committerLincoln Ramsay <lincoln.ramsay@nokia.com>2011-10-10 09:25:31 +1000
commit4a30e784182a41d54d8b908ba47d948ed4172236 (patch)
tree2ff42941e52d0f0273fa918b0be91ffb970492da /examples/sensors/maze/Congratulation.qml
parent8ad3f314812136d37cbdb0d4eef65206d9171fac (diff)
downloadqtsensors-4a30e784182a41d54d8b908ba47d948ed4172236.tar.gz
MTMW-288 add Maze (TiltSensor Example)
Change-Id: I023e4baeb82facfb7d2f97c3b6076d7f1e816e16 Reviewed-on: http://codereview.qt-project.org/5434 Reviewed-by: Wolfgang Beck <wolfgang.beck@nokia.com>
Diffstat (limited to 'examples/sensors/maze/Congratulation.qml')
-rw-r--r--examples/sensors/maze/Congratulation.qml21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/sensors/maze/Congratulation.qml b/examples/sensors/maze/Congratulation.qml
new file mode 100644
index 0000000..2f5ffb1
--- /dev/null
+++ b/examples/sensors/maze/Congratulation.qml
@@ -0,0 +1,21 @@
+//Import the declarative plugins
+import QtQuick 2.0
+
+//Import the javascript functions for this game
+import "lib.js" as Lib
+
+//Implementation of the Congratulation control
+Item {
+ x: Lib.cellDimension
+ y: Lib.cellDimension
+ width: Lib.cellDimension * (Lib.dimension - 2)
+ height: Lib.cellDimension * (Lib.dimension - 2)
+
+ //Containing a animated gif image
+ AnimatedImage {
+ id: img
+ anchors.fill: parent
+ visible: true
+ source: "images/congratulations.gif"
+ }
+}