/* GCompris * * Copyright (C) 2015 Pulkit Gupta * * Authors: * Bruno Coudoin (GTK+ version) * Pulkit Gupta (Qt Quick port) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import QtQuick 2.0 QtObject { property string instruction: qsTr("Bazille, The Ramparts at Aigues-Mortes - 1867") property variant levels : [ { "pixmapfile" : "image/bg.svg", "type" : "SHAPE_BACKGROUND_IMAGE", "width": 702, "height": 515 }, { "pixmapfile" : "image/bazille_rampart_4.jpg", "x" : "0.212", "y" : "0.634" }, { "pixmapfile" : "image/bazille_rampart_1.jpg", "x" : "0.212", "y" : "0.283" }, { "pixmapfile" : "image/bazille_rampart_3.jpg", "x" : "0.791", "y" : "0.283" }, { "pixmapfile" : "image/bazille_rampart_5.jpg", "x" : "0.501", "y" : "0.634" }, { "pixmapfile" : "image/bazille_rampart_2.jpg", "x" : "0.501", "y" : "0.283" }, { "pixmapfile" : "image/bazille_rampart_6.jpg", "x" : "0.791", "y" : "0.634" } ] }