Lines Matching refs:dialog
95 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
100 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
101 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
103 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
104 wrefresh(dialog); in print_buttons()
116 WINDOW *dialog, *list; in dialog_checklist() local
142 dialog = newwin(height, width, y, x); in dialog_checklist()
143 keypad(dialog, TRUE); in dialog_checklist()
145 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
146 dlg.dialog.atr, dlg.border.atr); in dialog_checklist()
147 wattrset(dialog, dlg.border.atr); in dialog_checklist()
148 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
150 waddch(dialog, ACS_HLINE); in dialog_checklist()
151 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
152 waddch(dialog, ACS_RTEE); in dialog_checklist()
154 print_title(dialog, title, width); in dialog_checklist()
156 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
157 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
164 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
170 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2, in dialog_checklist()
192 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
195 print_buttons(dialog, height, width, 0); in dialog_checklist()
197 wnoutrefresh(dialog); in dialog_checklist()
202 key = wgetch(dialog); in dialog_checklist()
228 print_arrows(dialog, choice, item_count(), in dialog_checklist()
231 wnoutrefresh(dialog); in dialog_checklist()
256 print_arrows(dialog, choice, item_count(), in dialog_checklist()
259 wnoutrefresh(dialog); in dialog_checklist()
274 wnoutrefresh(dialog); in dialog_checklist()
294 delwin(dialog); in dialog_checklist()
302 print_buttons(dialog, height, width, button); in dialog_checklist()
303 wrefresh(dialog); in dialog_checklist()
310 key = on_key_esc(dialog); in dialog_checklist()
314 delwin(dialog); in dialog_checklist()
323 delwin(dialog); in dialog_checklist()