Lines Matching refs:title
291 static int show_textbox_ext(const char *title, char *text, int r, int c,
294 static void show_textbox(const char *title, const char *text, int r, int c);
295 static void show_helptext(const char *title, const char *text);
392 struct gstr title; in search_conf() local
399 title = str_new(); in search_conf()
400 str_printf( &title, "Enter (sub)string or regexp to search for " in search_conf()
406 str_get(&title), in search_conf()
415 str_free(&title); in search_conf()
458 str_free(&title); in search_conf()
752 static int show_textbox_ext(const char *title, char *text, int r, int c, int in show_textbox_ext() argument
757 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll, in show_textbox_ext()
761 static void show_textbox(const char *title, const char *text, int r, int c) in show_textbox() argument
763 show_textbox_ext(title, (char *) text, r, c, (int []) {0}, NULL, NULL, in show_textbox()
767 static void show_helptext(const char *title, const char *text) in show_helptext() argument
769 show_textbox(title, text, 0, 0); in show_helptext()