80f13e053a4a4c1fd8d437d10b3d979f76fbf84e
[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 #include "imagesettings.h"
42 #include "imageresolutionmodel.h"
43 #include "videosettings.h"
44 #include "videoresolutionmodel.h"
45 #include "notifications.h"
46
47 #include <QtDeclarative>
48
49 #define URI "QtCamera"
50 #define MAJOR 1
51 #define MINOR 0
52
53 void Plugin::registerTypes(QDeclarativeEngine *engine) {
54   qmlRegisterType<Camera>(URI, MAJOR, MINOR, "Camera");
55   qmlRegisterType<ImageMode>(URI, MAJOR, MINOR, "ImageMode");
56   qmlRegisterType<VideoMode>(URI, MAJOR, MINOR, "VideoMode");
57   qmlRegisterType<Zoom>(URI, MAJOR, MINOR, "Zoom");
58   qmlRegisterType<Flash>(URI, MAJOR, MINOR, "Flash");
59   qmlRegisterType<Scene>(URI, MAJOR, MINOR, "Scene");
60   qmlRegisterType<EvComp>(URI, MAJOR, MINOR, "EvComp");
61   qmlRegisterType<VideoTorch>(URI, MAJOR, MINOR, "VideoTorch");
62   qmlRegisterType<WhiteBalance>(URI, MAJOR, MINOR, "WhiteBalance");
63   qmlRegisterType<ColorTone>(URI, MAJOR, MINOR, "ColorTone");
64   qmlRegisterType<Exposure>(URI, MAJOR, MINOR, "Exposure");
65   qmlRegisterType<Aperture>(URI, MAJOR, MINOR, "Aperture");
66   qmlRegisterType<Iso>(URI, MAJOR, MINOR, "Iso");
67   qmlRegisterType<NoiseReduction>(URI, MAJOR, MINOR, "NoiseReduction");
68   qmlRegisterType<FlickerReduction>(URI, MAJOR, MINOR, "FlickerReduction");
69   qmlRegisterType<Mute>(URI, MAJOR, MINOR, "Mute");
70   qmlRegisterType<MetaData>(URI, MAJOR, MINOR, "MetaData");
71   qmlRegisterType<ImageSettings>(URI, MAJOR, MINOR, "ImageSettings");
72   qmlRegisterType<VideoSettings>(URI, MAJOR, MINOR, "VideoSettings");
73   qmlRegisterInterface<Notifications>("Notifications");
74
75   qmlRegisterUncreatableType<ImageResolutionModel>(URI, MAJOR, MINOR, "ImageResolutionModel",
76                           "ImageResolutionModel can be obtained from ImageSettings");
77   qmlRegisterUncreatableType<VideoResolutionModel>(URI, MAJOR, MINOR, "VideoResolutionModel",
78                           "VideoResolutionModel can be obtained from VideoSettings");
79
80   qmlRegisterType<Mode>();
81   qmlRegisterType<Capability>();
82
83   engine->addImageProvider("preview", new PreviewProvider);
84 }