blob: aee93282baeda16771c5b9ec73b2f488b274fe0c [file] [log] [blame]
Christian Göttsche9060a412020-12-25 16:42:35 +01001#ifndef HEADER_HeaderOptionsPanel
2#define HEADER_HeaderOptionsPanel
3/*
4htop - ColorsPanel.h
5(C) 2021 htop dev team
Daniel Lange94ad1112021-09-22 11:33:00 +02006Released under the GNU GPLv2+, see the COPYING file
Christian Göttsche9060a412020-12-25 16:42:35 +01007in the source distribution for its full text.
8*/
9
10#include "Panel.h"
11#include "ScreenManager.h"
12#include "Settings.h"
13
14
15typedef struct HeaderOptionsPanel_ {
16 Panel super;
17
18 ScreenManager* scr;
19 Settings* settings;
20} HeaderOptionsPanel;
21
22extern const PanelClass HeaderOptionsPanel_class;
23
24HeaderOptionsPanel* HeaderOptionsPanel_new(Settings* settings, ScreenManager* scr);
25
26#endif /* HEADER_HeaderOptionsPanel */