Lines Matching refs:dialog
32 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
61 #define DLG_COLOR(dialog, f, b, h) \ argument
63 dlg.dialog.fg = (f); \
64 dlg.dialog.bg = (b); \
65 dlg.dialog.hl = (h); \
72 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
105 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
192 init_one_color(&dlg.dialog); in init_dialog_colors()
312 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
316 wattrset(dialog, dlg.title.atr); in print_title()
317 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' '); in print_title()
318 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
319 waddch(dialog, ' '); in print_title()