Create a QDeclarativeItem Viewfinder subclass
[harmattan/cameraplus] / declarative / cameraconfig.cpp
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #include "cameraconfig.h"
24 #include "qtcamconfig.h"
25 #include <QDeclarativeInfo>
26
27 CameraConfig::CameraConfig(QObject *parent) :
28   QObject(parent),
29   m_config(0) {
30
31 }
32
33 CameraConfig::~CameraConfig() {
34   m_config = 0;
35 }
36
37 QString CameraConfig::configPath() const {
38   return m_path;
39 }
40
41 void CameraConfig::setConfigPath(const QString& configPath) {
42   if (m_config) {
43     qmlInfo(this) << "configPath cannot be changed after initialization";
44     return;
45   }
46
47   if (m_path != configPath) {
48     m_path = configPath;
49     emit configPathChanged();
50   }
51 }
52
53 QtCamConfig *CameraConfig::config() const {
54   return m_config;
55 }
56
57 void CameraConfig::classBegin() {
58   // Nothing
59 }
60
61 void CameraConfig::componentComplete() {
62   if (m_config) {
63     return;
64   }
65
66   if (m_path.isEmpty()) {
67     m_config = new QtCamConfig(this);
68   }
69   else {
70     m_config = new QtCamConfig(m_path, this);
71   }
72 }