Warning, /education/gcompris/src/activities/chronos/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  *   Timothée Giet <animtim@gmail.com> (New images and coordinates)
0009  *
0010  *   SPDX-License-Identifier: GPL-3.0-or-later
0011  */
0012 import QtQuick 2.12
0013 
0014 QtObject {
0015    property string instruction: qsTr("Moonwalker")
0016    property var levels: [
0017       {
0018           "pixmapfile": "images/moon-04.svg",
0019           "x": "0.75",
0020           "y": "0.65",
0021           "width": 0.4,
0022           "height": 0.3
0023       },
0024       {
0025           "pixmapfile": "images/moon-03.svg",
0026           "x": "0.25",
0027           "y": "0.65",
0028           "width": 0.4,
0029           "height": 0.3
0030       },
0031       {
0032           "pixmapfile": "images/moon-02.svg",
0033           "x": "0.75",
0034           "y": "0.2",
0035           "width": 0.4,
0036           "height": 0.3
0037       },
0038       {
0039           "pixmapfile": "images/moon-01.svg",
0040           "x": "0.25",
0041           "y": "0.2",
0042           "width": 0.4,
0043           "height": 0.3
0044       },
0045       {
0046                   "text": qsTr("1"),
0047                   "x": "0.25",
0048                   "y": 0.4,
0049                   "width": "0.1",
0050           "height": 0.075,
0051                   "type": "DisplayText"
0052       },
0053       {
0054                   "text": qsTr("2"),
0055                   "x": "0.75",
0056                   "y": 0.4,
0057                   "width": "0.1",
0058           "height": 0.075,
0059                   "type": "DisplayText"
0060       },
0061       {
0062                   "text": qsTr("3"),
0063                   "x": "0.25",
0064                   "y": 0.85,
0065                   "width": "0.1",
0066           "height": 0.075,
0067                   "type": "DisplayText"
0068       },
0069       {
0070                   "text": qsTr("4"),
0071                   "x": "0.75",
0072                   "y": 0.85,
0073                   "width": "0.1",
0074           "height": 0.075,
0075                   "type": "DisplayText"
0076       }
0077    ]
0078 }