mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
58 lines
982 B
C
58 lines
982 B
C
|
#ifndef _CPUMONITOR_H_
|
||
|
#define _CPUMONITOR_H_
|
||
|
|
||
|
#include <edeconf.h>
|
||
|
|
||
|
#if (defined(linux) || defined(HAVE_KSTAT_H))
|
||
|
|
||
|
#ifdef HAVE_KSTAT_H
|
||
|
#include <kstat.h>
|
||
|
#include <sys/sysinfo.h>
|
||
|
#endif /* have_kstat_h */
|
||
|
|
||
|
enum {
|
||
|
IWM_USER = 0,
|
||
|
IWM_NICE,
|
||
|
IWM_SYS,
|
||
|
IWM_IDLE,
|
||
|
IWM_STATES
|
||
|
};
|
||
|
|
||
|
/*#include <efltk/Fl_Widget.h>
|
||
|
#include <efltk/Fl_Locale.h>
|
||
|
#include <efltk/fl_draw.h>
|
||
|
#include <efltk/Fl.h>*/
|
||
|
#include <fltk/Widget.h>
|
||
|
#include <fltk/draw.h>
|
||
|
#include <fltk/Fl.h>*/
|
||
|
|
||
|
class CPUMonitor : public fltk::Widget {
|
||
|
public:
|
||
|
CPUMonitor();
|
||
|
virtual ~CPUMonitor();
|
||
|
|
||
|
void clear();
|
||
|
|
||
|
void update_status();
|
||
|
void get_cpu_info();
|
||
|
|
||
|
virtual void draw();
|
||
|
virtual void layout();
|
||
|
virtual void preferred_size(int &w, int &h) { w=this->w(); }
|
||
|
|
||
|
int samples() const { return m_samples; }
|
||
|
|
||
|
private:
|
||
|
bool m_draw_label;
|
||
|
int m_old_samples;
|
||
|
int m_samples;
|
||
|
|
||
|
int **cpu;
|
||
|
long last_cpu[IWM_STATES];
|
||
|
fltk::Color colors[IWM_STATES];
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|