Warning, /education/gcompris/src/activities/imagename/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 each item above its name")
0015    property var levels: [
0016       {
0017           "pixmapfile": "images/postpoint.svg",
0018           "x": "0.2",
0019           "y": "0.2",
0020           "height": 0.25,
0021           "width": 0.25
0022       },
0023       {
0024           "pixmapfile": "images/sailingboat.svg",
0025           "x": "0.5",
0026           "y": "0.2",
0027           "height": 0.25,
0028           "width": 0.25
0029       },
0030       {
0031           "pixmapfile": "images/lamp.svg",
0032           "x": "0.8",
0033           "y": "0.2",
0034           "height": 0.25,
0035           "width": 0.25
0036       },
0037       {
0038           "pixmapfile": "images/postcard.svg",
0039           "x": "0.2",
0040           "y": "0.65",
0041           "height": 0.25,
0042           "width": 0.25
0043       },
0044       {
0045           "pixmapfile": "images/fishingboat.svg",
0046           "x": "0.5",
0047           "y": "0.65",
0048           "height": 0.25,
0049           "width": 0.25
0050       },
0051       {
0052           "pixmapfile": "images/light.svg",
0053           "x": "0.8",
0054           "y": "0.65",
0055           "height": 0.25,
0056           "width": 0.25
0057       },
0058       {
0059                   "text": qsTr("mail box"),
0060                   "x": "0.2",
0061                   "y": "0.4",
0062                   "width": "0.25",
0063           "height": 0.1,
0064                   "type": "DisplayText"
0065       },
0066       {
0067                   "text": qsTr("sailing boat"),
0068                   "x": "0.5",
0069                   "y": "0.4",
0070                   "width": "0.25",
0071           "height": 0.1,
0072                   "type": "DisplayText"
0073       },
0074       {
0075                   "text": qsTr("lamp"),
0076                   "x": "0.8",
0077                   "y": "0.4",
0078                   "width": "0.25",
0079           "height": 0.1,
0080                   "type": "DisplayText"
0081       },
0082       {
0083                   "text": qsTr("postcard"),
0084                   "x": "0.2",
0085                   "y": "0.85",
0086                   "width": "0.25",
0087           "height": 0.1,
0088                   "type": "DisplayText"
0089       },
0090       {
0091                   "text": qsTr("fishing boat"),
0092                   "x": "0.5",
0093                   "y": "0.85",
0094                   "width": "0.25",
0095           "height": 0.1,
0096                   "type": "DisplayText"
0097       },
0098       {
0099                   "text": qsTr("bulb"),
0100                   "x": "0.8",
0101                   "y": "0.85",
0102                   "width": "0.25",
0103           "height": 0.1,
0104                   "type": "DisplayText"
0105       }
0106    ]
0107 }