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_ColorsPanel
|
|
|
|
#define HEADER_ColorsPanel
|
2011-12-27 01:35:57 +04: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 21:16:49 +03:00
|
|
|
|
2006-06-07 00:28:42 +04:00
|
|
|
// TO ADD A NEW SCHEME:
|
|
|
|
// * Increment the size of bool check in ColorsPanel.h
|
2015-02-04 00:30:05 +03:00
|
|
|
// * Add the entry in the ColorSchemeNames array below in the file
|
2006-06-07 00:28:42 +04:00
|
|
|
// * Add a define in CRT.h that matches the order of the array
|
|
|
|
// * Add the colors in CRT_setColors
|
|
|
|
|
2011-12-27 01:35:57 +04:00
|
|
|
#include "Panel.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
#include "ScreenManager.h"
|
2006-03-04 21:16:49 +03:00
|
|
|
|
2006-05-30 17:47:28 +04:00
|
|
|
typedef struct ColorsPanel_ {
|
|
|
|
Panel super;
|
2006-03-04 21:16:49 +03:00
|
|
|
|
|
|
|
Settings* settings;
|
|
|
|
ScreenManager* scr;
|
2006-05-30 17:47:28 +04:00
|
|
|
} ColorsPanel;
|
2006-03-04 21:16:49 +03:00
|
|
|
|
|
|
|
|
2012-12-05 19:12:20 +04:00
|
|
|
extern PanelClass ColorsPanel_class;
|
|
|
|
|
2020-08-18 10:41:49 +03:00
|
|
|
extern ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);
|
2006-03-04 21:16:49 +03:00
|
|
|
|
|
|
|
#endif
|