htop/DisplayOptionsPanel.h

27 lines
578 B
C
Raw Normal View History

2006-05-30 17:47:28 +04:00
#ifndef HEADER_DisplayOptionsPanel
#define HEADER_DisplayOptionsPanel
2011-12-27 01:35:57 +04:00
/*
htop - DisplayOptionsPanel.h
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2011-12-27 01:35:57 +04:00
in the source distribution for its full text.
*/
2006-03-04 21:16:49 +03:00
2006-05-30 17:47:28 +04:00
#include "Panel.h"
2006-03-04 21:16:49 +03:00
#include "ScreenManager.h"
2020-09-18 20:23:04 +03:00
#include "Settings.h"
2006-03-04 21:16:49 +03:00
2021-04-29 18:12:43 +03:00
2006-05-30 17:47:28 +04:00
typedef struct DisplayOptionsPanel_ {
Panel super;
2006-03-04 21:16:49 +03:00
Settings* settings;
ScreenManager* scr;
2006-05-30 17:47:28 +04:00
} DisplayOptionsPanel;
2006-03-04 21:16:49 +03:00
2020-10-05 14:19:50 +03:00
extern const PanelClass DisplayOptionsPanel_class;
DisplayOptionsPanel* DisplayOptionsPanel_new(Settings* settings, ScreenManager* scr);
2006-03-04 21:16:49 +03:00
#endif