Emit aspectRatioChanged() after we populate the model with new resolutions.
[harmattan/cameraplus] / declarative / videosettings.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 "videosettings.h"
22 #include "qtcamvideosettings.h"
23 #include "camera.h"
24 #include "qtcamdevice.h"
25 #include "qtcamvideomode.h"
26 #include "videoresolutionmodel.h"
27 #include <QDebug>
28
29 VideoSettings::VideoSettings(QObject *parent) :
30   QObject(parent), m_cam(0), m_settings(0), m_resolutions(0) {
31
32 }
33
34 VideoSettings::~VideoSettings() {
35   m_settings = 0;
36 }
37
38 QString VideoSettings::suffix() const {
39   return m_settings ? m_settings->suffix() : QString();
40 }
41
42 QStringList VideoSettings::aspectRatios() const {
43   return m_settings ? m_settings->aspectRatios() : QStringList();
44 }
45
46 Camera *VideoSettings::camera() {
47   return m_cam;
48 }
49
50 void VideoSettings::setCamera(Camera *camera) {
51   if (camera == m_cam) {
52     return;
53   }
54
55   if (m_cam) {
56     QObject::disconnect(m_cam, SIGNAL(deviceChanged()), this, SLOT(deviceChanged()));
57   }
58
59   m_cam = camera;
60
61   if (m_cam) {
62     QObject::connect(m_cam, SIGNAL(deviceChanged()), this, SLOT(deviceChanged()));
63   }
64
65   emit cameraChanged();
66
67   if (m_cam->device()) {
68     deviceChanged();
69   }
70 }
71
72 void VideoSettings::deviceChanged() {
73   m_settings = m_cam->device()->videoMode()->settings();
74
75   emit settingsChanged();
76
77   emit readyChanged();
78
79   delete m_resolutions;
80   m_resolutions = 0;
81
82   emit resolutionsChanged();
83 }
84
85 VideoResolutionModel *VideoSettings::resolutions() {
86   if (!m_settings) {
87     return 0;
88   }
89
90
91   if (!m_resolutions) {
92     m_resolutions = new VideoResolutionModel(m_settings, this);
93   }
94
95   return m_resolutions;
96 }
97
98 bool VideoSettings::isReady() const {
99   return m_settings;
100 }
101
102 bool VideoSettings::setResolution(const QString& aspectRatio, const QString& resolution) {
103   if (!isReady()) {
104     return false;
105   }
106
107   QList<QtCamVideoResolution> res = m_settings->resolutions(aspectRatio);
108
109   foreach (const QtCamVideoResolution& r, res) {
110     if (r.name() == resolution) {
111       return m_cam->device()->videoMode()->setResolution(r);
112     }
113   }
114
115   return false;
116 }