ColorsPanel.h 444 B

123456789101112131415161718192021222324
  1. #ifndef HEADER_ColorsPanel
  2. #define HEADER_ColorsPanel
  3. /*
  4. htop - ColorsPanel.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 "Settings.h"
  11. typedef struct ColorsPanel_ {
  12. Panel super;
  13. Settings* settings;
  14. } ColorsPanel;
  15. extern const PanelClass ColorsPanel_class;
  16. ColorsPanel* ColorsPanel_new(Settings* settings);
  17. #endif