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("Panorama of Château de Chenonceau, Indre-et-Loire, France.")
15   property var levels: [
16      {
17         "pixmapfile" : "image/Chenonceau_background.jpg",
18         "type" : "SHAPE_BACKGROUND_IMAGE"
19      },
20      {
21         "pixmapfile" : "image/Chenonceau_0.png",
22         "x" : "0.199",
23         "y" : "0.459",
24         "dropAreaSize" : "8"
25      },
26      {
27         "pixmapfile" : "image/Chenonceau_1.png",
28         "x" : "0.318",
29         "y" : "0.421",
30         "dropAreaSize" : "8"
31      },
32      {
33         "pixmapfile" : "image/Chenonceau_2.png",
34         "x" : "0.469",
35         "y" : "0.579",
36         "dropAreaSize" : "8"
37      }
38   ]
39}
40