61ac9439fecfdbe0d3460cb46c2652e201961027
[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 #if defined(QT4)
26 #include <QDeclarativeInfo>
27 #elif defined(QT5)
28 #include <QQmlInfo>
29 #endif
30
31 // TODO: share that with qtcamera. We now have 2 instances of QtCamConfig
32
33 CameraConfig::CameraConfig(QObject *parent) :
34   QObject(parent),
35   m_config(0) {
36
37 }
38
39 CameraConfig::~CameraConfig() {
40   m_config = 0;
41 }
42
43 QString CameraConfig::configPath() const {
44   return m_path;
45 }
46
47 void CameraConfig::setConfigPath(const QString& configPath) {
48   if (m_config) {
49     qmlInfo(this) << "configPath cannot be changed after initialization";
50     return;
51   }
52
53   if (m_path != configPath) {
54     m_path = configPath;
55     emit configPathChanged();
56   }
57 }
58
59 QtCamConfig *CameraConfig::config() const {
60   return m_config;
61 }
62
63 void CameraConfig::classBegin() {
64 #if defined(QT4)
65   QDeclarativeParserStatus::classBegin();
66 #elif defined(QT5)
67   QQmlParserStatus::classBegin();
68 #endif
69
70   // Nothing
71 }
72
73 void CameraConfig::componentComplete() {
74 #if defined(QT4)
75   QDeclarativeParserStatus::componentComplete();
76 #elif defined(QT5)
77   QQmlParserStatus::componentComplete();
78 #endif
79
80   if (m_config) {
81     return;
82   }
83
84   if (m_path.isEmpty()) {
85     m_config = new QtCamConfig(this);
86   }
87   else {
88     m_config = new QtCamConfig(m_path, this);
89   }
90 }