htop/CategoriesPanel.h

34 lines
757 B
C
Raw Normal View History

2006-06-07 00:28:42 +04:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 21:16:49 +03:00
2006-05-30 17:47:28 +04:00
#ifndef HEADER_CategoriesPanel
#define HEADER_CategoriesPanel
2011-12-27 01:35:57 +04:00
/*
htop - CategoriesPanel.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 21:16:49 +03:00
2006-05-30 17:47:28 +04:00
#include "Panel.h"
2011-12-27 01:35:57 +04:00
#include "Settings.h"
#include "ScreenManager.h"
#include "ProcessList.h"
2006-03-04 21:16:49 +03:00
2006-05-30 17:47:28 +04:00
typedef struct CategoriesPanel_ {
Panel super;
ScreenManager* scr;
2006-03-04 21:16:49 +03:00
Settings* settings;
Header* header;
ProcessList* pl;
2006-05-30 17:47:28 +04:00
} CategoriesPanel;
2006-03-04 21:16:49 +03:00
2006-05-30 17:47:28 +04:00
void CategoriesPanel_makeMetersPage(CategoriesPanel* this);
2006-03-04 21:16:49 +03:00
extern PanelClass CategoriesPanel_class;
CategoriesPanel* CategoriesPanel_new(ScreenManager* scr, Settings* settings, Header* header, ProcessList* pl);
2006-03-04 21:16:49 +03:00
#endif