Lines Matching refs:atr
28 dlg.screen.atr = A_NORMAL; in set_mono_theme()
29 dlg.shadow.atr = A_NORMAL; in set_mono_theme()
30 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
31 dlg.title.atr = A_BOLD; in set_mono_theme()
32 dlg.border.atr = A_NORMAL; in set_mono_theme()
33 dlg.button_active.atr = A_REVERSE; in set_mono_theme()
34 dlg.button_inactive.atr = A_DIM; in set_mono_theme()
35 dlg.button_key_active.atr = A_REVERSE; in set_mono_theme()
36 dlg.button_key_inactive.atr = A_BOLD; in set_mono_theme()
37 dlg.button_label_active.atr = A_REVERSE; in set_mono_theme()
38 dlg.button_label_inactive.atr = A_NORMAL; in set_mono_theme()
39 dlg.inputbox.atr = A_NORMAL; in set_mono_theme()
40 dlg.inputbox_border.atr = A_NORMAL; in set_mono_theme()
41 dlg.searchbox.atr = A_NORMAL; in set_mono_theme()
42 dlg.searchbox_title.atr = A_BOLD; in set_mono_theme()
43 dlg.searchbox_border.atr = A_NORMAL; in set_mono_theme()
44 dlg.position_indicator.atr = A_BOLD; in set_mono_theme()
45 dlg.menubox.atr = A_NORMAL; in set_mono_theme()
46 dlg.menubox_border.atr = A_NORMAL; in set_mono_theme()
47 dlg.item.atr = A_NORMAL; in set_mono_theme()
48 dlg.item_selected.atr = A_REVERSE; in set_mono_theme()
49 dlg.tag.atr = A_BOLD; in set_mono_theme()
50 dlg.tag_selected.atr = A_REVERSE; in set_mono_theme()
51 dlg.tag_key.atr = A_BOLD; in set_mono_theme()
52 dlg.tag_key_selected.atr = A_REVERSE; in set_mono_theme()
53 dlg.check.atr = A_BOLD; in set_mono_theme()
54 dlg.check_selected.atr = A_REVERSE; in set_mono_theme()
55 dlg.uarrow.atr = A_BOLD; in set_mono_theme()
56 dlg.darrow.atr = A_BOLD; in set_mono_theme()
181 color->atr = A_BOLD | COLOR_PAIR(pair); in init_one_color()
183 color->atr = COLOR_PAIR(pair); in init_one_color()
254 attr_clear(stdscr, LINES, COLS, dlg.screen.atr); in dialog_clear()
259 wattrset(stdscr, dlg.screen.atr); in dialog_clear()
301 wattrset(dialog, dlg.title.atr); in print_title()
381 wattrset(win, selected ? dlg.button_active.atr in print_button()
382 : dlg.button_inactive.atr); in print_button()
386 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
387 : dlg.button_label_inactive.atr); in print_button()
390 wattrset(win, selected ? dlg.button_key_active.atr in print_button()
391 : dlg.button_key_inactive.atr); in print_button()
393 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
394 : dlg.button_label_inactive.atr); in print_button()
396 wattrset(win, selected ? dlg.button_active.atr in print_button()
397 : dlg.button_inactive.atr); in print_button()
445 wattrset(win, dlg.shadow.atr); in draw_shadow()