htop/ScreenManager.h

57 lines
1.2 KiB
C
Raw Normal View History

2006-06-06 20:28:42 +00:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 18:16:49 +00:00
#ifndef HEADER_ScreenManager
#define HEADER_ScreenManager
/*
htop
(C) 2004-2006 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
2006-05-30 13:47:28 +00:00
#include "Panel.h"
2006-03-04 18:16:49 +00:00
#include "Object.h"
#include "Vector.h"
2006-03-04 18:16:49 +00:00
#include "FunctionBar.h"
#include "debug.h"
#include <assert.h>
#include <stdbool.h>
typedef enum Orientation_ {
VERTICAL,
HORIZONTAL
} Orientation;
typedef struct ScreenManager_ {
int x1;
int y1;
int x2;
int y2;
Orientation orientation;
Vector* items;
2006-06-06 20:28:42 +00:00
Vector* fuBars;
2006-03-04 18:16:49 +00:00
int itemCount;
FunctionBar* fuBar;
bool owner;
} ScreenManager;
ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, bool owner);
void ScreenManager_delete(ScreenManager* this);
extern int ScreenManager_size(ScreenManager* this);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
void ScreenManager_add(ScreenManager* this, Panel* item, FunctionBar* fuBar, int size);
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
Panel* ScreenManager_remove(ScreenManager* this, int index);
2006-03-04 18:16:49 +00:00
void ScreenManager_resize(ScreenManager* this, int x1, int y1, int x2, int y2);
2006-05-30 13:47:28 +00:00
void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey);
2006-03-04 18:16:49 +00:00
#endif