htop/CategoriesPanel.h

41 lines
851 B
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
/* Do not edit this file. It was automatically genarated. */
2006-05-30 13:47:28 +00:00
#ifndef HEADER_CategoriesPanel
#define HEADER_CategoriesPanel
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
#include "AvailableMetersPanel.h"
#include "MetersPanel.h"
#include "DisplayOptionsPanel.h"
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 "debug.h"
#include <assert.h>
2006-05-30 13:47:28 +00:00
typedef struct CategoriesPanel_ {
Panel super;
2006-03-04 18:16:49 +00:00
Settings* settings;
ScreenManager* scr;
2006-05-30 13:47:28 +00:00
} CategoriesPanel;
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
CategoriesPanel* CategoriesPanel_new(Settings* settings, ScreenManager* scr);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void CategoriesPanel_delete(Object* object);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
HandlerResult CategoriesPanel_eventHandler(Panel* super, int ch);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void CategoriesPanel_makeMetersPage(CategoriesPanel* this);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void CategoriesPanel_makeDisplayOptionsPage(CategoriesPanel* this);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void CategoriesPanel_makeColorsPage(CategoriesPanel* this);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void CategoriesPanel_makeColumnsPage(CategoriesPanel* this);
2006-03-04 18:16:49 +00:00
#endif