htop/ColorsPanel.h

26 lines
504 B
C
Raw Normal View History

2006-05-30 13:47:28 +00:00
#ifndef HEADER_ColorsPanel
#define HEADER_ColorsPanel
2011-12-26 21:35:57 +00:00
/*
htop - ColorsPanel.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
2011-12-26 21:35:57 +00:00
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
typedef struct ColorsPanel_ {
Panel super;
2006-03-04 18:16:49 +00:00
Settings* settings;
ScreenManager* scr;
2006-05-30 13:47:28 +00:00
} ColorsPanel;
2006-03-04 18:16:49 +00:00
extern PanelClass ColorsPanel_class;
ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);
2006-03-04 18:16:49 +00:00
#endif