You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
#ifndef HEADER_ScreenManager |
|
#define HEADER_ScreenManager |
|
/* |
|
htop - ScreenManager.h |
|
(C) 2004-2011 Hisham H. Muhammad |
|
Released under the GNU GPLv2+, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include <stdbool.h> |
|
|
|
#include "Action.h" |
|
#include "Header.h" |
|
#include "Panel.h" |
|
#include "Settings.h" |
|
#include "Vector.h" |
|
|
|
|
|
typedef struct ScreenManager_ { |
|
int x1; |
|
int y1; |
|
int x2; |
|
int y2; |
|
Vector* panels; |
|
const char* name; |
|
int panelCount; |
|
Header* header; |
|
const Settings* settings; |
|
const State* state; |
|
bool allowFocusChange; |
|
} ScreenManager; |
|
|
|
ScreenManager* ScreenManager_new(Header* header, const Settings* settings, const State* state, bool owner); |
|
|
|
void ScreenManager_delete(ScreenManager* this); |
|
|
|
int ScreenManager_size(const ScreenManager* this); |
|
|
|
void ScreenManager_add(ScreenManager* this, Panel* item, int size); |
|
|
|
void ScreenManager_insert(ScreenManager* this, Panel* item, int size, int idx); |
|
|
|
Panel* ScreenManager_remove(ScreenManager* this, int idx); |
|
|
|
void ScreenManager_resize(ScreenManager* this); |
|
|
|
void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey, const char* name); |
|
|
|
#endif
|
|
|