blob: ed0c67cb46704de6f3f8511bc35fb7842c062486 (
plain)
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
|
#ifndef UI_STATUSBAR_H
#define UI_STATUSBAR_H 1
#include <ncurses.h>
struct statusbar {
unsigned int y;
unsigned int width;
char *text;
int (*status_func)(WINDOW *, struct statusbar *, bool);
chtype attrs;
};
typedef int (*status_func)(WINDOW *, struct statusbar *, bool);
struct statusbar *
init_statusbar(unsigned int y, unsigned int width, chtype attrs, status_func cb_update);
void
free_statusbar(struct statusbar *a);
int
statusbar_cb(WINDOW *win, void *data, bool timed_out);
void
register_statusbar(struct statusbar *a);
void
set_statusbar_text(struct statusbar *a, const char *text);
int
set_statusbar_textf(struct statusbar *a, const char *format, ...);
#endif
|