]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-textscreen.h
ui/ncurses: Add text_screen_set_text()
[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         void            (*on_exit)(struct cui *);
32 };
33
34 void text_screen_init(struct text_screen *screen, struct cui *cui,
35                 const char *title, void (*on_exit)(struct cui *));
36
37 struct text_screen *text_screen_from_scr(struct nc_scr *scr);
38 struct nc_scr *text_screen_scr(struct text_screen *screen);
39
40 /* content modification */
41 void text_screen_clear(struct text_screen *screen);
42 void text_screen_append_line(struct text_screen *screen,
43                 const char *fmt, ...) __attribute__((format(printf, 2, 3)));
44 void text_screen_set_text(struct text_screen *screen, const char *text);
45
46 /* interaction */
47 void text_screen_process_key(struct nc_scr *scr, int key);
48 void text_screen_draw(struct text_screen *screen);
49
50
51 #endif /* defined _NC_TEXTSCREEN_H */