- changed checkbox name to "Sound Notifications"
[buliscores] / src / src / main.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qmaemo5homescreenadaptor.h"
43 #include "backendkicker.h"
44
45 #include <QtGui>
46 #include <QFile>
47 #include <QTextStream>
48 #include <src/mainwidget.h>
49
50
51
52 void messageHandler(QtMsgType type, const char *msg)
53 {
54     static QFile logfile;
55     static QTextStream fw;
56     static const QString LOGFILE_PATH = "/tmp/buliscores.log";
57     static const QtMsgType LOGLEVEL = QtDebugMsg;
58     QString out;
59
60     if (type < LOGLEVEL) {
61         return;
62     }
63
64     if (logfile.isOpen() == false) {
65         logfile.setFileName(LOGFILE_PATH);
66         if (logfile.open(QIODevice::Append) == true) {
67             fw.setDevice((QIODevice*)&logfile);
68             fw << "Logfile Opened: " << QDateTime::currentDateTime().toString();
69         }
70     }
71
72     switch (type) {
73     case QtDebugMsg:
74         out = "%1   Debug: %2\n";
75         break;
76     case QtWarningMsg:
77         out = "%1   Warning: %2\n";
78         break;
79     case QtCriticalMsg:
80         out = "%1   Critical: %2\n";
81         break;
82     case QtFatalMsg:
83         out = "%1   Fatal: %2\n";
84         break;
85     }
86
87     out = out.arg(QDateTime::currentDateTime().toString(), msg);
88
89     if (logfile.isOpen()) {
90         fw << out;
91         fw.flush();
92     }
93     printf("%s", out.toAscii().constData());
94
95     if (type == QtFatalMsg) {
96         abort();
97     }
98 }
99
100 int main(int argc, char *argv[])
101 {
102     // enforce native graphics system for now due to a bug in transparency handling
103     // you can remove this line if you only target PR 1.2
104     qInstallMsgHandler(messageHandler);
105     QApplication::setGraphicsSystem("native");
106     QApplication app(argc, argv);
107     MainWidget mw;
108
109     app.setApplicationName("Buli Scores");
110     app.setApplicationVersion("0.1");
111     app.setOrganizationName("David Solbach");
112
113
114     mw.resize(400,250);
115
116     QMaemo5HomescreenAdaptor *adaptor = new QMaemo5HomescreenAdaptor(&mw);
117     adaptor->setSettingsAvailable(true);
118     QObject::connect(adaptor, SIGNAL(settingsRequested()), &mw, SLOT(showSettingsDialog()));
119
120     mw.show();
121     app.exec();
122 }
123