Back to previous page buttons now look as they should
[chessclock] / qml / AboutPage.qml
1 /**************************************************************************
2
3    Chess Clock
4
5    This file is part of Chess Clock software.
6
7    (This file) Copyright (c) Heli Hyvättinen 2011
8
9    Chess Clock is free software: you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation, either version 3 of the License, or
12    (at your option) any later version.
13
14    Chess Clock is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19
20 **************************************************************************/
21
22 import QtQuick 1.1
23 import com.meego 1.0
24 import QtQuick 1.0
25 import com.nokia.extras 1.0
26
27 Page
28 {
29     id: aboutPage
30 //    tools: commonTools
31     orientationLock: PageOrientation.LockLandscape
32
33     tools: ToolBarLayout {
34         ToolIcon { iconId: "toolbar-back"; onClicked: pageStack.pop() }
35     }
36
37     Image {
38         id: logo
39         source: ":/rc/pic/logo.png"
40     }
41
42 Text
43 {
44     id: title
45     text: "Chess Clock"
46     color: "white"
47     font.pointSize: 42
48
49     anchors.left: logo.right
50     anchors.leftMargin: 50
51 }
52
53 Text
54 {
55
56     text: "© Arto Hyvättinen 2010 & Heli Hyvättinen 2011<p>Chess Clock is free software under the terms <br>of GNU General Public License 3 <p> Bugtracker and instructions at <br>http://chessclock.garage.maemo.org"
57
58     color: "white"
59     font.pointSize: 22
60
61
62     anchors.top: title.bottom
63     anchors.topMargin: 50
64     anchors.left: logo.right
65 }
66
67 }