Meter.h 2.83 KB
Newer Older
1
/* Do not edit this file. It was automatically generated. */
Hisham Muhammad's avatar
Hisham Muhammad committed
2
3
4
5

#ifndef HEADER_Meter
#define HEADER_Meter
/*
6
htop - Meter.c
Hisham Muhammad's avatar
Hisham Muhammad committed
7
8
9
10
11
(C) 2004-2006 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

12
13
14
15
16
17
18
#define _GNU_SOURCE
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <curses.h>
#include <stdarg.h>

Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
21
22
#include "Object.h"
#include "CRT.h"
#include "ListItem.h"
#include "String.h"
23
#include "ProcessList.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
24
25
26
27

#include "debug.h"
#include <assert.h>

28
29
30
31
32
#ifndef USE_FUNKY_MODES
#define USE_FUNKY_MODES 1
#endif

#define METER_BUFFER_LEN 128
Hisham Muhammad's avatar
Hisham Muhammad committed
33
34
35


typedef struct Meter_ Meter;
36
37
typedef struct MeterType_ MeterType;
typedef struct MeterMode_ MeterMode;
Hisham Muhammad's avatar
Hisham Muhammad committed
38

39
40
41
typedef void(*MeterType_Init)(Meter*);
typedef void(*MeterType_Done)(Meter*);
typedef void(*Meter_SetValues)(Meter*, char*, int);
Hisham Muhammad's avatar
Hisham Muhammad committed
42
43
typedef void(*Meter_Draw)(Meter*, int, int, int);

44
struct MeterMode_ {
Hisham Muhammad's avatar
Hisham Muhammad committed
45
   Meter_Draw draw;
46
47
48
49
50
   char* uiName;
   int h;
};

struct MeterType_ {
Hisham Muhammad's avatar
Hisham Muhammad committed
51
   Meter_SetValues setValues;
52
53
   Object_Display display;
   int mode;
Hisham Muhammad's avatar
Hisham Muhammad committed
54
   int items;
55
   double total;
Hisham Muhammad's avatar
Hisham Muhammad committed
56
   int* attributes;
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
   char* name;
   char* uiName;
   char* caption;
   MeterType_Init init;
   MeterType_Done done;
   Meter_Draw draw;
};

struct Meter_ {
   Object super;
   char* caption;
   MeterType* type;
   int mode;
   int param;
   Meter_Draw draw;
   void* drawBuffer;
   int h;
   ProcessList* pl;
Hisham Muhammad's avatar
Hisham Muhammad committed
75
76
77
78
79
80
   double* values;
   double total;
};

extern char* METER_CLASS;

81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
extern MeterType CPUMeter;
extern MeterType ClockMeter;
extern MeterType LoadAverageMeter;
extern MeterType LoadMeter;
extern MeterType MemoryMeter;
extern MeterType SwapMeter;
extern MeterType TasksMeter;
extern MeterType UptimeMeter;
extern MeterType AllCPUsMeter;

typedef enum {
   CUSTOM_METERMODE = 0,
   BAR_METERMODE,
   TEXT_METERMODE,
#ifdef USE_FUNKY_MODES
   GRAPH_METERMODE,
   LED_METERMODE,
#endif
   LAST_METERMODE
} MeterModeId;
Hisham Muhammad's avatar
Hisham Muhammad committed
101

102
103
extern MeterType* Meter_types[9];
extern MeterMode* Meter_modes[];
Hisham Muhammad's avatar
Hisham Muhammad committed
104
105


106
107
108
109
110
111
112
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
113
114
115
116




117
#ifdef USE_FUNKY_MODES
Hisham Muhammad's avatar
Hisham Muhammad committed
118

119
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
120
121
122



123
Meter* Meter_new(ProcessList* pl, int param, MeterType* type);
Hisham Muhammad's avatar
Hisham Muhammad committed
124

125
void Meter_delete(Object* cast);
Hisham Muhammad's avatar
Hisham Muhammad committed
126

127
void Meter_setCaption(Meter* this, char* caption);
Hisham Muhammad's avatar
Hisham Muhammad committed
128
129


130
void Meter_setMode(Meter* this, int modeIndex);
Hisham Muhammad's avatar
Hisham Muhammad committed
131
132
133

ListItem* Meter_toListItem(Meter* this);

134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* ---------- TextMeterMode ---------- */

void TextMeterMode_draw(Meter* this, int x, int y, int w);

/* ---------- BarMeterMode ---------- */


void BarMeterMode_draw(Meter* this, int x, int y, int w);

#ifdef USE_FUNKY_MODES

/* ---------- GraphMeterMode ---------- */

#define DrawDot(a,y,c) do { attrset(a); mvaddch(y, x+k, c); } while(0)



void GraphMeterMode_draw(Meter* this, int x, int y, int w);

/* ---------- LEDMeterMode ---------- */



void LEDMeterMode_draw(Meter* this, int x, int y, int w);

#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
161
#endif