~baltix/gcompris-qt/0.97.1

« back to all changes in this revision

Viewing changes to src/activities/babyshapes/resource/board/board7_2.qml

  • Committer: Mantas Kriaučiūnas
  • Date: 2020-07-06 18:07:11 UTC
  • Revision ID: baltix@gmail.com-20200706180711-g254osu02cn8bc8p
GCompris-QT 0.97.1 with Lithuanian translation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GCompris
 
2
 *
 
3
 * Copyright (C) 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
 *   This program is free software; you can redistribute it and/or modify
 
10
 *   it under the terms of the GNU General Public License as published by
 
11
 *   the Free Software Foundation; either version 3 of the License, or
 
12
 *   (at your option) any later version.
 
13
 *
 
14
 *   This program is distributed in the hope that it will be useful,
 
15
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *   GNU General Public License for more details.
 
18
 *
 
19
 *   You should have received a copy of the GNU General Public License
 
20
 *   along with this program; if not, see <https://www.gnu.org/licenses/>.
 
21
 */
 
22
import QtQuick 2.6
 
23
 
 
24
QtObject {
 
25
   property string instruction: qsTr("The Lady and the Unicorn - XVe century")
 
26
   property var levels: [
 
27
          {
 
28
          "pixmapfile" : "image/lady_unicorn_background.png",
 
29
          "type" : "SHAPE_BACKGROUND_IMAGE"
 
30
      },
 
31
      {
 
32
          "pixmapfile" : "image/lady_unicorn_5.png",
 
33
          "dropAreaSize" : "10",
 
34
          "x" : "0.07",
 
35
          "y" : "0.818"
 
36
      },
 
37
      {
 
38
          "pixmapfile" : "image/lady_unicorn_4.png",
 
39
          "dropAreaSize" : "10",
 
40
          "x" : "0.256",
 
41
          "y" : "0.666"
 
42
      },
 
43
      {
 
44
          "pixmapfile" : "image/lady_unicorn_2.png",
 
45
          "dropAreaSize" : "10",
 
46
          "x" : "0.462",
 
47
          "y" : "0.553"
 
48
      },
 
49
      {
 
50
          "pixmapfile" : "image/lady_unicorn_3.png",
 
51
          "dropAreaSize" : "10",
 
52
          "x" : "0.724",
 
53
          "y" : "0.883"
 
54
      },
 
55
      {
 
56
          "pixmapfile" : "image/lady_unicorn_1.png",
 
57
          "dropAreaSize" : "10",
 
58
          "x" : "0.877",
 
59
          "y" : "0.039"
 
60
      }
 
61
   ]
 
62
}