8846beac133b1ee80b715b1d27fc1bbaaf1d62e2
[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
32     tools: ToolBarLayout {
33         ToolButton { iconSource: "toolbar-back"; onClicked: pageStack.pop() }
34     }
35
36 Text
37 {
38     id: title
39     text: "Chess Clock"
40     color: "white"
41     font.pointSize: 64
42 }
43
44 Text
45 {
46
47     text: "text"
48     color: "white"
49     font.pointSize: 32
50     anchors.top: title.bottom
51     anchors.topMargin: 64
52 }
53
54 }