2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop
|
|
|
|
(C) 2004-2006 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ClockMeter.h"
|
|
|
|
#include "Meter.h"
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
2006-04-10 20:40:38 +00:00
|
|
|
/* private */
|
|
|
|
static int ClockMeter_attributes[] = { CLOCK };
|
|
|
|
|
|
|
|
/* private */
|
|
|
|
MeterType ClockMeter = {
|
|
|
|
.setValues = ClockMeter_setValues,
|
|
|
|
.display = NULL,
|
|
|
|
.mode = TEXT_METERMODE,
|
|
|
|
.total = 100.0,
|
|
|
|
.items = 1,
|
|
|
|
.attributes = ClockMeter_attributes,
|
|
|
|
.name = "Clock",
|
|
|
|
.uiName = "Clock",
|
|
|
|
.caption = "Time: ",
|
2006-03-04 18:16:49 +00:00
|
|
|
};
|
|
|
|
|
2006-04-10 20:40:38 +00:00
|
|
|
void ClockMeter_setValues(Meter* this, char* buffer, int size) {
|
2006-03-04 18:16:49 +00:00
|
|
|
time_t t = time(NULL);
|
|
|
|
struct tm *lt = localtime(&t);
|
2006-04-10 20:40:38 +00:00
|
|
|
this->values[0] = lt->tm_hour * 60 + lt->tm_min;
|
|
|
|
strftime(buffer, size, "%H:%M:%S", lt);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|