f5fb1b252c0a0931a266e67552268055c3cfad28
[harmattan/cameraplus] / imports / videotorch.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 "videotorch.h"
22 #include "qtcamvideotorch.h"
23 #include "camera.h"
24 #include "qtcamdevice.h"
25 #include "qtcamvideomode.h"
26
27 VideoTorch::VideoTorch(QObject *parent) :
28   QObject(parent), m_cam(0), m_torch(0) {
29
30 }
31
32 VideoTorch::~VideoTorch() {
33   m_cam = 0;
34 }
35
36 Camera *VideoTorch::camera() {
37   return m_cam;
38 }
39
40 void VideoTorch::setCamera(Camera *camera) {
41   if (camera == m_cam) {
42     return;
43   }
44
45   if (m_cam) {
46     QObject::disconnect(m_cam, SIGNAL(deviceChanged()), this, SLOT(deviceChanged()));
47   }
48
49   m_cam = camera;
50
51   if (m_cam) {
52     QObject::connect(m_cam, SIGNAL(deviceChanged()), this, SLOT(deviceChanged()));
53   }
54
55   emit cameraChanged();
56
57   deviceChanged();
58 }
59
60 bool VideoTorch::isOn() const {
61   return m_torch ? m_torch->isOn() : false;
62 }
63
64 void VideoTorch::setOn(bool on) {
65   if (m_torch) {
66     m_torch->setOn(on);
67   }
68 }
69
70 void VideoTorch::deviceChanged() {
71   if (m_torch) {
72     delete m_torch; m_torch = 0;
73   }
74
75   if (m_cam->device()) {
76     m_torch = new QtCamVideoTorch(m_cam->device(), this);
77     QObject::connect(m_torch, SIGNAL(stateChanged()), this, SIGNAL(stateChanged()));
78
79     emit stateChanged();
80   }
81 }