Lines Matching full:list
29 * Print list item
114 * Display a dialog box with a list of options that can be turned on or off
122 WINDOW *dialog, *list; in dialog_checklist() local
169 /* create new window for the list */ in dialog_checklist()
170 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
173 keypad(list, TRUE); in dialog_checklist()
175 /* draw a box around the list items */ in dialog_checklist()
193 /* Print the list */ in dialog_checklist()
196 print_item(list, i, i == choice); in dialog_checklist()
205 wnoutrefresh(list); in dialog_checklist()
223 /* Scroll list down */ in dialog_checklist()
227 print_item(list, 0, FALSE); in dialog_checklist()
228 scrollok(list, TRUE); in dialog_checklist()
229 wscrl(list, -1); in dialog_checklist()
230 scrollok(list, FALSE); in dialog_checklist()
234 print_item(list, 0, TRUE); in dialog_checklist()
239 wrefresh(list); in dialog_checklist()
248 /* Scroll list up */ in dialog_checklist()
252 print_item(list, in dialog_checklist()
255 scrollok(list, TRUE); in dialog_checklist()
256 wscrl(list, 1); in dialog_checklist()
257 scrollok(list, FALSE); in dialog_checklist()
261 print_item(list, max_choice - 1, TRUE); in dialog_checklist()
267 wrefresh(list); in dialog_checklist()
276 print_item(list, choice, FALSE); in dialog_checklist()
280 print_item(list, choice, TRUE); in dialog_checklist()
282 wrefresh(list); in dialog_checklist()
300 delwin(list); in dialog_checklist()
320 delwin(list); in dialog_checklist()
329 delwin(list); in dialog_checklist()