First attempt at removing QtQuick 1.1 hardcoding from qml files.
[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 #include <QApplication>
22 #include <QDeclarativeView>
23 #include <QDeclarativeContext>
24 #include <QDeclarativeEngine>
25 #include <QtDeclarative>
26 #include <QGLWidget>
27
28 #include "settings.h"
29 #include "filenaming.h"
30 #include "quillitem.h"
31 #include "displaystate.h"
32 #include "fsmonitor.h"
33 #include "cameraresources.h"
34 #include "compass.h"
35 #include "orientation.h"
36 #include "geocode.h"
37 #include "mountprotector.h"
38 #include "trackerstore.h"
39 #include "focusrectangle.h"
40 #include "sharehelper.h"
41 #include "deletehelper.h"
42 #include "galleryhelper.h"
43 #include "postcapturemodel.h"
44 #include "batteryinfo.h"
45 #include "gridlines.h"
46 #include "deviceinfo.h"
47 #include "devicekeys.h"
48 #include "platformsettings.h"
49 #include "dbusservice.h"
50
51 #ifdef QMLJSDEBUGGER
52 #include "qt_private/qdeclarativedebughelper_p.h"
53 #endif /* QMLJSDEBUGGER */
54
55 #include <QAbstractFileEngineHandler>
56 #include "qmlfileengine.h"
57
58 class QmlFileEngineHandler : public QAbstractFileEngineHandler {
59   QAbstractFileEngine *create(const QString& fileName) const {
60     QString fn = fileName.toLower();
61     if (fn.startsWith(':') && fn.endsWith(".qml")) {
62       return new QmlFileEngine(fileName);
63     }
64
65     return 0;
66   }
67 };
68
69 Q_DECL_EXPORT int main(int argc, char *argv[]) {
70   QApplication::setAttribute(Qt::AA_X11InitThreads, true);
71   QApplication app(argc, argv);
72
73   QmlFileEngineHandler handler;
74   Q_UNUSED(handler);
75
76 #ifdef QMLJSDEBUGGER
77   QDeclarativeDebugHelper::enableDebugging();
78 #endif /* QMLJSDEBUGGER */
79
80   QDeclarativeView view;
81   view.setAttribute(Qt::WA_NoSystemBackground);
82   view.setViewport(new QGLWidget);
83   view.setResizeMode(QDeclarativeView::SizeRootObjectToView);
84   view.setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
85   view.viewport()->setAttribute(Qt::WA_NoSystemBackground);
86
87   qmlRegisterType<Settings>("CameraPlus", 1, 0, "Settings");
88   qmlRegisterType<FileNaming>("CameraPlus", 1, 0, "FileNaming");
89   qmlRegisterType<QuillItem>("CameraPlus", 1, 0, "QuillItem");
90   qmlRegisterType<DisplayState>("CameraPlus", 1, 0, "DisplayState");
91   qmlRegisterType<FSMonitor>("CameraPlus", 1, 0, "FSMonitor");
92   qmlRegisterType<CameraResources>("CameraPlus", 1, 0, "CameraResources");
93   qmlRegisterType<Compass>("CameraPlus", 1, 0, "Compass");
94   qmlRegisterType<Orientation>("CameraPlus", 1, 0, "Orientation");
95   qmlRegisterType<Geocode>("CameraPlus", 1, 0, "ReverseGeocode");
96   qmlRegisterType<MountProtector>("CameraPlus", 1, 0, "MountProtector");
97   qmlRegisterType<TrackerStore>("CameraPlus", 1, 0, "TrackerStore");
98   qmlRegisterType<FocusRectangle>("CameraPlus", 1, 0, "FocusRectangle");
99   qmlRegisterType<ShareHelper>("CameraPlus", 1, 0, "ShareHelper");
100   qmlRegisterType<DeleteHelper>("CameraPlus", 1, 0, "DeleteHelper");
101   qmlRegisterType<GalleryHelper>("CameraPlus", 1, 0, "GalleryHelper");
102   qmlRegisterType<PostCaptureModel>("CameraPlus", 1, 0, "PostCaptureModel");
103   qmlRegisterType<BatteryInfo>("CameraPlus", 1, 0, "BatteryInfo");
104   qmlRegisterType<GridLines>("CameraPlus", 1, 0, "GridLines");
105   qmlRegisterType<DeviceInfo>("CameraPlus", 1, 0, "DeviceInfo");
106   qmlRegisterType<DeviceKeys>("CameraPlus", 1, 0, "DeviceKeys");
107   qmlRegisterType<PlatformSettings>("CameraPlus", 1, 0, "PlatformSettings");
108
109   view.setSource(QUrl("qrc:/qml/main.qml"));
110
111   view.showFullScreen();
112
113   int ret = app.exec();
114   return ret;
115 }