Lines Matching refs:dialog
89 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
94 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons()
95 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons()
97 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
98 wrefresh(dialog); in print_buttons()
110 WINDOW *dialog, *list; in dialog_checklist() local
136 dialog = newwin(height, width, y, x); in dialog_checklist()
137 keypad(dialog, TRUE); in dialog_checklist()
139 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
140 dlg.dialog.atr, dlg.border.atr); in dialog_checklist()
141 wattrset(dialog, dlg.border.atr); in dialog_checklist()
142 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
144 waddch(dialog, ACS_HLINE); in dialog_checklist()
145 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
146 waddch(dialog, ACS_RTEE); in dialog_checklist()
148 print_title(dialog, title, width); in dialog_checklist()
150 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
151 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
158 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
164 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2, in dialog_checklist()
187 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
190 print_buttons(dialog, height, width, 0); in dialog_checklist()
192 wnoutrefresh(dialog); in dialog_checklist()
197 key = wgetch(dialog); in dialog_checklist()
223 print_arrows(dialog, choice, item_count(), in dialog_checklist()
226 wnoutrefresh(dialog); in dialog_checklist()
251 print_arrows(dialog, choice, item_count(), in dialog_checklist()
254 wnoutrefresh(dialog); in dialog_checklist()
269 wnoutrefresh(dialog); in dialog_checklist()
289 delwin(dialog); in dialog_checklist()
297 print_buttons(dialog, height, width, button); in dialog_checklist()
298 wrefresh(dialog); in dialog_checklist()
305 key = on_key_esc(dialog); in dialog_checklist()
309 delwin(dialog); in dialog_checklist()
318 delwin(dialog); in dialog_checklist()