6 #include "../helpline.h"
7 #include "../../util/debug.h"
9 static void gtk_helpline_pop(void)
11 if (!perf_gtk__is_active_context(pgctx
))
14 gtk_statusbar_pop(GTK_STATUSBAR(pgctx
->statbar
),
15 pgctx
->statbar_ctx_id
);
18 static void gtk_helpline_push(const char *msg
)
20 if (!perf_gtk__is_active_context(pgctx
))
23 gtk_statusbar_push(GTK_STATUSBAR(pgctx
->statbar
),
24 pgctx
->statbar_ctx_id
, msg
);
27 static int gtk_helpline_show(const char *fmt
, va_list ap
)
33 ret
= vscnprintf(ui_helpline__current
+ backlog
,
34 sizeof(ui_helpline__current
) - backlog
, fmt
, ap
);
37 /* only first line can be displayed */
38 ptr
= strchr(ui_helpline__current
, '\n');
39 if (ptr
&& (ptr
- ui_helpline__current
) <= backlog
) {
41 ui_helpline__puts(ui_helpline__current
);
48 static struct ui_helpline gtk_helpline_fns
= {
49 .pop
= gtk_helpline_pop
,
50 .push
= gtk_helpline_push
,
51 .show
= gtk_helpline_show
,
54 void perf_gtk__init_helpline(void)
56 helpline_fns
= >k_helpline_fns
;