~baltix/gcompris-qt/0.97.1

« back to all changes in this revision

Viewing changes to src/activities/babymatch/resource/board/board3_0.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 var levels: [
 
26
      {
 
27
          "pixmapfile" : "images/house.svg",
 
28
          "x" : "0.5",
 
29
          "y" : "0.7",
 
30
          "height" : 0.25,
 
31
          "width" : 0.25
 
32
      },
 
33
      {
 
34
          "pixmapfile" : "images/star.svg",
 
35
          "x" : "0.2",
 
36
          "y" : "0.7",
 
37
          "height" : 0.25,
 
38
          "width" : 0.25
 
39
      },
 
40
      
 
41
      {
 
42
          "pixmapfile" : "images/sailingboat.svg",
 
43
          "x" : "0.8",
 
44
          "y" : "0.7",
 
45
          "height" : 0.25,
 
46
          "width" : 0.25
 
47
      },
 
48
      {
 
49
          "pixmapfile" : "images/fusee.svg",
 
50
          "x" : "0.2",
 
51
          "y" : "0.3",
 
52
          "type" : "SHAPE_BACKGROUND",
 
53
          "height" : 0.25,
 
54
          "width" : 0.25
 
55
      },
 
56
      {
 
57
          "pixmapfile" : "images/sofa.svg",
 
58
          "x" : "0.5",
 
59
          "y" : "0.3",
 
60
          "type" : "SHAPE_BACKGROUND",
 
61
          "height" : 0.25,
 
62
          "width" : 0.25
 
63
      },
 
64
      {
 
65
          "pixmapfile" : "images/lighthouse.svg",
 
66
          "x" : "0.8",
 
67
          "y" : "0.3",
 
68
          "type" : "SHAPE_BACKGROUND",
 
69
          "height" : 0.25,
 
70
          "width" : 0.25
 
71
      }
 
72
   ]
 
73
}