Lines Matching refs:dialog
22 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
51 #define DLG_COLOR(dialog, f, b, h) \ argument
53 dlg.dialog.fg = (f); \
54 dlg.dialog.bg = (b); \
55 dlg.dialog.hl = (h); \
62 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
95 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
182 init_one_color(&dlg.dialog); in init_dialog_colors()
352 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
356 wattrset(dialog, dlg.title.atr); in print_title()
357 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' '); in print_title()
358 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
359 waddch(dialog, ' '); in print_title()