/**************************************************************************** ** ** Copyright (C) 2011 Nokia Institute of Technology. ** All rights reserved. ** Contact: Manager (renato.chencarek@openbossa.org) ** ** This file is part of the Incredible Circus project. ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ****************************************************************************/ import QtQuick 1.1 import Circus 1.0 import "widgets" Item { id: root signal backClicked(); Image { anchors.fill: parent fillMode: Image.Tile source: "image://cache/common/bg.png" } Image { anchors.top: parent.top anchors.horizontalCenter: parent.horizontalCenter anchors.topMargin: 41 * scaleFactor sourceSize.width: parent.width - 20 sourceSize.height: 80 * scaleFactor source: "image://title/" + qsTr("INFO") } Frame { anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter title: qsTr("Brought to you by") background: "image://cache/common/frameback.png" Item { id: credits width: 270 height: 831 anchors.horizontalCenter: parent.horizontalCenter Image { id: logo anchors.top: credits.top anchors.topMargin: 24 source: "image://cache/screens/about/indt.png" anchors.horizontalCenter: parent.horizontalCenter } Text { id: versionLabel anchors.top: logo.bottom anchors.topMargin: 48 * scaleFactor text: "The Incredible Circus v" + version color: "#CCCCCC" font { family: "Nokia Sans" pixelSize: 15 * scaleFactor bold: true } anchors.horizontalCenter: parent.horizontalCenter } Text { id: copyright anchors.top: versionLabel.bottom text: "Copyright 2011 by Nokia Institute of Technology\nAll rights reserved circus.indt.org" color: "#766564" font { family: "Nokia Sans" pixelSize: 10 * scaleFactor bold: true } anchors.left: parent.left anchors.right: parent.right horizontalAlignment: Text.AlignHCenter } } } BottomBar { Button { text: qsTr("Back") onClicked: root.backClicked(); } } }