Introduce a base class for capabilities.
[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 #include "capability.h"
52 #if defined(QT4)
53 #include <QDeclarativeEngine>
54 #elif defined(QT5)
55 #include <QQmlEngine>
56 #endif
57
58 #define MAJOR 1
59 #define MINOR 0
60
61 Plugin::Plugin(QObject *parent) :
62 #if defined(QT4)
63   QDeclarativeExtensionPlugin(parent) {
64 #elif defined(QT5)
65   QQmlExtensionPlugin(parent) {
66 #endif
67
68 }
69
70 Plugin::~Plugin() {
71
72 }
73
74 #if defined(QT4)
75 void Plugin::initializeEngine(QDeclarativeEngine *engine, const char *uri) {
76 #elif defined(QT5)
77 void Plugin::initializeEngine(QQmlEngine *engine, const char *uri) {
78 #endif
79   Q_UNUSED(uri);
80
81   engine->addImageProvider("preview", new PreviewProvider);
82 }
83
84 void Plugin::registerTypes(const char *uri) {
85   Q_ASSERT(QLatin1String(uri) == QLatin1String("QtCamera"));
86
87   qmlRegisterType<Camera>(uri, MAJOR, MINOR, "Camera");
88   qmlRegisterType<ImageMode>(uri, MAJOR, MINOR, "ImageMode");
89   qmlRegisterType<VideoMode>(uri, MAJOR, MINOR, "VideoMode");
90
91   qmlRegisterUncreatableType<Zoom>(uri, MAJOR, MINOR, "Zoom", QObject::tr("Cannot create separate instance of Zoom"));
92   qmlRegisterUncreatableType<Flash>(uri, MAJOR, MINOR, "Flash", QObject::tr("Cannot create separate instance of Flash"));
93   qmlRegisterUncreatableType<Scene>(uri, MAJOR, MINOR, "Scene", QObject::tr("Cannot create separate instance of Scene"));
94   qmlRegisterUncreatableType<EvComp>(uri, MAJOR, MINOR, "EvComp", QObject::tr("Cannot create separate instance of EvComp"));
95   qmlRegisterUncreatableType<WhiteBalance>(uri, MAJOR, MINOR, "WhiteBalance", QObject::tr("Cannot create separate instance of WhiteBalance"));
96   qmlRegisterUncreatableType<ColorTone>(uri, MAJOR, MINOR, "ColorTone", QObject::tr("Cannot create separate instance of ColorTone"));
97   qmlRegisterUncreatableType<Exposure>(uri, MAJOR, MINOR, "Exposure", QObject::tr("Cannot create separate instance of Exposure"));
98   qmlRegisterUncreatableType<Aperture>(uri, MAJOR, MINOR, "Aperture", QObject::tr("Cannot create separate instance of Aperture"));
99   qmlRegisterUncreatableType<Iso>(uri, MAJOR, MINOR, "Iso", QObject::tr("Cannot create separate instance of Iso"));
100   qmlRegisterUncreatableType<NoiseReduction>(uri, MAJOR, MINOR, "NoiseReduction", QObject::tr("Cannot create separate instance of NoiseReduction"));
101   qmlRegisterUncreatableType<FlickerReduction>(uri, MAJOR, MINOR, "FlickerReduction", QObject::tr("Cannot create separate instance of FlickerReduction"));
102   qmlRegisterUncreatableType<Focus>(uri, MAJOR, MINOR, "Focus", QObject::tr("Cannot create separate instance of Focus"));
103   qmlRegisterUncreatableType<AutoFocus>(uri, MAJOR, MINOR, "AutoFocus", QObject::tr("Cannot create separate instance of AutoFocus"));
104   qmlRegisterUncreatableType<Roi>(uri, MAJOR, MINOR, "Roi", QObject::tr("Cannot create separate instance of Roi"));
105
106   qmlRegisterUncreatableType<VideoMute>(uri, MAJOR, MINOR, "VideoMute", QObject::tr("Cannot create separate instance of VideoMute"));
107   qmlRegisterUncreatableType<VideoTorch>(uri, MAJOR, MINOR, "VideoTorch", QObject::tr("Cannot create separate instance of VideoTorch"));
108
109   qmlRegisterType<MetaData>(uri, MAJOR, MINOR, "MetaData");
110   qmlRegisterType<ImageSettings>(uri, MAJOR, MINOR, "ImageSettings");
111   qmlRegisterType<VideoSettings>(uri, MAJOR, MINOR, "VideoSettings");
112   qmlRegisterType<Sounds>(uri, MAJOR, MINOR, "Sounds");
113
114   qmlRegisterUncreatableType<ImageResolutionModel>(uri, MAJOR, MINOR, "ImageResolutionModel",
115                           "ImageResolutionModel can be obtained from ImageSettings");
116   qmlRegisterUncreatableType<VideoResolutionModel>(uri, MAJOR, MINOR, "VideoResolutionModel",
117                           "VideoResolutionModel can be obtained from VideoSettings");
118
119   qmlRegisterType<Mode>();
120   qmlRegisterType<CameraConfig>(uri, MAJOR, MINOR, "CameraConfig");
121
122   qmlRegisterType<VideoPlayer>("QtCameraExtras", MAJOR, MINOR, "VideoPlayer");
123   qmlRegisterType<Viewfinder>(uri, MAJOR, MINOR, "Viewfinder");
124   qmlRegisterType<Capability>();
125 }
126
127 #if defined(QT4)
128 Q_EXPORT_PLUGIN2(declarativeqtcamera, Plugin);
129 #endif