Lines Matching refs:dlg

29 struct dialog_info dlg;  variable
33 dlg.screen.atr = A_NORMAL; in set_mono_theme()
34 dlg.shadow.atr = A_NORMAL; in set_mono_theme()
35 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
36 dlg.title.atr = A_BOLD; in set_mono_theme()
37 dlg.border.atr = A_NORMAL; in set_mono_theme()
38 dlg.button_active.atr = A_REVERSE; in set_mono_theme()
39 dlg.button_inactive.atr = A_DIM; in set_mono_theme()
40 dlg.button_key_active.atr = A_REVERSE; in set_mono_theme()
41 dlg.button_key_inactive.atr = A_BOLD; in set_mono_theme()
42 dlg.button_label_active.atr = A_REVERSE; in set_mono_theme()
43 dlg.button_label_inactive.atr = A_NORMAL; in set_mono_theme()
44 dlg.inputbox.atr = A_NORMAL; in set_mono_theme()
45 dlg.inputbox_border.atr = A_NORMAL; in set_mono_theme()
46 dlg.searchbox.atr = A_NORMAL; in set_mono_theme()
47 dlg.searchbox_title.atr = A_BOLD; in set_mono_theme()
48 dlg.searchbox_border.atr = A_NORMAL; in set_mono_theme()
49 dlg.position_indicator.atr = A_BOLD; in set_mono_theme()
50 dlg.menubox.atr = A_NORMAL; in set_mono_theme()
51 dlg.menubox_border.atr = A_NORMAL; in set_mono_theme()
52 dlg.item.atr = A_NORMAL; in set_mono_theme()
53 dlg.item_selected.atr = A_REVERSE; in set_mono_theme()
54 dlg.tag.atr = A_BOLD; in set_mono_theme()
55 dlg.tag_selected.atr = A_REVERSE; in set_mono_theme()
56 dlg.tag_key.atr = A_BOLD; in set_mono_theme()
57 dlg.tag_key_selected.atr = A_REVERSE; in set_mono_theme()
58 dlg.check.atr = A_BOLD; in set_mono_theme()
59 dlg.check_selected.atr = A_REVERSE; in set_mono_theme()
60 dlg.uarrow.atr = A_BOLD; in set_mono_theme()
61 dlg.darrow.atr = A_BOLD; in set_mono_theme()
66 dlg.dialog.fg = (f); \
67 dlg.dialog.bg = (b); \
68 dlg.dialog.hl = (h); \
193 init_one_color(&dlg.screen); in init_dialog_colors()
194 init_one_color(&dlg.shadow); in init_dialog_colors()
195 init_one_color(&dlg.dialog); in init_dialog_colors()
196 init_one_color(&dlg.title); in init_dialog_colors()
197 init_one_color(&dlg.border); in init_dialog_colors()
198 init_one_color(&dlg.button_active); in init_dialog_colors()
199 init_one_color(&dlg.button_inactive); in init_dialog_colors()
200 init_one_color(&dlg.button_key_active); in init_dialog_colors()
201 init_one_color(&dlg.button_key_inactive); in init_dialog_colors()
202 init_one_color(&dlg.button_label_active); in init_dialog_colors()
203 init_one_color(&dlg.button_label_inactive); in init_dialog_colors()
204 init_one_color(&dlg.inputbox); in init_dialog_colors()
205 init_one_color(&dlg.inputbox_border); in init_dialog_colors()
206 init_one_color(&dlg.searchbox); in init_dialog_colors()
207 init_one_color(&dlg.searchbox_title); in init_dialog_colors()
208 init_one_color(&dlg.searchbox_border); in init_dialog_colors()
209 init_one_color(&dlg.position_indicator); in init_dialog_colors()
210 init_one_color(&dlg.menubox); in init_dialog_colors()
211 init_one_color(&dlg.menubox_border); in init_dialog_colors()
212 init_one_color(&dlg.item); in init_dialog_colors()
213 init_one_color(&dlg.item_selected); in init_dialog_colors()
214 init_one_color(&dlg.tag); in init_dialog_colors()
215 init_one_color(&dlg.tag_selected); in init_dialog_colors()
216 init_one_color(&dlg.tag_key); in init_dialog_colors()
217 init_one_color(&dlg.tag_key_selected); in init_dialog_colors()
218 init_one_color(&dlg.check); in init_dialog_colors()
219 init_one_color(&dlg.check_selected); in init_dialog_colors()
220 init_one_color(&dlg.uarrow); in init_dialog_colors()
221 init_one_color(&dlg.darrow); in init_dialog_colors()
262 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
264 if (dlg.backtitle != NULL) { in dialog_clear()
268 wattrset(stdscr, dlg.screen.atr); in dialog_clear()
269 mvwaddstr(stdscr, 0, 1, (char *)dlg.backtitle); in dialog_clear()
271 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
283 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
330 dlg.backtitle = backtitle; in init_dialog()
343 dlg.backtitle = backtitle; in set_dialog_backtitle()
348 dlg.subtitles = subtitles; in set_dialog_subtitles()
369 wattrset(dialog, dlg.title.atr); in print_title()
452 wattrset(win, selected ? dlg.button_active.atr in print_button()
453 : dlg.button_inactive.atr); in print_button()
457 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
458 : dlg.button_label_inactive.atr); in print_button()
461 wattrset(win, selected ? dlg.button_key_active.atr in print_button()
462 : dlg.button_key_inactive.atr); in print_button()
464 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
465 : dlg.button_label_inactive.atr); in print_button()
467 wattrset(win, selected ? dlg.button_active.atr in print_button()
468 : dlg.button_inactive.atr); in print_button()
516 wattrset(win, dlg.shadow.atr); in draw_shadow()