Fix compilation on Fremantle
[quandoparte] / application / main.cpp
1 /*
2
3 Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING.  If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19
20 */
21
22 #include "app.h"
23 #ifndef TARGET_PLATFORM_FREMANTLE
24 #include "view.h"
25 #endif
26
27 #include <QApplication>
28 #include <QDir>
29 #include <QDebug>
30 #include <QLocale>
31 #include <QTranslator>
32
33 #ifndef QP_VERSION
34 #define QP_VERSION "0.0.2"
35 #endif
36
37 int main(int argc, char *argv[])
38 {
39     QApplication a(argc, argv);
40     a.setApplicationName("QuandoParte");
41     a.setOrganizationDomain("cirulla.net");
42     a.setApplicationVersion(QP_VERSION);
43
44     QDir::setSearchPaths("css", QStringList(DATADIR "/css"));
45     QDir::setSearchPaths("stations", QStringList(DATADIR "/stations"));
46     QDir::setSearchPaths("i18n", QStringList(DATADIR "/i18n"));
47     QDir::setSearchPaths("qml", QStringList(DATADIR "/qml"));
48
49 #ifdef QT_KEYPAD_NAVIGATION
50     QApplication::setNavigationMode(Qt::NavigationModeKeypadTabOrder);
51 #endif
52
53     QString locale = QLocale::system().name();
54     QTranslator translator;
55     if (translator.load(QString("i18n:quandoparte_") + locale)) {
56         qDebug() << "Translation for locale" << locale << "loaded";
57         a.installTranslator(&translator);
58     } else {
59         qDebug() << "Translation for locale" << locale << "not found";
60     }
61 #ifdef TARGET_PLATFORM_FREMANTLE
62     App theApp;
63 #else
64     View theView;
65     theView.show();
66 #endif
67
68     return a.exec();
69 }