]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-textscreen.h
ui/ncurses: Update nc-config help text for Disk R/W
[petitboot] / ui / ncurses / nc-textscreen.h
1 /*
2  *  Copyright (C) 2013 IBM Corporation
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; version 2 of the License.
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  */
17
18 #ifndef _NC_TEXTSCREEN_H
19 #define _NC_TEXTSCREEN_H
20
21 #include "types/types.h"
22 #include "nc-cui.h"
23
24 struct text_screen {
25         struct nc_scr           scr;
26         struct cui              *cui;
27         const char              **lines;
28         int                     n_lines;
29         int                     n_alloc_lines;
30         int                     scroll_y;
31         const char              *help_title;
32         const struct help_text  *help_text;
33         void                    (*on_exit)(struct cui *);
34 };
35
36 void text_screen_init(struct text_screen *screen, struct cui *cui,
37                 const char *title, void (*on_exit)(struct cui *));
38
39 struct text_screen *text_screen_from_scr(struct nc_scr *scr);
40 struct nc_scr *text_screen_scr(struct text_screen *screen);
41
42 /* content modification */
43 void text_screen_clear(struct text_screen *screen);
44 void text_screen_append_line(struct text_screen *screen,
45                 const char *fmt, ...) __attribute__((format(printf, 2, 3)));
46 void text_screen_set_text(struct text_screen *screen, const char *text);
47 void text_screen_set_help(struct text_screen *screen, const char *title,
48                 const struct help_text *text);
49
50 /* interaction */
51 void text_screen_process_key(struct nc_scr *scr, int key);
52 void text_screen_draw(struct text_screen *screen);
53
54
55 #endif /* defined _NC_TEXTSCREEN_H */