ba83baf4fd1df77580e04ae1063c2a4100036725
[harmattan/cameraplus] / lib / qtcamscene.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 "qtcamscene.h"
22 #include "qtcamcapability_p.h"
23
24 QtCamScene::QtCamScene(QtCamDevice *dev, QObject *parent) :
25   QtCamCapability(new QtCamCapabilityPrivate(dev, QtCamCapability::Scene, "scene-mode"), parent) {
26
27 }
28
29 QtCamScene::~QtCamScene() {
30
31 }
32
33 QtCamScene::SceneMode QtCamScene::value() {
34   int val = 0;
35   if (!d_ptr->intValue(&val)) {
36     return QtCamScene::Auto;
37   }
38
39   switch (val) {
40   case QtCamScene::Manual:
41   case QtCamScene::Closeup:
42   case QtCamScene::Portrait:
43   case QtCamScene::Landscape:
44   case QtCamScene::Sport:
45   case QtCamScene::Night:
46     return (QtCamScene::SceneMode)val;
47
48   default:
49     return QtCamScene::Auto;
50   }
51 }
52
53 bool QtCamScene::setValue(const QtCamScene::SceneMode& mode) {
54   SceneMode old = value();
55
56   // Scene mode is always forced in order to reset the other capabilities.
57   bool ret = d_ptr->setIntValue(mode, true);
58
59   if (!ret) {
60     return ret;
61   }
62
63   if (!d_ptr->dev || !d_ptr->dev->activeMode() || old == mode) {
64     return ret;
65   }
66
67   if (old == Night || mode == Night) {
68     // We must ask the mode to reset the settings to use night mode resolution if needed.
69     d_ptr->dev->activeMode()->applySettings();
70   }
71
72   return ret;
73 }