Warning, /education/gcompris/src/activities/chronos/resource/board/board6_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 int numberOfSubLevel: 3
0016    property string instruction: qsTr("Aviation")
0017    property var levels: [
0018       {
0019           "pixmapfile": "images/ader_eole.svg",
0020           "x": 0.25,
0021           "y": 0.2,
0022           "width": 0.4,
0023           "height": 0.3
0024       },
0025       {
0026           "pixmapfile": "images/wright_flyer_3.svg",
0027           "x": 0.75,
0028           "y": 0.2,
0029           "width": 0.4,
0030           "height": 0.3
0031       },
0032       {
0033           "pixmapfile": "images/bleriot_XI.svg",
0034           "x": 0.5,
0035           "y": 0.65,
0036           "width": 0.4,
0037           "height": 0.3
0038       },
0039       {
0040                   "text": qsTr("1890 Clement Ader's Eole"),
0041                   "x": 0.25,
0042                   "y": 0.4,
0043                   "width": 0.4,
0044           "height": 0.075,
0045                   "type": "DisplayText"
0046       },
0047       {
0048                   "text": qsTr("1905 The Wright brothers' Flyer III"),
0049           "x": 0.75,
0050                   "y": 0.4,
0051                   "width": 0.4,
0052           "height": 0.075,
0053                   "type": "DisplayText"
0054       },
0055       {
0056                   "text": qsTr("1909 Louis Bleriot crosses the English Channel"),
0057                   "x": 0.5,
0058                   "y": 0.85,
0059                   "width": 0.4,
0060           "height": 0.075,
0061                   "type": "DisplayText"
0062       }
0063    ]
0064 }