Qt5: If QQuickView cannot load QML then print them and quit.
[harmattan/cameraplus] / src / main.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #if defined(QT4)
22 #include <QApplication>
23 #include <QDeclarativeView>
24 #include <QDeclarativeContext>
25 #include <QDeclarativeEngine>
26 #include <QtDeclarative>
27 #include <QGLWidget>
28 #elif defined(QT5)
29 #include <QGuiApplication>
30 #include <QQuickView>
31 #include <QQmlError>
32 #endif
33
34 #include "settings.h"
35 #include "filenaming.h"
36 #ifdef HARMATTAN
37 #include "quillitem.h"
38 #endif
39 #include "geocode.h"
40 #include "deviceinfo.h"
41 #include "soundvolumecontrol.h"
42 #include "displaystate.h"
43 #include "fsmonitor.h"
44 #include "cameraresources.h"
45 #include "compass.h"
46 #include "orientation.h"
47 #include "mountprotector.h"
48 #include "trackerstore.h"
49 #include "focusrectangle.h"
50 #include "sharehelper.h"
51 #include "deletehelper.h"
52 #include "galleryhelper.h"
53 #include "postcapturemodel.h"
54 #include "batteryinfo.h"
55 #include "gridlines.h"
56 #include "devicekeys.h"
57 #include "platformsettings.h"
58 #include "dbusservice.h"
59 #include <MDeclarativeCache>
60
61 #ifdef QMLJSDEBUGGER
62 #include "qt_private/qdeclarativedebughelper_p.h"
63 #endif /* QMLJSDEBUGGER */
64
65 #if defined(QT4)
66 #include <QAbstractFileEngineHandler>
67 #include "qmlfileengine.h"
68
69 class QmlFileEngineHandler : public QAbstractFileEngineHandler {
70   QAbstractFileEngine *create(const QString& fileName) const {
71     QString fn = fileName.toLower();
72     if (fn.startsWith(':') && fn.endsWith(".qml")) {
73       return new QmlFileEngine(fileName);
74     }
75
76     return 0;
77   }
78 };
79 #endif
80
81 Q_DECL_EXPORT int main(int argc, char *argv[]) {
82 #if defined(QT4)
83   QApplication::setAttribute(Qt::AA_X11InitThreads, true);
84   QApplication *app = new QApplication(argc, argv);
85
86   QmlFileEngineHandler handler;
87   Q_UNUSED(handler);
88
89   QDeclarativeView *view = MDeclarativeCache::qDeclarativeView();
90 #elif defined(QT5)
91   QGuiApplication *app = MDeclarativeCache::qApplication(argc, argv);
92   QQuickView *view = MDeclarativeCache::qQuickView();
93 #endif
94
95 #ifdef QMLJSDEBUGGER
96   QDeclarativeDebugHelper::enableDebugging();
97 #endif /* QMLJSDEBUGGER */
98
99 #if defined(QT4)
100   view->setAttribute(Qt::WA_NoSystemBackground);
101   view->setViewport(new QGLWidget);
102   view->setResizeMode(QDeclarativeView::SizeRootObjectToView);
103   view->setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
104   view->viewport()->setAttribute(Qt::WA_NoSystemBackground);
105 #endif
106
107 #if defined(QT5)
108   view->setResizeMode(QQuickView::SizeRootObjectToView);
109   // TODO:
110 #endif
111
112   qmlRegisterType<Settings>("CameraPlus", 1, 0, "Settings");
113   qmlRegisterType<FileNaming>("CameraPlus", 1, 0, "FileNaming");
114 #ifdef HARMATTAN
115   qmlRegisterType<QuillItem>("CameraPlus", 1, 0, "QuillItem");
116 #endif
117   qmlRegisterType<Geocode>("CameraPlus", 1, 0, "ReverseGeocode");
118   qmlRegisterType<DeviceInfo>("CameraPlus", 1, 0, "DeviceInfo");
119   qmlRegisterType<SoundVolumeControl>("CameraPlus", 1, 0, "SoundVolumeControl");
120   qmlRegisterType<DisplayState>("CameraPlus", 1, 0, "DisplayState");
121   qmlRegisterType<FSMonitor>("CameraPlus", 1, 0, "FSMonitor");
122   qmlRegisterType<CameraResources>("CameraPlus", 1, 0, "CameraResources");
123   qmlRegisterType<Compass>("CameraPlus", 1, 0, "CameraCompass");
124   qmlRegisterType<Orientation>("CameraPlus", 1, 0, "CameraOrientation");
125   qmlRegisterType<MountProtector>("CameraPlus", 1, 0, "MountProtector");
126   qmlRegisterType<TrackerStore>("CameraPlus", 1, 0, "TrackerStore");
127   qmlRegisterType<FocusRectangle>("CameraPlus", 1, 0, "FocusRectangle");
128   qmlRegisterType<ShareHelper>("CameraPlus", 1, 0, "ShareHelper");
129   qmlRegisterType<DeleteHelper>("CameraPlus", 1, 0, "DeleteHelper");
130   qmlRegisterType<GalleryHelper>("CameraPlus", 1, 0, "GalleryHelper");
131   qmlRegisterType<PostCaptureModel>("CameraPlus", 1, 0, "PostCaptureModel");
132   qmlRegisterType<BatteryInfo>("CameraPlus", 1, 0, "BatteryInfo");
133   qmlRegisterType<GridLines>("CameraPlus", 1, 0, "GridLines");
134   qmlRegisterType<DeviceKeys>("CameraPlus", 1, 0, "DeviceKeys");
135   qmlRegisterType<PlatformSettings>("CameraPlus", 1, 0, "PlatformSettings");
136
137   view->setSource(QUrl("qrc:/qml/main.qml"));
138
139 #if defined(QT5)
140   view->showFullScreen();
141   if (view->status() == QQuickView::Error) {
142     qCritical() << "Errors loading QML:";
143     QList<QQmlError> errors = view->errors();
144
145     foreach (const QQmlError& error, errors) {
146       qCritical() << error.toString();
147     }
148
149     delete view;
150     delete app;
151
152     return 1;
153   }
154
155 #endif
156
157   int ret = app->exec();
158
159   delete view;
160   delete app;
161
162   return ret;
163 }