HeaderOptionsPanel.h 585 B

1234567891011121314151617181920212223242526
  1. #ifndef HEADER_HeaderOptionsPanel
  2. #define HEADER_HeaderOptionsPanel
  3. /*
  4. htop - ColorsPanel.h
  5. (C) 2021 htop dev team
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "Panel.h"
  10. #include "ScreenManager.h"
  11. #include "Settings.h"
  12. typedef struct HeaderOptionsPanel_ {
  13. Panel super;
  14. ScreenManager* scr;
  15. Settings* settings;
  16. } HeaderOptionsPanel;
  17. extern const PanelClass HeaderOptionsPanel_class;
  18. HeaderOptionsPanel* HeaderOptionsPanel_new(Settings* settings, ScreenManager* scr);
  19. #endif /* HEADER_HeaderOptionsPanel */