2020-12-25 15:42:35 +00:00
|
|
|
#ifndef HEADER_HeaderOptionsPanel
|
|
|
|
#define HEADER_HeaderOptionsPanel
|
|
|
|
/*
|
|
|
|
htop - ColorsPanel.h
|
|
|
|
(C) 2021 htop dev team
|
2021-09-22 09:33:00 +00:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2020-12-25 15:42:35 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Panel.h"
|
|
|
|
#include "ScreenManager.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct HeaderOptionsPanel_ {
|
|
|
|
Panel super;
|
|
|
|
|
|
|
|
ScreenManager* scr;
|
|
|
|
Settings* settings;
|
|
|
|
} HeaderOptionsPanel;
|
|
|
|
|
|
|
|
extern const PanelClass HeaderOptionsPanel_class;
|
|
|
|
|
|
|
|
HeaderOptionsPanel* HeaderOptionsPanel_new(Settings* settings, ScreenManager* scr);
|
|
|
|
|
|
|
|
#endif /* HEADER_HeaderOptionsPanel */
|