summaryrefslogtreecommitdiffstats
path: root/tdecore/tdehw/tdebatterydevice.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-01-08 01:49:53 +0100
committerSlávek Banko <slavek.banko@axis.cz>2020-01-08 01:49:53 +0100
commit86c1d896c748bf5117ccfe28b20e48a7e2a70c8d (patch)
tree14e8a8cad1061b62de5f589b57143b83bf0c0601 /tdecore/tdehw/tdebatterydevice.cpp
parent3b0f07f2cdf3c5228b6d38b33fb5f2bc8fa0542d (diff)
downloadtdelibs-86c1d896c748bf5117ccfe28b20e48a7e2a70c8d.tar.gz
tdelibs-86c1d896c748bf5117ccfe28b20e48a7e2a70c8d.zip
tdehwlib: Adjusted parsing of battery information
+ Added initialization of all values Some batteries do not provide all values and, without initialization, values may contain dubious data. + Added reading of current battery capacity value in percent (capacity) Some batteries may provide the current capacity value in percent instead of the current energy value. + Added check whether the battery provides current energy value (charge_now or energy_now) The current energy is calculated if the value is not provided in the battery information. + Added reading of estimated time to empty battery (time_to_empty_now) The remaining time is calculated if the value is not provided in the battery information. If the battery does not provide charging current information, the estimated time to charge the battery cannot be calculated. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdecore/tdehw/tdebatterydevice.cpp')
-rw-r--r--tdecore/tdehw/tdebatterydevice.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/tdecore/tdehw/tdebatterydevice.cpp b/tdecore/tdehw/tdebatterydevice.cpp
index 781fb994b..e220fa5a6 100644
--- a/tdecore/tdehw/tdebatterydevice.cpp
+++ b/tdecore/tdehw/tdebatterydevice.cpp
@@ -21,7 +21,14 @@
#include "config.h"
-TDEBatteryDevice::TDEBatteryDevice(TDEGenericDeviceType::TDEGenericDeviceType dt, TQString dn) : TDEGenericDevice(dt, dn) {
+TDEBatteryDevice::TDEBatteryDevice(TDEGenericDeviceType::TDEGenericDeviceType dt, TQString dn) :
+ m_currentVoltage(0), m_minimumVoltage(0), m_maximumVoltage(0), m_maximumDesignVoltage(0),
+ m_alarmEnergy(0), m_currentEnergy(0), m_maximumEnergy(0), m_maximumDesignEnergy(0),
+ m_dischargeRate(0), m_timeRemaining(0),
+ m_technology(TQString::null),
+ m_status(TDEBatteryStatus::Unknown),
+ m_installed(0),
+ TDEGenericDevice(dt, dn) {
}
TDEBatteryDevice::~TDEBatteryDevice() {