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 int numberOfSubLevel: 4
15   property string instruction: qsTr("Paul Gauguin, Arearea - 1892")
16   property var levels: [
17	  {
18          "pixmapfile" : "image/Paul_Gauguin_006_background.png",
19          "type" : "SHAPE_BACKGROUND_IMAGE"
20      },
21      {
22          "pixmapfile" : "image/Paul_Gauguin_006_chien.png",
23          "dropAreaSize" : "10",
24          "x" : "0.278",
25          "y" : "0.807"
26      },
27      {
28          "pixmapfile" : "image/Paul_Gauguin_006_jeunes_filles.png",
29          "dropAreaSize" : "10",
30          "x" : "0.666",
31          "y" : "0.46"
32      },
33      {
34          "pixmapfile" : "image/Paul_Gauguin_006_statue.png",
35          "dropAreaSize" : "10",
36          "x" : "0.19",
37          "y" : "0.133"
38      }
39   ]
40}
41