2006-05-30 13:47:28 +00:00
|
|
|
#ifndef HEADER_MetersPanel
|
|
|
|
#define HEADER_MetersPanel
|
2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - MetersPanel.h
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 09:51:32 +02:00
|
|
|
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.
|
|
|
|
*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-19 13:55:23 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "ScreenManager.h"
|
2020-09-18 19:23:04 +02:00
|
|
|
#include "Settings.h"
|
2020-09-19 13:55:23 +02:00
|
|
|
#include "Vector.h"
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-19 13:55:23 +02:00
|
|
|
struct MetersPanel_;
|
2015-02-03 22:32:07 +01:00
|
|
|
typedef struct MetersPanel_ MetersPanel;
|
|
|
|
|
|
|
|
struct MetersPanel_ {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel super;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
Settings* settings;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* meters;
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager* scr;
|
2015-02-03 22:32:07 +01:00
|
|
|
MetersPanel* leftNeighbor;
|
|
|
|
MetersPanel* rightNeighbor;
|
2015-01-21 23:27:31 -02:00
|
|
|
bool moving;
|
2015-02-03 22:32:07 +01:00
|
|
|
};
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-11 20:14:56 +02:00
|
|
|
void MetersPanel_cleanup(void);
|
|
|
|
|
2020-09-02 02:38:44 -05:00
|
|
|
void MetersPanel_setMoving(MetersPanel* this, bool moving);
|
2015-08-27 19:14:13 -03:00
|
|
|
|
2020-10-05 13:19:50 +02:00
|
|
|
extern const PanelClass MetersPanel_class;
|
2012-12-05 15:12:20 +00:00
|
|
|
|
2020-09-02 02:38:44 -05:00
|
|
|
MetersPanel* MetersPanel_new(Settings* settings, const char* header, Vector* meters, ScreenManager* scr);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|