Lines Matching full:dlg
16 struct dialog_info dlg; variable
20 dlg.title.atr = A_BOLD; in set_mono_theme()
21 dlg.button_active.atr = A_REVERSE; in set_mono_theme()
22 dlg.button_inactive.atr = A_DIM; in set_mono_theme()
23 dlg.button_key_active.atr = A_REVERSE; in set_mono_theme()
24 dlg.button_key_inactive.atr = A_BOLD; in set_mono_theme()
25 dlg.button_label_active.atr = A_REVERSE; in set_mono_theme()
26 dlg.position_indicator.atr = A_BOLD; in set_mono_theme()
27 dlg.item_selected.atr = A_REVERSE; in set_mono_theme()
28 dlg.tag.atr = A_BOLD; in set_mono_theme()
29 dlg.tag_selected.atr = A_REVERSE; in set_mono_theme()
30 dlg.tag_key.atr = A_BOLD; in set_mono_theme()
31 dlg.tag_key_selected.atr = A_REVERSE; in set_mono_theme()
32 dlg.check.atr = A_BOLD; in set_mono_theme()
33 dlg.check_selected.atr = A_REVERSE; in set_mono_theme()
34 dlg.uarrow.atr = A_BOLD; in set_mono_theme()
35 dlg.darrow.atr = A_BOLD; in set_mono_theme()
40 dlg.dialog.fg = (f); \
41 dlg.dialog.bg = (b); \
42 dlg.dialog.hl = (h); \
157 init_one_color(&dlg.screen); in init_dialog_colors()
158 init_one_color(&dlg.shadow); in init_dialog_colors()
159 init_one_color(&dlg.dialog); in init_dialog_colors()
160 init_one_color(&dlg.title); in init_dialog_colors()
161 init_one_color(&dlg.border); in init_dialog_colors()
162 init_one_color(&dlg.button_active); in init_dialog_colors()
163 init_one_color(&dlg.button_inactive); in init_dialog_colors()
164 init_one_color(&dlg.button_key_active); in init_dialog_colors()
165 init_one_color(&dlg.button_key_inactive); in init_dialog_colors()
166 init_one_color(&dlg.button_label_active); in init_dialog_colors()
167 init_one_color(&dlg.button_label_inactive); in init_dialog_colors()
168 init_one_color(&dlg.inputbox); in init_dialog_colors()
169 init_one_color(&dlg.position_indicator); in init_dialog_colors()
170 init_one_color(&dlg.menubox); in init_dialog_colors()
171 init_one_color(&dlg.menubox_border); in init_dialog_colors()
172 init_one_color(&dlg.item); in init_dialog_colors()
173 init_one_color(&dlg.item_selected); in init_dialog_colors()
174 init_one_color(&dlg.tag); in init_dialog_colors()
175 init_one_color(&dlg.tag_selected); in init_dialog_colors()
176 init_one_color(&dlg.tag_key); in init_dialog_colors()
177 init_one_color(&dlg.tag_key_selected); in init_dialog_colors()
178 init_one_color(&dlg.check); in init_dialog_colors()
179 init_one_color(&dlg.check_selected); in init_dialog_colors()
180 init_one_color(&dlg.uarrow); in init_dialog_colors()
181 init_one_color(&dlg.darrow); in init_dialog_colors()
222 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
224 if (dlg.backtitle != NULL) { in dialog_clear()
228 wattrset(stdscr, dlg.screen.atr); in dialog_clear()
229 mvwaddstr(stdscr, 0, 1, (char *)dlg.backtitle); in dialog_clear()
231 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
243 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
290 dlg.backtitle = backtitle; in init_dialog()
303 dlg.backtitle = backtitle; in set_dialog_backtitle()
308 dlg.subtitles = subtitles; in set_dialog_subtitles()
329 wattrset(dialog, dlg.title.atr); in print_title()
412 wattrset(win, selected ? dlg.button_active.atr in print_button()
413 : dlg.button_inactive.atr); in print_button()
417 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
418 : dlg.button_label_inactive.atr); in print_button()
421 wattrset(win, selected ? dlg.button_key_active.atr in print_button()
422 : dlg.button_key_inactive.atr); in print_button()
424 wattrset(win, selected ? dlg.button_label_active.atr in print_button()
425 : dlg.button_label_inactive.atr); in print_button()
427 wattrset(win, selected ? dlg.button_active.atr in print_button()
428 : dlg.button_inactive.atr); in print_button()
476 wattrset(win, dlg.shadow.atr); in draw_shadow()