Lines Matching full:title
20 dlg.title.atr = A_BOLD; in set_mono_theme()
50 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme()
79 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme()
114 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme()
160 init_one_color(&dlg.title); in init_dialog_colors()
223 /* Display background title if it exists ... - SLH */ in dialog_clear()
322 /* Print the title of the dialog. Center the title and truncate
325 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
327 if (title) { in print_title()
328 int tlen = MIN(width - 2, strlen(title)); in print_title()
329 wattrset(dialog, dlg.title.atr); in print_title()
331 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()