Lines Matching refs:text
289 static int show_textbox_ext(const char *title, char *text, int r, int c,
292 static void show_textbox(const char *title, const char *text, int r, int c);
293 static void show_helptext(const char *title, const char *text);
303 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename()
315 const char *text; member
332 if (sp->text) { in set_subtitle()
339 pos->text = sp->text; in set_subtitle()
429 stpart.text = str_get(&sttext); in search_conf()
654 stpart.text = menu_get_prompt(menu); in conf()
656 stpart.text = NULL; in conf()
755 static int show_textbox_ext(const char *title, char *text, int r, int c, int in show_textbox_ext() argument
760 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll, in show_textbox_ext()
764 static void show_textbox(const char *title, const char *text, int r, int c) in show_textbox() argument
766 show_textbox_ext(title, (char *) text, r, c, (int []) {0}, NULL, NULL, in show_textbox()
770 static void show_helptext(const char *title, const char *text) in show_helptext() argument
772 show_textbox(title, text, 0, 0); in show_helptext()