]> git.ozlabs.org Git - petitboot/blobdiff - ui/ncurses/nc-textscreen.h
ui/ncurses: Adjust position of add-url field to fit translated label
[petitboot] / ui / ncurses / nc-textscreen.h
index 92c6bfe619da5b1cdf0a804ccfcc57342bc0e1f7..25107cb476caadf32fcf97d311960064ae0cace4 100644 (file)
 #include "nc-cui.h"
 
 struct text_screen {
-       struct nc_scr   scr;
-       struct cui      *cui;
-       char            **lines;
-       int             n_lines;
-       int             n_alloc_lines;
-       int             scroll_y;
-       void            (*on_exit)(struct cui *);
+       struct nc_scr           scr;
+       struct cui              *cui;
+       const char              **lines;
+       int                     n_lines;
+       int                     n_alloc_lines;
+       int                     scroll_y;
+       const char              *help_title;
+       const struct help_text  *help_text;
+       void                    (*on_exit)(struct cui *);
 };
 
 void text_screen_init(struct text_screen *screen, struct cui *cui,
@@ -41,6 +43,9 @@ struct nc_scr *text_screen_scr(struct text_screen *screen);
 void text_screen_clear(struct text_screen *screen);
 void text_screen_append_line(struct text_screen *screen,
                const char *fmt, ...) __attribute__((format(printf, 2, 3)));
+void text_screen_set_text(struct text_screen *screen, const char *text);
+void text_screen_set_help(struct text_screen *screen, const char *title,
+               const struct help_text *text);
 
 /* interaction */
 void text_screen_process_key(struct nc_scr *scr, int key);