Added info on source code being available from web pages to about
[chessclock] / qml / AboutPage.qml
index 44f4f70..ec12b50 100644 (file)
@@ -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<br>© Arto Hyvättinen 2010 <p>Chess Clock is free software under the terms <br>of GNU General Public License 3 <p> Bugtracker, instructions and source code at <br>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
 }