Renamed imports to declarative and libimports to libdeclarativeqtcamera
[harmattan/cameraplus] / src / batteryinfo.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 "batteryinfo.h"
22 #include <qmbattery.h>
23 #include <QDeclarativeInfo>
24
25 BatteryInfo::BatteryInfo(QObject *parent) :
26   QObject(parent), m_battery(0) {
27
28 }
29
30 BatteryInfo::~BatteryInfo() {
31   setActive(false);
32 }
33
34 bool BatteryInfo::isCharging() const {
35   if (!m_battery) {
36     qmlInfo(this) << "BatteryInfo has to be activated first";
37     return false;
38   }
39
40   if (m_battery->getChargingState() == MeeGo::QmBattery::StateCharging) {
41     return true;
42   }
43
44   return false;
45 }
46
47 bool BatteryInfo::isCritical() const {
48   if (!m_battery) {
49     qmlInfo(this) << "BatteryInfo has to be activated first";
50     return true;
51   }
52
53   MeeGo::QmBattery::BatteryState state = m_battery->getBatteryState();
54
55   if (state == MeeGo::QmBattery::StateOK || state == MeeGo::QmBattery::StateFull) {
56     return false;
57   }
58
59   return true;
60 }
61
62 bool BatteryInfo::isActive() const {
63   return m_battery != 0;
64 }
65
66 void BatteryInfo::setActive(bool active) {
67   if (isActive() == active) {
68     return;
69   }
70
71   if (!active) {
72     m_battery->deleteLater();
73     m_battery = 0;
74   }
75   else {
76     m_battery = new MeeGo::QmBattery(this);
77     QObject::connect(m_battery, SIGNAL(batteryStateChanged(MeeGo::QmBattery::BatteryState)),
78                      this, SIGNAL(chargingChanged()));
79     QObject::connect(m_battery, SIGNAL(chargingStateChanged(MeeGo::QmBattery::ChargingState)),
80                      this, SIGNAL(chargingChanged()));
81   }
82
83   emit activeChanged();
84 }