Initial Qt5 port
[harmattan/cameraplus] / declarative / plugin.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 "plugin.h"
22 #include "imagemode.h"
23 #include "videomode.h"
24 #include "camera.h"
25 #include "previewprovider.h"
26 #include "zoom.h"
27 #include "flash.h"
28 #include "scene.h"
29 #include "evcomp.h"
30 #include "videotorch.h"
31 #include "whitebalance.h"
32 #include "colortone.h"
33 #include "exposure.h"
34 #include "aperture.h"
35 #include "iso.h"
36 #include "noisereduction.h"
37 #include "flickerreduction.h"
38 #include "focus.h"
39 #include "autofocus.h"
40 #include "roi.h"
41 #include "videomute.h"
42 #include "metadata.h"
43 #include "imagesettings.h"
44 #include "imageresolutionmodel.h"
45 #include "videosettings.h"
46 #include "videoresolutionmodel.h"
47 #include "sounds.h"
48 #include "cameraconfig.h"
49 #include "videoplayer.h"
50 #include "viewfinder.h"
51 #if defined(QT4)
52 #include <QDeclarativeEngine>
53 #elif defined(QT5)
54 #include <QQmlEngine>
55 #endif
56
57 #define MAJOR 1
58 #define MINOR 0
59
60 Plugin::Plugin(QObject *parent) :
61 #if defined(QT4)
62   QDeclarativeExtensionPlugin(parent) {
63 #elif defined(QT5)
64   QQmlExtensionPlugin(parent) {
65 #endif
66
67 }
68
69 Plugin::~Plugin() {
70
71 }
72
73 #if defined(QT4)
74 void Plugin::initializeEngine(QDeclarativeEngine *engine, const char *uri) {
75 #elif defined(QT5)
76 void Plugin::initializeEngine(QQmlEngine *engine, const char *uri) {
77 #endif
78   Q_UNUSED(uri);
79
80   engine->addImageProvider("preview", new PreviewProvider);
81 }
82
83 void Plugin::registerTypes(const char *uri) {
84   Q_ASSERT(QLatin1String(uri) == QLatin1String("QtCamera"));
85
86   qmlRegisterType<Camera>(uri, MAJOR, MINOR, "Camera");
87   qmlRegisterType<ImageMode>(uri, MAJOR, MINOR, "ImageMode");
88   qmlRegisterType<VideoMode>(uri, MAJOR, MINOR, "VideoMode");
89
90   qmlRegisterUncreatableType<Zoom>(uri, MAJOR, MINOR, "Zoom", QObject::tr("Cannot create separate instance of Zoom"));
91   qmlRegisterUncreatableType<Flash>(uri, MAJOR, MINOR, "Flash", QObject::tr("Cannot create separate instance of Flash"));
92   qmlRegisterUncreatableType<Scene>(uri, MAJOR, MINOR, "Scene", QObject::tr("Cannot create separate instance of Scene"));
93   qmlRegisterUncreatableType<EvComp>(uri, MAJOR, MINOR, "EvComp", QObject::tr("Cannot create separate instance of EvComp"));
94   qmlRegisterUncreatableType<WhiteBalance>(uri, MAJOR, MINOR, "WhiteBalance", QObject::tr("Cannot create separate instance of WhiteBalance"));
95   qmlRegisterUncreatableType<ColorTone>(uri, MAJOR, MINOR, "ColorTone", QObject::tr("Cannot create separate instance of ColorTone"));
96   qmlRegisterUncreatableType<Exposure>(uri, MAJOR, MINOR, "Exposure", QObject::tr("Cannot create separate instance of Exposure"));
97   qmlRegisterUncreatableType<Aperture>(uri, MAJOR, MINOR, "Aperture", QObject::tr("Cannot create separate instance of Iso"));
98   qmlRegisterUncreatableType<Iso>(uri, MAJOR, MINOR, "Iso", QObject::tr("Cannot create separate instance of Iso"));
99   qmlRegisterUncreatableType<NoiseReduction>(uri, MAJOR, MINOR, "NoiseReduction", QObject::tr("Cannot create separate instance of NoiseReduction"));
100   qmlRegisterUncreatableType<FlickerReduction>(uri, MAJOR, MINOR, "FlickerReduction", QObject::tr("Cannot create separate instance of FlickerReduction"));
101   qmlRegisterUncreatableType<Focus>(uri, MAJOR, MINOR, "Focus", QObject::tr("Cannot create separate instance of Focus"));
102   qmlRegisterUncreatableType<AutoFocus>(uri, MAJOR, MINOR, "AutoFocus", QObject::tr("Cannot create separate instance of AutoFocus"));
103   qmlRegisterUncreatableType<Roi>(uri, MAJOR, MINOR, "Roi", QObject::tr("Cannot create separate instance of Roi"));
104
105   qmlRegisterUncreatableType<VideoMute>(uri, MAJOR, MINOR, "VideoMute", QObject::tr("Cannot create separate instance of VideoMute"));
106   qmlRegisterUncreatableType<VideoTorch>(uri, MAJOR, MINOR, "VideoTorch", QObject::tr("Cannot create separate instance of VideoTorch"));
107
108   qmlRegisterType<MetaData>(uri, MAJOR, MINOR, "MetaData");
109   qmlRegisterType<ImageSettings>(uri, MAJOR, MINOR, "ImageSettings");
110   qmlRegisterType<VideoSettings>(uri, MAJOR, MINOR, "VideoSettings");
111   qmlRegisterType<Sounds>(uri, MAJOR, MINOR, "Sounds");
112
113   qmlRegisterUncreatableType<ImageResolutionModel>(uri, MAJOR, MINOR, "ImageResolutionModel",
114                           "ImageResolutionModel can be obtained from ImageSettings");
115   qmlRegisterUncreatableType<VideoResolutionModel>(uri, MAJOR, MINOR, "VideoResolutionModel",
116                           "VideoResolutionModel can be obtained from VideoSettings");
117
118   qmlRegisterType<Mode>();
119   qmlRegisterType<CameraConfig>(uri, MAJOR, MINOR, "CameraConfig");
120
121   qmlRegisterType<VideoPlayer>("QtCameraExtras", MAJOR, MINOR, "VideoPlayer");
122   qmlRegisterType<Viewfinder>(uri, MAJOR, MINOR, "Viewfinder");
123 }
124
125 #if defined(QT4)
126 Q_EXPORT_PLUGIN2(declarativeqtcamera, Plugin);
127 #endif