1676e6015234dbcf5840f62a0e8f7b29972d92e7
[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 "declarativeqtcameranotifications.h"
48 #include "sounds.h"
49 #include "cameraconfig.h"
50 #include "videoplayer.h"
51 #include <QtDeclarative>
52
53 #define MAJOR 1
54 #define MINOR 0
55
56 Plugin::Plugin(QObject *parent) :
57   QDeclarativeExtensionPlugin(parent) {
58
59 }
60
61 Plugin::~Plugin() {
62
63 }
64
65 void Plugin::initializeEngine(QDeclarativeEngine *engine, const char *uri) {
66   Q_UNUSED(uri);
67
68   engine->addImageProvider("preview", new PreviewProvider);
69 }
70
71 void Plugin::registerTypes(const char *uri) {
72   Q_ASSERT(QLatin1String(uri) == QLatin1String("QtCamera"));
73
74   qmlRegisterType<Camera>(uri, MAJOR, MINOR, "Camera");
75   qmlRegisterType<ImageMode>(uri, MAJOR, MINOR, "ImageMode");
76   qmlRegisterType<VideoMode>(uri, MAJOR, MINOR, "VideoMode");
77
78   qmlRegisterUncreatableType<Zoom>(uri, MAJOR, MINOR, "Zoom", QObject::tr("Cannot create separate instance of Zoom"));
79   qmlRegisterUncreatableType<Flash>(uri, MAJOR, MINOR, "Flash", QObject::tr("Cannot create separate instance of Flash"));
80   qmlRegisterUncreatableType<Scene>(uri, MAJOR, MINOR, "Scene", QObject::tr("Cannot create separate instance of Scene"));
81   qmlRegisterUncreatableType<EvComp>(uri, MAJOR, MINOR, "EvComp", QObject::tr("Cannot create separate instance of EvComp"));
82   qmlRegisterUncreatableType<WhiteBalance>(uri, MAJOR, MINOR, "WhiteBalance", QObject::tr("Cannot create separate instance of WhiteBalance"));
83   qmlRegisterUncreatableType<ColorTone>(uri, MAJOR, MINOR, "ColorTone", QObject::tr("Cannot create separate instance of ColorTone"));
84   qmlRegisterUncreatableType<Exposure>(uri, MAJOR, MINOR, "Exposure", QObject::tr("Cannot create separate instance of Exposure"));
85   qmlRegisterUncreatableType<Aperture>(uri, MAJOR, MINOR, "Aperture", QObject::tr("Cannot create separate instance of Iso"));
86   qmlRegisterUncreatableType<Iso>(uri, MAJOR, MINOR, "Iso", QObject::tr("Cannot create separate instance of Iso"));
87   qmlRegisterUncreatableType<NoiseReduction>(uri, MAJOR, MINOR, "NoiseReduction", QObject::tr("Cannot create separate instance of NoiseReduction"));
88   qmlRegisterUncreatableType<FlickerReduction>(uri, MAJOR, MINOR, "FlickerReduction", QObject::tr("Cannot create separate instance of FlickerReduction"));
89   qmlRegisterUncreatableType<Focus>(uri, MAJOR, MINOR, "Focus", QObject::tr("Cannot create separate instance of Focus"));
90   qmlRegisterUncreatableType<AutoFocus>(uri, MAJOR, MINOR, "AutoFocus", QObject::tr("Cannot create separate instance of AutoFocus"));
91   qmlRegisterUncreatableType<Roi>(uri, MAJOR, MINOR, "Roi", QObject::tr("Cannot create separate instance of Roi"));
92
93   qmlRegisterUncreatableType<VideoMute>(uri, MAJOR, MINOR, "VideoMute", QObject::tr("Cannot create separate instance of VideoMute"));
94   qmlRegisterUncreatableType<VideoTorch>(uri, MAJOR, MINOR, "VideoTorch", QObject::tr("Cannot create separate instance of VideoTorch"));
95
96   qmlRegisterType<MetaData>(uri, MAJOR, MINOR, "MetaData");
97   qmlRegisterType<ImageSettings>(uri, MAJOR, MINOR, "ImageSettings");
98   qmlRegisterType<VideoSettings>(uri, MAJOR, MINOR, "VideoSettings");
99   qmlRegisterType<Sounds>(uri, MAJOR, MINOR, "Sounds");
100   qmlRegisterInterface<DeclarativeQtCameraNotifications>("DeclarativeQtCameraNotifications");
101
102   qmlRegisterUncreatableType<ImageResolutionModel>(uri, MAJOR, MINOR, "ImageResolutionModel",
103                           "ImageResolutionModel can be obtained from ImageSettings");
104   qmlRegisterUncreatableType<VideoResolutionModel>(uri, MAJOR, MINOR, "VideoResolutionModel",
105                           "VideoResolutionModel can be obtained from VideoSettings");
106
107   qmlRegisterType<Mode>();
108   qmlRegisterType<CameraConfig>(uri, MAJOR, MINOR, "CameraConfig");
109
110   qmlRegisterType<VideoPlayer>("QtCameraExtras", MAJOR, MINOR, "VideoPlayer");
111 }
112
113 Q_EXPORT_PLUGIN2(declarativeqtcamera, Plugin);