169c34cda01cf6312c97243731565f83186a081d
[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   // Nothing
65 }
66
67 void CameraConfig::componentComplete() {
68   if (m_config) {
69     return;
70   }
71
72   if (m_path.isEmpty()) {
73     m_config = new QtCamConfig(this);
74   }
75   else {
76     m_config = new QtCamConfig(m_path, this);
77   }
78 }