Lines Matching refs:dialog
35 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
64 #define DLG_COLOR(dialog, f, b, h) \ argument
66 dlg.dialog.fg = (f); \
67 dlg.dialog.bg = (b); \
68 dlg.dialog.hl = (h); \
75 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
108 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
195 init_one_color(&dlg.dialog); in init_dialog_colors()
360 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
364 wattrset(dialog, dlg.title.atr); in print_title()
365 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' '); in print_title()
366 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
367 waddch(dialog, ' '); in print_title()