New game dialog is now a page
[chessclock] / qml / main.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
23 import QtQuick 1.1
24 import com.meego 1.0
25
26 PageStackWindow {
27     id: appWindow
28
29     Component.onCompleted: theme.inverted = true
30
31     initialPage: mainPage
32
33     MainPage{id: mainPage}
34
35     AboutPage{id: aboutPage}
36
37     ClocksPage{id: clocksPage}
38
39     NewGameDialogPage{id: newGameDialogPage}
40
41     ToolBarLayout {
42         id: commonTools
43         visible: true
44         ToolIcon { platformIconId: "toolbar-view-menu";
45              anchors.right: parent===undefined ? undefined : parent.right
46              onClicked: (myMenu.status == DialogStatus.Closed) ? myMenu.open() : myMenu.close()
47         }
48     }
49
50     Menu {
51         id: myMenu
52         visualParent: pageStack
53         MenuLayout {
54             MenuItem
55             {
56                 text: "Visit web page"
57                 onClicked: Qt.openUrlExternally("http://chessclock.garage.maemo.org/")
58             }
59             MenuItem
60             {
61                 text: "About"
62                 onClicked: pageStack.push(aboutPage)
63             }
64         }
65     }
66 }