Lines Matching full:list
16 * Print list item
101 * Display a dialog box with a list of options that can be turned on or off
109 WINDOW *dialog, *list; in dialog_checklist() local
156 /* create new window for the list */ in dialog_checklist()
157 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
160 keypad(list, TRUE); in dialog_checklist()
162 /* draw a box around the list items */ in dialog_checklist()
180 /* Print the list */ in dialog_checklist()
183 print_item(list, i, i == choice); in dialog_checklist()
192 wnoutrefresh(list); in dialog_checklist()
210 /* Scroll list down */ in dialog_checklist()
214 print_item(list, 0, FALSE); in dialog_checklist()
215 scrollok(list, TRUE); in dialog_checklist()
216 wscrl(list, -1); in dialog_checklist()
217 scrollok(list, FALSE); in dialog_checklist()
221 print_item(list, 0, TRUE); in dialog_checklist()
226 wrefresh(list); in dialog_checklist()
235 /* Scroll list up */ in dialog_checklist()
239 print_item(list, in dialog_checklist()
242 scrollok(list, TRUE); in dialog_checklist()
243 wscrl(list, 1); in dialog_checklist()
244 scrollok(list, FALSE); in dialog_checklist()
248 print_item(list, max_choice - 1, TRUE); in dialog_checklist()
254 wrefresh(list); in dialog_checklist()
263 print_item(list, choice, FALSE); in dialog_checklist()
267 print_item(list, choice, TRUE); in dialog_checklist()
269 wrefresh(list); in dialog_checklist()
287 delwin(list); in dialog_checklist()
307 delwin(list); in dialog_checklist()
316 delwin(list); in dialog_checklist()