64f6a389c7d4ce39a3f31c8ae45b0f670a65bc39
[harmattan/cameraplus] / src / main.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012 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 #include <QuillFile>
28
29 #include "imports/plugin.h"
30
31 #include "settings.h"
32 #include "filenaming.h"
33 #include "quillitem.h"
34 #include "displaystate.h"
35 #include "fsmonitor.h"
36 #include "cameraresources.h"
37 #include "compass.h"
38 #include "orientation.h"
39 #include "geocode.h"
40 #include "mountprotector.h"
41 #include "trackerstore.h"
42 #include "focusrectangle.h"
43 #include "sharehelper.h"
44 #include "deletehelper.h"
45 #include "galleryhelper.h"
46 #include "postcapturemodel.h"
47 #include "batteryinfo.h"
48 #include "gridlines.h"
49 #include "deviceinfo.h"
50 #include "devicekeys.h"
51
52 #ifdef QMLJSDEBUGGER
53 #include "qt_private/qdeclarativedebughelper_p.h"
54 #endif /* QMLJSDEBUGGER */
55
56 static void initQuill() {
57   // TODO: All these are hardcoded.
58   Quill::setPreviewLevelCount(1);
59   Quill::setPreviewSize(0, QSize(854, 480));
60   Quill::setMinimumPreviewSize(0, QSize(854, 480));
61   Quill::setThumbnailExtension("jpeg");
62   Quill::setThumbnailFlavorName(0, "screen");
63   Quill::setBackgroundRenderingColor(Qt::black);
64   QString tempPath(QDir::homePath() +  QDir::separator() + ".config" +
65                    QDir::separator() + "quill" + QDir::separator() + "tmp");
66   QDir().mkpath(tempPath);
67   Quill::setTemporaryFilePath(tempPath);
68   Quill::setDBusThumbnailingEnabled(true);
69   Quill::setThumbnailCreationEnabled(true);
70 }
71
72 Q_DECL_EXPORT int main(int argc, char *argv[]) {
73   QApplication::setAttribute(Qt::AA_X11InitThreads, true);
74   QApplication app(argc, argv);
75
76 #ifdef QMLJSDEBUGGER
77   QDeclarativeDebugHelper::enableDebugging();
78 #endif /* QMLJSDEBUGGER */
79
80   // Let's initialize Quill:
81   initQuill();
82
83   QDeclarativeView view;
84   view.setViewport(new QGLWidget);
85   view.setResizeMode(QDeclarativeView::SizeRootObjectToView);
86   view.setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
87
88   Plugin::registerTypes(view.engine());
89   qmlRegisterType<Settings>("CameraPlus", 1, 0, "Settings");
90   qmlRegisterType<FileNaming>("CameraPlus", 1, 0, "FileNaming");
91   qmlRegisterType<QuillItem>("CameraPlus", 1, 0, "QuillItem");
92   qmlRegisterType<DisplayState>("CameraPlus", 1, 0, "DisplayState");
93   qmlRegisterType<FSMonitor>("CameraPlus", 1, 0, "FSMonitor");
94   qmlRegisterType<CameraResources>("CameraPlus", 1, 0, "CameraResources");
95   qmlRegisterType<Compass>("CameraPlus", 1, 0, "Compass");
96   qmlRegisterType<Orientation>("CameraPlus", 1, 0, "Orientation");
97   qmlRegisterType<Geocode>("CameraPlus", 1, 0, "ReverseGeocode");
98   qmlRegisterType<MountProtector>("CameraPlus", 1, 0, "MountProtector");
99   qmlRegisterType<TrackerStore>("CameraPlus", 1, 0, "TrackerStore");
100   qmlRegisterType<FocusRectangle>("CameraPlus", 1, 0, "FocusRectangle");
101   qmlRegisterType<ShareHelper>("CameraPlus", 1, 0, "ShareHelper");
102   qmlRegisterType<DeleteHelper>("CameraPlus", 1, 0, "DeleteHelper");
103   qmlRegisterType<GalleryHelper>("CameraPlus", 1, 0, "GalleryHelper");
104   qmlRegisterType<PostCaptureModel>("CameraPlus", 1, 0, "PostCaptureModel");
105   qmlRegisterType<BatteryInfo>("CameraPlus", 1, 0, "BatteryInfo");
106   qmlRegisterType<GridLines>("CameraPlus", 1, 0, "GridLines");
107   qmlRegisterType<DeviceInfo>("CameraPlus", 1, 0, "DeviceInfo");
108   qmlRegisterType<DeviceKeys>("CameraPlus", 1, 0, "DeviceKeys");
109
110   view.setSource(QUrl("qrc:/qml/main.qml"));
111
112   view.showFullScreen();
113
114   int ret = app.exec();
115   return ret;
116 }