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_CategoriesPanel
|
|
|
|
#define HEADER_CategoriesPanel
|
2011-12-26 21:35:57 +00: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 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Settings.h"
|
|
|
|
#include "ScreenManager.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
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
|
|
|
void CategoriesPanel_makeMetersPage(CategoriesPanel* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
extern PanelClass CategoriesPanel_class;
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
CategoriesPanel* CategoriesPanel_new(Settings* settings, ScreenManager* scr);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|