ClockMeter.c 752 Bytes
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
/*
htop
Hisham Muhammad's avatar
Hisham Muhammad committed
3
(C) 2004-2011 Hisham H. Muhammad
Hisham Muhammad's avatar
Hisham Muhammad committed
4
5
6
7
8
9
10
11
12
13
14
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"

15
16
17
int ClockMeter_attributes[] = {
   CLOCK
};
18

19
20
21
22
23
24
25
static void ClockMeter_setValues(Meter* this, char* buffer, int size) {
   time_t t = time(NULL);
   struct tm *lt = localtime(&t);
   this->values[0] = lt->tm_hour * 60 + lt->tm_min;
   strftime(buffer, size, "%H:%M:%S", lt);
}

26
27
28
29
30
31
32
33
34
35
MeterType ClockMeter = {
   .setValues = ClockMeter_setValues, 
   .display = NULL,
   .mode = TEXT_METERMODE,
   .total = 100.0,
   .items = 1,
   .attributes = ClockMeter_attributes,
   .name = "Clock",
   .uiName = "Clock",
   .caption = "Time: ",
Hisham Muhammad's avatar
Hisham Muhammad committed
36
};