c2e9966803058ac4e0b683e32378d4024fa51759
[harmattan/cameraplus] / declarative / plugin.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 "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 "notifications.h"
48 #include "sounds.h"
49
50 #include <QtDeclarative>
51
52 #define URI "QtCamera"
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   qmlRegisterType<Camera>(uri, MAJOR, MINOR, "Camera");
73   qmlRegisterType<ImageMode>(uri, MAJOR, MINOR, "ImageMode");
74   qmlRegisterType<VideoMode>(uri, MAJOR, MINOR, "VideoMode");
75
76   qmlRegisterUncreatableType<Zoom>(uri, MAJOR, MINOR, "Zoom", QObject::tr("Cannot create separate instance of Zoom"));
77   qmlRegisterUncreatableType<Flash>(uri, MAJOR, MINOR, "Flash", QObject::tr("Cannot create separate instance of Flash"));
78   qmlRegisterUncreatableType<Scene>(uri, MAJOR, MINOR, "Scene", QObject::tr("Cannot create separate instance of Scene"));
79   qmlRegisterUncreatableType<EvComp>(uri, MAJOR, MINOR, "EvComp", QObject::tr("Cannot create separate instance of EvComp"));
80   qmlRegisterUncreatableType<WhiteBalance>(uri, MAJOR, MINOR, "WhiteBalance", QObject::tr("Cannot create separate instance of WhiteBalance"));
81   qmlRegisterUncreatableType<ColorTone>(uri, MAJOR, MINOR, "ColorTone", QObject::tr("Cannot create separate instance of ColorTone"));
82   qmlRegisterUncreatableType<Exposure>(uri, MAJOR, MINOR, "Exposure", QObject::tr("Cannot create separate instance of Exposure"));
83   qmlRegisterUncreatableType<Aperture>(uri, MAJOR, MINOR, "Aperture", QObject::tr("Cannot create separate instance of Iso"));
84   qmlRegisterUncreatableType<Iso>(uri, MAJOR, MINOR, "Iso", QObject::tr("Cannot create separate instance of Iso"));
85   qmlRegisterUncreatableType<NoiseReduction>(uri, MAJOR, MINOR, "NoiseReduction", QObject::tr("Cannot create separate instance of NoiseReduction"));
86   qmlRegisterUncreatableType<FlickerReduction>(uri, MAJOR, MINOR, "FlickerReduction", QObject::tr("Cannot create separate instance of FlickerReduction"));
87   qmlRegisterUncreatableType<Focus>(uri, MAJOR, MINOR, "Focus", QObject::tr("Cannot create separate instance of Focus"));
88   qmlRegisterUncreatableType<AutoFocus>(uri, MAJOR, MINOR, "AutoFocus", QObject::tr("Cannot create separate instance of AutoFocus"));
89   qmlRegisterUncreatableType<Roi>(uri, MAJOR, MINOR, "Roi", QObject::tr("Cannot create separate instance of Roi"));
90
91   qmlRegisterUncreatableType<VideoMute>(uri, MAJOR, MINOR, "VideoMute", QObject::tr("Cannot create separate instance of VideoMute"));
92   qmlRegisterUncreatableType<VideoTorch>(uri, MAJOR, MINOR, "VideoTorch", QObject::tr("Cannot create separate instance of VideoTorch"));
93
94   qmlRegisterType<MetaData>(uri, MAJOR, MINOR, "MetaData");
95   qmlRegisterType<ImageSettings>(uri, MAJOR, MINOR, "ImageSettings");
96   qmlRegisterType<VideoSettings>(uri, MAJOR, MINOR, "VideoSettings");
97   qmlRegisterType<Sounds>(uri, MAJOR, MINOR, "Sounds");
98   qmlRegisterInterface<Notifications>("Notifications");
99
100   qmlRegisterUncreatableType<ImageResolutionModel>(uri, MAJOR, MINOR, "ImageResolutionModel",
101                           "ImageResolutionModel can be obtained from ImageSettings");
102   qmlRegisterUncreatableType<VideoResolutionModel>(uri, MAJOR, MINOR, "VideoResolutionModel",
103                           "VideoResolutionModel can be obtained from VideoSettings");
104
105   qmlRegisterType<Mode>();
106 }
107
108 Q_EXPORT_PLUGIN2(declarativeqtcamera, Plugin);