Lines Matching refs:title
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);
395 struct gstr title;
402 title = str_new();
403 str_printf( &title, "Enter (sub)string or regexp to search for "
409 str_get(&title),
418 str_free(&title);
461 str_free(&title);
755 static int show_textbox_ext(const char *title, char *text, int r, int c, int
760 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll,
764 static void show_textbox(const char *title, const char *text, int r, int c)
766 show_textbox_ext(title, (char *) text, r, c, (int []) {0}, NULL, NULL,
770 static void show_helptext(const char *title, const char *text)
772 show_textbox(title, text, 0, 0);