DisplayOptionsPanel.h 578 B

1234567891011121314151617181920212223242526
  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 "Panel.h"
  10. #include "ScreenManager.h"
  11. #include "Settings.h"
  12. typedef struct DisplayOptionsPanel_ {
  13. Panel super;
  14. Settings* settings;
  15. ScreenManager* scr;
  16. } DisplayOptionsPanel;
  17. extern const PanelClass DisplayOptionsPanel_class;
  18. DisplayOptionsPanel* DisplayOptionsPanel_new(Settings* settings, ScreenManager* scr);
  19. #endif