DisplayOptionsPanel.h 630 B

12345678910111213141516171819202122232425262728
  1. #ifndef HEADER_DisplayOptionsPanel
  2. #define HEADER_DisplayOptionsPanel
  3. /*
  4. htop - DisplayOptionsPanel.h
  5. (C) 2004-2011 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "FunctionBar.h"
  10. #include "Panel.h"
  11. #include "ScreenManager.h"
  12. #include "Settings.h"
  13. typedef struct DisplayOptionsPanel_ {
  14. Panel super;
  15. Settings* settings;
  16. ScreenManager* scr;
  17. FunctionBar* decIncBar;
  18. } DisplayOptionsPanel;
  19. extern const PanelClass DisplayOptionsPanel_class;
  20. DisplayOptionsPanel* DisplayOptionsPanel_new(Settings* settings, ScreenManager* scr);
  21. #endif