Lines Matching refs:dialog
101 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
106 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
107 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
109 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
110 wrefresh(dialog); in print_buttons()
122 WINDOW *dialog, *list; in dialog_checklist() local
148 dialog = newwin(height, width, y, x); in dialog_checklist()
149 keypad(dialog, TRUE); in dialog_checklist()
151 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
152 dlg.dialog.atr, dlg.border.atr); in dialog_checklist()
153 wattrset(dialog, dlg.border.atr); in dialog_checklist()
154 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
156 waddch(dialog, ACS_HLINE); in dialog_checklist()
157 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
158 waddch(dialog, ACS_RTEE); in dialog_checklist()
160 print_title(dialog, title, width); in dialog_checklist()
162 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
163 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
170 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
176 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2, in dialog_checklist()
199 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
202 print_buttons(dialog, height, width, 0); in dialog_checklist()
204 wnoutrefresh(dialog); in dialog_checklist()
209 key = wgetch(dialog); in dialog_checklist()
235 print_arrows(dialog, choice, item_count(), in dialog_checklist()
238 wnoutrefresh(dialog); in dialog_checklist()
263 print_arrows(dialog, choice, item_count(), in dialog_checklist()
266 wnoutrefresh(dialog); in dialog_checklist()
281 wnoutrefresh(dialog); in dialog_checklist()
301 delwin(dialog); in dialog_checklist()
309 print_buttons(dialog, height, width, button); in dialog_checklist()
310 wrefresh(dialog); in dialog_checklist()
317 key = on_key_esc(dialog); in dialog_checklist()
321 delwin(dialog); in dialog_checklist()
330 delwin(dialog); in dialog_checklist()