6 #include "../../util/debug.h"
7 #include "../helpline.h"
9 #include "../libslang.h"
11 char ui_helpline__last_msg
[1024];
13 static void tui_helpline__pop(void)
17 static void tui_helpline__push(const char *msg
)
19 const size_t sz
= sizeof(ui_helpline__current
);
21 SLsmg_gotorc(SLtt_Screen_Rows
- 1, 0);
23 SLsmg_write_nstring((char *)msg
, SLtt_Screen_Cols
);
25 strncpy(ui_helpline__current
, msg
, sz
)[sz
- 1] = '\0';
28 static int tui_helpline__show(const char *format
, va_list ap
)
33 pthread_mutex_lock(&ui__lock
);
34 ret
= vscnprintf(ui_helpline__last_msg
+ backlog
,
35 sizeof(ui_helpline__last_msg
) - backlog
, format
, ap
);
38 if (ui_helpline__last_msg
[backlog
- 1] == '\n') {
39 ui_helpline__puts(ui_helpline__last_msg
);
43 pthread_mutex_unlock(&ui__lock
);
48 struct ui_helpline tui_helpline_fns
= {
49 .pop
= tui_helpline__pop
,
50 .push
= tui_helpline__push
,
51 .show
= tui_helpline__show
,
54 void ui_helpline__init(void)
56 helpline_fns
= &tui_helpline_fns
;
57 ui_helpline__puts(" ");