Lines Matching refs:dialog
23 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
52 #define DLG_COLOR(dialog, f, b, h) \ argument
54 dlg.dialog.fg = (f); \
55 dlg.dialog.bg = (b); \
56 dlg.dialog.hl = (h); \
63 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
96 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
183 init_one_color(&dlg.dialog); in init_dialog_colors()
353 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
357 wattrset(dialog, dlg.title.atr); in print_title()
358 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' '); in print_title()
359 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
360 waddch(dialog, ' '); in print_title()