Visual changes due to the changed font metrics in PR 1.2
[chessclock] / main.cpp
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 #include <QtGui/QApplication>
23 #include <QtDeclarative>
24 #include "classes/wrappedclockswidget.h"
25 #include "classes/settings.h"
26 #include <MDeclarativeCache>
27
28
29
30 Q_DECL_EXPORT int main(int argc, char *argv[])
31 {
32     QApplication * pApp = MDeclarativeCache::qApplication(argc, argv);
33
34     pApp->setApplicationName("Chess Clock");
35     pApp->setOrganizationName("Chess Clock");
36
37     pApp->setStyleSheet("* {color: white}");
38
39     qmlRegisterType<WrappedClocksWidget>("ChessClocks", 1, 2, "WrappedClocksWidget");
40     qmlRegisterType<Settings>("ChessClocks", 1, 2, "Settings");
41
42     QDeclarativeView * pView = MDeclarativeCache::qDeclarativeView();
43     pView->setSource(QUrl("qrc:/qml/main.qml"));
44
45     pView->showFullScreen();
46     return pApp->exec();
47 }