X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=qml%2FAboutPage.qml;h=ec12b50fa883509ede18d2432f30ca35e53bfd65;hb=3dcbc68367b2cfa4d0e87322e164fff9b52f7f2f;hp=44f4f70751b901fd7a3365f87ebf93a823ba43ff;hpb=3c9697a3ed5a6f9476adaa834da9e79502cb68f9;p=chessclock diff --git a/qml/AboutPage.qml b/qml/AboutPage.qml index 44f4f70..ec12b50 100644 --- a/qml/AboutPage.qml +++ b/qml/AboutPage.qml @@ -1,6 +1,67 @@ +/************************************************************************** + + Chess Clock + + This file is part of Chess Clock software. + + (This file) Copyright (c) Heli Hyvättinen 2011 + + Chess Clock 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. + + Chess Clock 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. + + +**************************************************************************/ + +import QtQuick 1.1 +import com.nokia.meego 1.0 import QtQuick 1.0 +import com.nokia.extras 1.0 + +Page +{ + id: aboutPage +// tools: commonTools + orientationLock: PageOrientation.LockLandscape + + tools: ToolBarLayout { + ToolIcon { iconId: "toolbar-back"; onClicked: pageStack.pop() } + } + + Image { + id: logo + source: ":/rc/pic/logo.png" + } + +Text +{ + id: title + text: "Chess Clock 1.9.1" + color: "white" + font.pointSize: 42 + + anchors.left: logo.right + anchors.leftMargin: 50 +} + +Text +{ + + text: "© Heli Hyvättinen 2011
© Arto Hyvättinen 2010

Chess Clock is free software under the terms
of GNU General Public License 3

Bugtracker, instructions and source code at
http://chessclock.garage.maemo.org" + + color: "white" + font.pointSize: 22 + + + anchors.top: title.bottom + anchors.topMargin: 50 + anchors.left: logo.right +} -Rectangle { - width: 100 - height: 62 }