Panel.h 2.33 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
/* Do not edit this file. It was automatically generated. */
2
3
4
5

#ifndef HEADER_Panel
#define HEADER_Panel
/*
Hisham Muhammad's avatar
Hisham Muhammad committed
6
htop - Panel.h
Hisham Muhammad's avatar
Hisham Muhammad committed
7
(C) 2004-2011 Hisham H. Muhammad
8
9
10
11
12
13
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

//#link curses

Hisham Muhammad's avatar
Hisham Muhammad committed
14
15
#include "Object.h"
#include "Vector.h"
16
17
18
19
20
21
22
23
24

typedef struct Panel_ Panel;

typedef enum HandlerResult_ {
   HANDLED,
   IGNORED,
   BREAK_LOOP
} HandlerResult;

25
26
#define EVENT_SETSELECTED -1

27
28
29
30
31
32
33
34
35
typedef HandlerResult(*Panel_EventHandler)(Panel*, int);

struct Panel_ {
   Object super;
   int x, y, w, h;
   WINDOW* window;
   Vector* items;
   int selected;
   int scrollV, scrollH;
36
   int scrollHAmount;
37
38
39
40
   int oldSelected;
   bool needsRedraw;
   RichString header;
   Panel_EventHandler eventHandler;
41
   char* eventHandlerBuffer;
42
43
44
};


Hisham Muhammad's avatar
Hisham Muhammad committed
45
46
47
48
49
50
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
51

52
#ifdef DEBUG
Hisham Muhammad's avatar
Hisham Muhammad committed
53
extern char* PANEL_CLASS;
54
55
56
57
#else
#define PANEL_CLASS NULL
#endif

58
59
60
61
#define KEY_CTRLN      0016            /* control-n key */
#define KEY_CTRLP      0020            /* control-p key */
#define KEY_CTRLF      0006            /* control-f key */
#define KEY_CTRLB      0002            /* control-b key */
62

63
Panel* Panel_new(int x, int y, int w, int h, char* type, bool owner, Object_Compare compare);
64
65
66
67
68
69
70

void Panel_delete(Object* cast);

void Panel_init(Panel* this, int x, int y, int w, int h, char* type, bool owner);

void Panel_done(Panel* this);

71
RichString* Panel_getHeader(Panel* this);
72

Hisham Muhammad's avatar
Hisham Muhammad committed
73
extern void Panel_setHeader(Panel* this, const char* header);
74

Hisham Muhammad's avatar
Hisham Muhammad committed
75
void Panel_setEventHandler(Panel* this, Panel_EventHandler eh);
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100

void Panel_move(Panel* this, int x, int y);

void Panel_resize(Panel* this, int w, int h);

void Panel_prune(Panel* this);

void Panel_add(Panel* this, Object* o);

void Panel_insert(Panel* this, int i, Object* o);

void Panel_set(Panel* this, int i, Object* o);

Object* Panel_get(Panel* this, int i);

Object* Panel_remove(Panel* this, int i);

Object* Panel_getSelected(Panel* this);

void Panel_moveSelectedUp(Panel* this);

void Panel_moveSelectedDown(Panel* this);

int Panel_getSelectedIndex(Panel* this);

Hisham Muhammad's avatar
Hisham Muhammad committed
101
int Panel_size(Panel* this);
102
103
104
105
106

void Panel_setSelected(Panel* this, int selected);

void Panel_draw(Panel* this, bool focus);

Hisham Muhammad's avatar
Hisham Muhammad committed
107
bool Panel_onKey(Panel* this, int key);
108

109
110
HandlerResult Panel_selectByTyping(Panel* this, int ch);

111
#endif