• Home
  • Raw
  • Download

Lines Matching refs:dialog

88 static void print_buttons(WINDOW * dialog, int height, int width, int selected)  in print_buttons()  argument
93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
97 wrefresh(dialog); in print_buttons()
109 WINDOW *dialog, *list; in dialog_checklist() local
135 dialog = newwin(height, width, y, x); in dialog_checklist()
136 keypad(dialog, TRUE); in dialog_checklist()
138 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
139 dlg.dialog.atr, dlg.border.atr); in dialog_checklist()
140 wattrset(dialog, dlg.border.atr); in dialog_checklist()
141 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
143 waddch(dialog, ACS_HLINE); in dialog_checklist()
144 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
145 waddch(dialog, ACS_RTEE); in dialog_checklist()
147 print_title(dialog, title, width); in dialog_checklist()
149 wattrset(dialog, dlg.dialog.atr); in dialog_checklist()
150 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
157 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
163 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2, in dialog_checklist()
186 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
189 print_buttons(dialog, height, width, 0); in dialog_checklist()
191 wnoutrefresh(dialog); in dialog_checklist()
196 key = wgetch(dialog); in dialog_checklist()
222 print_arrows(dialog, choice, item_count(), in dialog_checklist()
225 wnoutrefresh(dialog); in dialog_checklist()
250 print_arrows(dialog, choice, item_count(), in dialog_checklist()
253 wnoutrefresh(dialog); in dialog_checklist()
268 wnoutrefresh(dialog); in dialog_checklist()
288 delwin(dialog); in dialog_checklist()
296 print_buttons(dialog, height, width, button); in dialog_checklist()
297 wrefresh(dialog); in dialog_checklist()
304 key = on_key_esc(dialog); in dialog_checklist()
308 delwin(dialog); in dialog_checklist()
317 delwin(dialog); in dialog_checklist()