aboutsummaryrefslogtreecommitdiffstats
path: root/ListBox.h
blob: e89ec061c4fcb6a17c774ab67d737aeae2e5c978 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
101
/* Do not edit this file. It was automatically genarated. */

#ifndef HEADER_ListBox
#define HEADER_ListBox
/*
htop
(C) 2004-2006 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "Object.h"
#include "TypedVector.h"
#include "CRT.h"
#include "RichString.h"

#include <math.h>
#include <sys/param.h>
#include <stdbool.h>

#include "debug.h"
#include <assert.h>

#include <curses.h>
//#link curses


typedef struct ListBox_ ListBox;

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

typedef HandlerResult(*ListBox_EventHandler)(ListBox*, int);

struct ListBox_ {
   Object super;
   int x, y, w, h;
   WINDOW* window;
   TypedVector* items;
   int selected;
   int scrollV, scrollH;
   int oldSelected;
   bool needsRedraw;
   RichString header;
   ListBox_EventHandler eventHandler;
};

extern char* LISTBOX_CLASS;



ListBox* ListBox_new(int x, int y, int w, int h, char* type, bool owner);

void ListBox_delete(Object* cast);

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

void ListBox_done(ListBox* this);

void ListBox_setEventHandler(ListBox* this, ListBox_EventHandler eh);

void ListBox_setRichHeader(ListBox* this, RichString header);

void ListBox_setHeader(ListBox* this, char* header);

void ListBox_move(ListBox* this, int x, int y);

void ListBox_resize(ListBox* this, int w, int h);

void ListBox_prune(ListBox* this);

void ListBox_add(ListBox* this, Object* o);

void ListBox_insert(ListBox* this, int i, Object* o);

void ListBox_set(ListBox* this, int i, Object* o);

Object* ListBox_get(ListBox* this, int i);

Object* ListBox_remove(ListBox* this, int i);

Object* ListBox_getSelected(ListBox* this);

void ListBox_moveSelectedUp(ListBox* this);

void ListBox_moveSelectedDown(ListBox* this);

int ListBox_getSelectedIndex(ListBox* this);

int ListBox_getSize(ListBox* this);

void ListBox_setSelected(ListBox* this, int selected);

void ListBox_draw(ListBox* this, bool focus);

void ListBox_onKey(ListBox* this, int key);

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy