Lines Matching refs:text
75 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument
83 t = text; in ui_browser__input_window()
114 SLsmg_write_wrapped_string((unsigned char *)text, y, x, in ui_browser__input_window()
167 void __ui__info_window(const char *title, const char *text, const char *exit_msg) in __ui__info_window() argument
173 t = text; in __ui__info_window()
206 SLsmg_write_wrapped_string((unsigned char *)text, y, x, in __ui__info_window()
216 void ui__info_window(const char *title, const char *text) in ui__info_window() argument
219 __ui__info_window(title, text, NULL); in ui__info_window()
224 int ui__question_window(const char *title, const char *text, in ui__question_window() argument
228 __ui__info_window(title, text, exit_msg); in ui__question_window()
234 int ui__help_window(const char *text) in ui__help_window() argument
236 return ui__question_window("Help", text, "Press any key...", 0); in ui__help_window()