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