Added (currently disabled) resources file
[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 #ifdef USE_RESOURCES
48     QDir::setSearchPaths("qml", QStringList(DATADIR ""));
49 #else
50     QDir::setSearchPaths("qml", QStringList(DATADIR "/qml"));
51 #endif
52
53 #ifdef QT_KEYPAD_NAVIGATION
54     QApplication::setNavigationMode(Qt::NavigationModeKeypadTabOrder);
55 #endif
56
57     QString locale = QLocale::system().name();
58     QTranslator translator;
59     if (translator.load(QString("i18n:quandoparte_") + locale)) {
60         qDebug() << "Translation for locale" << locale << "loaded";
61         a.installTranslator(&translator);
62     } else {
63         qDebug() << "Translation for locale" << locale << "not found";
64     }
65 #ifdef TARGET_PLATFORM_FREMANTLE
66     App theApp;
67 #else
68     View theView;
69     theView.show();
70 #endif
71
72     return a.exec();
73 }