Warning, /education/gcompris/src/activities/babyshapes/resource/board/board3_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 * 0009 * SPDX-License-Identifier: GPL-3.0-or-later 0010 */ 0011 import QtQuick 2.12 0012 0013 QtObject { 0014 property var levels: [ 0015 { 0016 "pixmapfile" : "food/pear.svg", 0017 "x" : "0.2", 0018 "y" : "0.75" 0019 }, 0020 { 0021 "pixmapfile" : "food/yogurt.svg", 0022 "x" : "0.5", 0023 "y" : "0.75" 0024 }, 0025 { 0026 "pixmapfile" : "food/milk_shake.svg", 0027 "x" : "0.8", 0028 "y" : "0.25" 0029 }, 0030 { 0031 "pixmapfile" : "food/grapefruit.svg", 0032 "x" : "0.2", 0033 "y" : "0.25" 0034 }, 0035 { 0036 "pixmapfile" : "food/chocolate_cake.svg", 0037 "x" : "0.5", 0038 "y" : "0.25" 0039 }, 0040 { 0041 "pixmapfile" : "food/milk_cup.svg", 0042 "x" : "0.8", 0043 "y" : "0.75" 0044 }, 0045 { 0046 "pixmapfile" : "shapeBackground/T_grapefruit.svg", 0047 "x" : "0.2", 0048 "y" : "0.25", 0049 "type" : "SHAPE_BACKGROUND" 0050 }, 0051 { 0052 "pixmapfile" : "shapeBackground/T_chocolate_cake.svg", 0053 "x" : "0.5", 0054 "y" : "0.25", 0055 "type" : "SHAPE_BACKGROUND" 0056 }, 0057 { 0058 "pixmapfile" : "shapeBackground/T_milk_shake.svg", 0059 "x" : "0.8", 0060 "y" : "0.25", 0061 "type" : "SHAPE_BACKGROUND" 0062 }, 0063 { 0064 "pixmapfile" : "shapeBackground/T_pear.svg", 0065 "x" : "0.2", 0066 "y" : "0.75", 0067 "type" : "SHAPE_BACKGROUND" 0068 }, 0069 { 0070 "pixmapfile" : "shapeBackground/T_yogurt.svg", 0071 "x" : "0.5", 0072 "y" : "0.75", 0073 "type" : "SHAPE_BACKGROUND" 0074 }, 0075 { 0076 "pixmapfile" : "shapeBackground/T_milk_cup.svg", 0077 "x" : "0.8", 0078 "y" : "0.75", 0079 "type" : "SHAPE_BACKGROUND" 0080 } 0081 ] 0082 }