htop/CategoriesPanel.h

31 lines
663 B
C
Raw Permalink Normal View History

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 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
#include "Header.h"
2006-05-30 13:47:28 +00:00
#include "Panel.h"
#include "ProcessList.h"
2020-09-18 17:23:04 +00:00
#include "ScreenManager.h"
#include "Settings.h"
2006-03-04 18:16:49 +00:00
2021-04-29 15:12:43 +00:00
2006-05-30 13:47:28 +00:00
typedef struct CategoriesPanel_ {
Panel super;
ScreenManager* scr;
2006-03-04 18:16:49 +00:00
Settings* settings;
Header* header;
ProcessList* pl;
2006-05-30 13:47:28 +00:00
} CategoriesPanel;
2006-03-04 18:16:49 +00:00
2020-10-05 11:19:50 +00:00
extern const PanelClass CategoriesPanel_class;
CategoriesPanel* CategoriesPanel_new(ScreenManager* scr, Settings* settings, Header* header, ProcessList* pl);
2006-03-04 18:16:49 +00:00
#endif