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
|
#include <locale.h>
#include <stdarg.h>
#include "helpers.h"
void cursinit(void) {
setlocale(LC_ALL, "");
initscr();
cbreak();
noecho();
keypad(stdscr, TRUE);
curs_set(FALSE);
timeout(25);
refresh();
}
void cursupdate(void) {
update_panels();
doupdate();
}
PANEL *newpan(int h, int w, int y, int x) {
WINDOW *win = newwin(h, w, y, x);
scrollok(win, TRUE);
return new_panel(win);
}
void delpan(PANEL *pan) {
WINDOW *win = panel_window(pan);
del_panel(pan);
delwin(win);
}
void reset_panel(PANEL *pan, int h, int w, int y, int x) {
WINDOW *win = panel_window(pan);
wresize(win, h, w);
replace_panel(pan, win);
move_panel(pan, y, x);
}
int pprintw(PANEL *pan, const char *fmt, ...) {
va_list args;
va_start(args, fmt);
int res = vw_printw(panel_window(pan), fmt, args);
va_end(args);
return res;
}
|