Warning, /education/gcompris/src/activities/babyshapes/resource/board/board1_0.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris
0002  *
0003  * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004  *
0005  * Authors:
0006  *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
0007  *   Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port)
0008  *
0009  *   SPDX-License-Identifier: GPL-3.0-or-later
0010  */
0011 import QtQuick 2.12
0012 
0013 QtObject {
0014    property string instruction: qsTr("Drag and Drop the items to match them.")
0015 
0016    property var levels: [
0017       {
0018           "pixmapfile" : "food/baby_bottle.svg",
0019           "x" : "0.5",
0020           "y" : "0.25"
0021       },
0022       {
0023           "pixmapfile" : "food/orange.svg",
0024           "x" : "0.2",
0025           "y" : "0.75"
0026       },
0027       {
0028           "pixmapfile" : "food/cookie.svg",
0029           "x" : "0.8",
0030           "y" : "0.75"
0031       },
0032       {
0033           "pixmapfile" : "food/chocolate.svg",
0034           "x" : "0.5",
0035           "y" : "0.75"
0036       },
0037       {
0038           "pixmapfile" : "food/marmelade.svg",
0039           "x" : "0.8",
0040           "y" : "0.25"
0041       },
0042       {
0043           "pixmapfile" : "food/butter.svg",
0044           "x" : "0.2",
0045           "y" : "0.25"
0046       },
0047       {
0048           "pixmapfile" : "shapeBackground/T_butter.svg",
0049           "x" : "0.2",
0050           "y" : "0.25",
0051           "type" : "SHAPE_BACKGROUND"
0052       },
0053       {
0054           "pixmapfile" : "shapeBackground/T_baby_bottle.svg",
0055           "x" : "0.5",
0056           "y" : "0.25",
0057           "type" : "SHAPE_BACKGROUND"
0058       },
0059       {
0060           "pixmapfile" : "shapeBackground/T_marmelade.svg",
0061           "x" : "0.8",
0062           "y" : "0.25",
0063           "type" : "SHAPE_BACKGROUND"
0064       },
0065       {
0066           "pixmapfile" : "shapeBackground/T_orange.svg",
0067           "x" : "0.2",
0068           "y" : "0.75",
0069           "type" : "SHAPE_BACKGROUND"
0070       },
0071       {
0072           "pixmapfile" : "shapeBackground/T_chocolate.svg",
0073           "x" : "0.5",
0074           "y" : "0.75",
0075           "type" : "SHAPE_BACKGROUND"
0076       },
0077       {
0078           "pixmapfile" : "shapeBackground/T_cookie.svg",
0079           "x" : "0.8",
0080           "y" : "0.75",
0081           "type" : "SHAPE_BACKGROUND"
0082       }
0083    ]
0084 }