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