htop/MetersPanel.h

44 lines
1.1 KiB
C
Raw Normal View History

2006-06-06 20:28:42 +00:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 18:16:49 +00:00
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
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
#include "Panel.h"
2006-03-04 18:16:49 +00:00
#include "Settings.h"
#include "ScreenManager.h"
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;
Vector* meters;
2006-03-04 18:16:49 +00:00
ScreenManager* scr;
MetersPanel* leftNeighbor;
MetersPanel* rightNeighbor;
bool moving;
};
2006-03-04 18:16:49 +00:00
// Note: In code the meters are known to have bar/text/graph "Modes", but in UI
// we call them "Styles".
// We avoid UTF-8 arrows ← → here as they might display full-width on Chinese
// terminals, breaking our aligning.
// In <http://unicode.org/reports/tr11/>, arrows (U+2019..U+2199) are
// considered "Ambiguous characters".
2015-08-27 22:14:13 +00:00
void MetersPanel_setMoving(MetersPanel* this, bool moving);
extern PanelClass MetersPanel_class;
2010-02-25 01:43:18 +00:00
MetersPanel* MetersPanel_new(Settings* settings, const char* header, Vector* meters, ScreenManager* scr);
2006-03-04 18:16:49 +00:00
#endif