Warning, /education/gcompris/src/activities/chronos/resource/board/board5_3.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("Transportation")
0016    property var levels: [
0017       {
0018           "pixmapfile": "images/montgolfiere.svg",
0019           "x": 0.25,
0020           "y": 0.2,
0021           "width": 0.4,
0022           "height": 0.3
0023       },
0024       {
0025           "pixmapfile": "images/stephenson_rocket.svg",
0026           "x": 0.75,
0027           "y": 0.2,
0028           "width": 0.4,
0029           "height": 0.3
0030       },
0031       {
0032                   "text": qsTr("1783 Montgolfier brothers' hot air balloon"),
0033                   "x": 0.25,
0034                   "y": 0.4,
0035                   "width": 0.4,
0036           "height": 0.075,
0037                   "type": "DisplayText"
0038       },
0039       {
0040                   "text": qsTr("1829 Stephenson's Rocket Steam locomotive"),
0041                   "x": 0.75,
0042                   "y": 0.4,
0043                   "width": 0.4,
0044           "height": 0.075,
0045                   "type": "DisplayText"
0046       }
0047    ]
0048 }