10c69083b9de8015c4c0c0d415a352bf132edca9
[harmattan/cameraplus] / imports / 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 "capability.h"
27 #include "zoom.h"
28 #include "flash.h"
29 #include "scene.h"
30 #include "evcomp.h"
31 #include "videotorch.h"
32 #include "whitebalance.h"
33 #include "colortone.h"
34 #include "exposure.h"
35 #include "aperture.h"
36 #include "iso.h"
37 #include "noisereduction.h"
38 #include "flickerreduction.h"
39 #include "mute.h"
40 #include "metadata.h"
41
42 #include <QtDeclarative>
43
44 #define URI "QtCamera"
45 #define MAJOR 1
46 #define MINOR 0
47
48 void Plugin::registerTypes(QDeclarativeEngine *engine) {
49   qmlRegisterType<Camera>(URI, MAJOR, MINOR, "Camera");
50   qmlRegisterType<ImageMode>(URI, MAJOR, MINOR, "ImageMode");
51   qmlRegisterType<VideoMode>(URI, MAJOR, MINOR, "VideoMode");
52   qmlRegisterType<Zoom>(URI, MAJOR, MINOR, "Zoom");
53   qmlRegisterType<Flash>(URI, MAJOR, MINOR, "Flash");
54   qmlRegisterType<Scene>(URI, MAJOR, MINOR, "Scene");
55   qmlRegisterType<EvComp>(URI, MAJOR, MINOR, "EvComp");
56   qmlRegisterType<VideoTorch>(URI, MAJOR, MINOR, "VideoTorch");
57   qmlRegisterType<WhiteBalance>(URI, MAJOR, MINOR, "WhiteBalance");
58   qmlRegisterType<ColorTone>(URI, MAJOR, MINOR, "ColorTone");
59   qmlRegisterType<Exposure>(URI, MAJOR, MINOR, "Exposure");
60   qmlRegisterType<Aperture>(URI, MAJOR, MINOR, "Aperture");
61   qmlRegisterType<Iso>(URI, MAJOR, MINOR, "Iso");
62   qmlRegisterType<NoiseReduction>(URI, MAJOR, MINOR, "NoiseReduction");
63   qmlRegisterType<FlickerReduction>(URI, MAJOR, MINOR, "FlickerReduction");
64   qmlRegisterType<Mute>(URI, MAJOR, MINOR, "Mute");
65   qmlRegisterType<MetaData>(URI, MAJOR, MINOR, "MetaData");
66
67   qmlRegisterType<Mode>();
68   qmlRegisterType<Capability>();
69
70   engine->addImageProvider("preview", new PreviewProvider);
71 }