Try to use booster
[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 <QtGui/QApplication>
28 #include <QDir>
29 #include <QDebug>
30 #include <QLocale>
31 #include <QTranslator>
32
33 #ifdef TARGET_PLATFORM_HARMATTAN
34 #include <MDeclarativeCache>
35 #endif
36
37 #ifndef QP_VERSION
38 #define QP_VERSION "0.0.2"
39 #endif
40
41 Q_DECL_EXPORT int main(int argc, char *argv[])
42 {
43 #ifdef TARGET_PLATFORM_HARMATTAN
44     QScopedPointer< QApplication > a(MDeclarativeCache::qApplication(argc, argv));
45 #else
46     QScopedPointer< QApplication > a(new QApplication(argc, argv));
47 #endif
48     a->setApplicationName("QuandoParte");
49     a->setOrganizationDomain("cirulla.net");
50     a->setApplicationVersion(QP_VERSION);
51
52     QDir::setSearchPaths("css", QStringList(DATADIR "/css"));
53     QDir::setSearchPaths("stations", QStringList(DATADIR "/stations"));
54     QDir::setSearchPaths("i18n", QStringList(DATADIR "/i18n"));
55 #ifdef USE_RESOURCES
56     QDir::setSearchPaths("qml", QStringList(DATADIR ""));
57 #else
58     QDir::setSearchPaths("qml", QStringList(DATADIR "/qml"));
59 #endif
60
61 #ifdef QT_KEYPAD_NAVIGATION
62     QApplication::setNavigationMode(Qt::NavigationModeKeypadTabOrder);
63 #endif
64
65     QString locale = QLocale::system().name();
66     QTranslator translator;
67     if (translator.load(QString("i18n:quandoparte_") + locale)) {
68         qDebug() << "Translation for locale" << locale << "loaded";
69         a->installTranslator(&translator);
70     } else {
71         qDebug() << "Translation for locale" << locale << "not found";
72     }
73 #ifdef TARGET_PLATFORM_FREMANTLE
74     App theApp;
75 #else
76     View theView;
77     theView.show();
78 #endif
79
80     return a->exec();
81 }