Renamed imports to declarative and libimports to libdeclarativeqtcamera
[harmattan/cameraplus] / declarative / videomode.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 "videomode.h"
22 #include "qtcamvideomode.h"
23 #include "qtcamdevice.h"
24 #include "camera.h"
25
26 VideoMode::VideoMode(QObject *parent) :
27   Mode(parent),
28   m_video(0) {
29
30 }
31
32 VideoMode::~VideoMode() {
33   m_video = 0;
34 }
35
36
37 bool VideoMode::startRecording(const QString& fileName, const QString& tmpFileName) {
38   return m_video ? m_video->startRecording(fileName, tmpFileName) : false;
39 }
40
41 void VideoMode::stopRecording() {
42   if (m_video) {
43     m_video->stopRecording();
44   }
45 }
46
47 void VideoMode::preChangeMode() {
48   if (m_video) {
49     QObject::disconnect(m_video, SIGNAL(recordingStateChanged()),
50                         this, SIGNAL(recordingStateChanged()));
51   }
52
53   m_video = 0;
54 }
55
56 void VideoMode::postChangeMode() {
57   m_video = m_cam->device()->videoMode();
58
59   if (m_video) {
60     QObject::connect(m_video, SIGNAL(recordingStateChanged()),
61                         this, SIGNAL(recordingStateChanged()));
62   }
63 }
64
65 bool VideoMode::isRecording() {
66   return m_video ? m_video->isRecording() : false;
67 }
68
69 void VideoMode::changeMode() {
70   m_mode = m_cam->device()->videoMode();
71 }