1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
4 *
5 * Authors:
6 *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
7 *   Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port)
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import QtQuick 2.9
12
13QtObject {
14   property string instruction: qsTr("Moonwalker")
15   property var levels: [
16      {
17          "pixmapfile": "images/4.png",
18          "x": "0.75",
19          "y": "0.65",
20          "width": 0.4,
21          "height": 0.25,
22          "soundFile": "sound/2.$CA"
23      },
24      {
25          "pixmapfile": "images/3.png",
26          "x": "0.25",
27          "y": "0.65",
28          "width": 0.4,
29          "height": 0.25,
30          "soundFile": "sound/3.$CA"
31      },
32      {
33          "pixmapfile": "images/2.png",
34          "x": "0.75",
35          "y": "0.2",
36          "width": 0.4,
37          "height": 0.25,
38          "soundFile": "sound/2.$CA"
39      },
40      {
41          "pixmapfile": "images/1.png",
42          "x": "0.25",
43          "y": "0.2",
44          "width": 0.4,
45          "height": 0.25,
46          "soundFile": "sound/1.$CA"
47      },
48      {
49		  "text": qsTr("1"),
50		  "x": "0.25",
51		  "y": 0.4,
52		  "width": "0.1",
53          "height": 0.1,
54		  "type": "DisplayText"
55      },
56      {
57		  "text": qsTr("2"),
58		  "x": "0.75",
59		  "y": 0.4,
60		  "width": "0.1",
61          "height": 0.1,
62		  "type": "DisplayText"
63      },
64      {
65		  "text": qsTr("3"),
66		  "x": "0.25",
67		  "y": 0.85,
68		  "width": "0.1",
69          "height": 0.1,
70		  "type": "DisplayText"
71      },
72      {
73		  "text": qsTr("4"),
74		  "x": "0.75",
75		  "y": 0.85,
76		  "width": "0.1",
77          "height": 0.1,
78		  "type": "DisplayText"
79      }
80   ]
81}
82