Lines Matching refs:atr
20 dlg.screen.atr = A_NORMAL; in set_mono_theme()
21 dlg.shadow.atr = A_NORMAL; in set_mono_theme()
22 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
23 dlg.title.atr = A_BOLD; in set_mono_theme()
24 dlg.border.atr = A_NORMAL; in set_mono_theme()
25 dlg.button_active.atr = A_REVERSE; in set_mono_theme()
26 dlg.button_inactive.atr = A_DIM; in set_mono_theme()
27 dlg.button_key_active.atr = A_REVERSE; in set_mono_theme()
28 dlg.button_key_inactive.atr = A_BOLD; in set_mono_theme()
29 dlg.button_label_active.atr = A_REVERSE; in set_mono_theme()
30 dlg.button_label_inactive.atr = A_NORMAL; in set_mono_theme()
31 dlg.inputbox.atr = A_NORMAL; in set_mono_theme()
32 dlg.inputbox_border.atr = A_NORMAL; in set_mono_theme()
33 dlg.searchbox.atr = A_NORMAL; in set_mono_theme()
34 dlg.searchbox_title.atr = A_BOLD; in set_mono_theme()
35 dlg.searchbox_border.atr = A_NORMAL; in set_mono_theme()
36 dlg.position_indicator.atr = A_BOLD; in set_mono_theme()
37 dlg.menubox.atr = A_NORMAL; in set_mono_theme()
38 dlg.menubox_border.atr = A_NORMAL; in set_mono_theme()
39 dlg.item.atr = A_NORMAL; in set_mono_theme()
40 dlg.item_selected.atr = A_REVERSE; in set_mono_theme()
41 dlg.tag.atr = A_BOLD; in set_mono_theme()
42 dlg.tag_selected.atr = A_REVERSE; in set_mono_theme()
43 dlg.tag_key.atr = A_BOLD; in set_mono_theme()
44 dlg.tag_key_selected.atr = A_REVERSE; in set_mono_theme()
45 dlg.check.atr = A_BOLD; in set_mono_theme()
46 dlg.check_selected.atr = A_REVERSE; in set_mono_theme()
47 dlg.uarrow.atr = A_BOLD; in set_mono_theme()
48 dlg.darrow.atr = A_BOLD; in set_mono_theme()
173 color->atr = A_BOLD | COLOR_PAIR(pair); in init_one_color()
175 color->atr = COLOR_PAIR(pair); in init_one_color()
249 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
255 wattrset(stdscr, dlg.screen.atr); in dialog_clear()
356 wattrset(dialog, dlg.title.atr); in print_title()
439 wattrset(win, selected ? dlg.button_active.atr in print_button()
440 : dlg.button_inactive.atr); in print_button()
444 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
445 : dlg.button_label_inactive.atr); in print_button()
448 wattrset(win, selected ? dlg.button_key_active.atr in print_button()
449 : dlg.button_key_inactive.atr); in print_button()
451 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
452 : dlg.button_label_inactive.atr); in print_button()
454 wattrset(win, selected ? dlg.button_active.atr in print_button()
455 : dlg.button_inactive.atr); in print_button()
503 wattrset(win, dlg.shadow.atr); in draw_shadow()