Warning, /education/gcompris/src/activities/chronos/resource/board/board5_4.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/stephenson_rocket.svg",
0019 "x": 0.75,
0020 "y": 0.2,
0021 "width": 0.4,
0022 "height": 0.3
0023 },
0024 {
0025 "pixmapfile": "images/ader_eole.svg",
0026 "x": 0.5,
0027 "y": 0.65,
0028 "width": 0.4,
0029 "height": 0.3
0030 },
0031 {
0032 "pixmapfile": "images/cugnot_fardier.svg",
0033 "x": 0.25,
0034 "y": 0.2,
0035 "width": 0.4,
0036 "height": 0.3
0037 },
0038 {
0039 "text": qsTr("1829 Stephenson's Rocket Steam locomotive"),
0040 "x": 0.75,
0041 "y": 0.4,
0042 "width": 0.4,
0043 "height": 0.075,
0044 "type": "DisplayText"
0045 },
0046 {
0047 "text": qsTr("1890 Clement Ader's Eole"),
0048 "x": 0.5,
0049 "y": 0.85,
0050 "width": 0.4,
0051 "height": 0.075,
0052 "type": "DisplayText"
0053 },
0054 {
0055 "text": qsTr("1769 Cugnot's fardier"),
0056 "x": 0.25,
0057 "y": 0.4,
0058 "width": 0.4,
0059 "height": 0.075,
0060 "type": "DisplayText"
0061 }
0062 ]
0063 }