Updated qmake file, bumped version
[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 #ifdef TARGET_PLATFORM_FREMANTLE
23 #include "app.h"
24 #else
25 #include "view.h"
26 #endif
27
28 #include <QtGlobal>
29 #if (QT_VERSION >= QT_VERSION_CHECK(5, 1, 0))
30 #include <QtWidgets/QApplication>
31 #else
32 #include <QtGui/QApplication>
33 #endif
34 #include <QDir>
35 #include <QDebug>
36 #include <QLocale>
37 #include <QTranslator>
38
39 #ifdef TARGET_PLATFORM_HARMATTAN
40 #include <MDeclarativeCache>
41 #endif
42
43 #ifndef QP_VERSION
44 #define QP_VERSION "0.0.2"
45 #endif
46
47 Q_DECL_EXPORT int main(int argc, char *argv[])
48 {
49 #if (QT_VERSION >= QT_VERSION_CHECK(5, 1, 0))
50     QScopedPointer< QApplication > a(new QApplication(argc, argv));
51 #elif TARGET_PLATFORM_HARMATTAN
52     QScopedPointer< QApplication > a(MDeclarativeCache::qApplication(argc, argv));
53 #else
54     QScopedPointer< QApplication > a(new QApplication(argc, argv));
55 #endif
56     a->setApplicationName("QuandoParte");
57     a->setOrganizationDomain("cirulla.net");
58     a->setApplicationVersion(QP_VERSION);
59
60     QDir::setSearchPaths("css", QStringList(DATADIR "/css"));
61     QDir::setSearchPaths("stations", QStringList(DATADIR "/stations"));
62     QDir::setSearchPaths("i18n", QStringList(DATADIR "/i18n"));
63 #ifdef USE_RESOURCES
64     QDir::setSearchPaths("qml", QStringList(DATADIR ""));
65 #else
66     QDir::setSearchPaths("qml", QStringList(DATADIR "/qml"));
67 #endif
68
69 #ifdef QT_KEYPAD_NAVIGATION
70     QApplication::setNavigationMode(Qt::NavigationModeKeypadTabOrder);
71 #endif
72
73     QString locale = QLocale::system().name();
74     QTranslator translator;
75     if (translator.load(QString("i18n:quandoparte_") + locale)) {
76         qDebug() << "Translation for locale" << locale << "loaded";
77         a->installTranslator(&translator);
78     } else {
79         qDebug() << "Translation for locale" << locale << "not found";
80     }
81 #if (QT_VERSION >= QT_VERSION_CHECK(5, 1, 0))
82     QQuickWindow::setDefaultAlphaBuffer(true);
83 #endif
84 #ifdef TARGET_PLATFORM_FREMANTLE
85     App theApp;
86 #else
87     View theView;
88     theView.show();
89 #endif
90
91     return a->exec();
92 }