Warning, /education/gcompris/src/activities/calcudoku/resource/5/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2023 Johnny Jazeix <jazeix@gmail.com>
0004  *
0005  * Authors:
0006  *   Johnny Jazeix <jazeix@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     //: \u002B is the unicode character for addition mathematical operator (+), \u2212 for subtraction (-), \u00D7 for multiplication (*), \u2215 for division (:)
0014     objective: qsTr("Large grids with \u002B, \u2212, \u00D7 and \u2215 operators.")
0015     difficulty: 6
0016 
0017     property var symbols: [
0018         {"imgName": "1.svg", "text": '1'},
0019         {"imgName": "2.svg", "text": '2'},
0020         {"imgName": "3.svg", "text": '3'},
0021         {"imgName": "4.svg", "text": '4'},
0022         {"imgName": "5.svg", "text": '5'}
0023     ]
0024 
0025     data: [
0026         {
0027             "random": true,
0028             "length": 20,
0029             "symbols": symbols,
0030             "size": 5,
0031             "operators": ["+", "-", "*", ":"]
0032         }
0033     ]
0034 }