htop/BatteryMeter.c

69 lines
1.5 KiB
C
Raw Permalink Normal View History

/*
2011-12-26 21:35:57 +00:00
htop - BatteryMeter.c
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2011-12-26 21:35:57 +00:00
in the source distribution for its full text.
2011-12-26 21:35:57 +00:00
This meter written by Ian P. Hands (iphands@gmail.com, ihands@redhat.com).
*/
#include "BatteryMeter.h"
2011-12-26 21:35:57 +00:00
#include <math.h>
#include "CRT.h"
#include "Object.h"
#include "Platform.h"
2020-10-14 18:21:09 +00:00
#include "XUtils.h"
static const int BatteryMeter_attributes[] = {
BATTERY
};
2020-10-06 11:13:16 +00:00
static void BatteryMeter_updateValues(Meter* this) {
ACPresence isOnAC;
double percent;
2019-10-31 16:39:12 +00:00
Platform_getBattery(&percent, &isOnAC);
2020-09-07 09:52:42 +00:00
if (isnan(percent)) {
this->values[0] = NAN;
2020-10-06 11:13:16 +00:00
xSnprintf(this->txtBuffer, sizeof(this->txtBuffer), "N/A");
return;
}
this->values[0] = percent;
const char* text;
switch (isOnAC) {
case AC_PRESENT:
text = this->mode == TEXT_METERMODE ? " (Running on A/C)" : "(A/C)";
break;
case AC_ABSENT:
text = this->mode == TEXT_METERMODE ? " (Running on battery)" : "(bat)";
break;
case AC_ERROR:
default:
text = "";
break;
}
2020-10-06 11:13:16 +00:00
xSnprintf(this->txtBuffer, sizeof(this->txtBuffer), "%.1f%%%s", percent, text);
}
2020-10-05 11:19:50 +00:00
const MeterClass BatteryMeter_class = {
.super = {
.extends = Class(Meter),
.delete = Meter_delete
},
.updateValues = BatteryMeter_updateValues,
.defaultMode = TEXT_METERMODE,
.maxItems = 1,
.total = 100.0,
.attributes = BatteryMeter_attributes,
.name = "Battery",
.uiName = "Battery",
.caption = "Battery: "
};