From 649de37c20f56749ff02c751656787bf2c3d0024 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Fri, 13 Dec 2013 15:15:06 +0800 Subject: ui/ncurses: Add help facility to text screens Signed-off-by: Jeremy Kerr --- ui/ncurses/nc-textscreen.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ui/ncurses/nc-textscreen.c') diff --git a/ui/ncurses/nc-textscreen.c b/ui/ncurses/nc-textscreen.c index 891c8a1..d5b894e 100644 --- a/ui/ncurses/nc-textscreen.c +++ b/ui/ncurses/nc-textscreen.c @@ -150,6 +150,11 @@ void text_screen_process_key(struct nc_scr *scr, int key) case KEY_UP: text_screen_scroll(screen, key); break; + case 'h': + if (screen->help_text) + cui_show_help(screen->cui, screen->help_title, + screen->help_text); + break; default: break; } @@ -166,6 +171,14 @@ struct nc_scr *text_screen_scr(struct text_screen *screen) return &screen->scr; } +void text_screen_set_help(struct text_screen *screen, const char *title, + const char *text) +{ + screen->help_title = title; + screen->help_text = text; + screen->scr.frame.help = "x=exit h=help"; +} + static int text_screen_post(struct nc_scr *scr) { nc_scr_frame_draw(scr); -- cgit v1.2.1