Home | History | Annotate | Download | only in lxdialog

Lines Matching full:scroll

57  * Print the scroll indicators.
59 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
64 if (scroll > 0) {
79 if ((height < item_no) && (scroll + choice < item_no - 1)) {
115 int key = 0, button = 0, choice = 0, scroll = 0, max_choice;
182 scroll = choice - list_height + 1;
183 choice -= scroll;
188 item_set(scroll + i);
192 print_arrows(dialog, choice, item_count(), scroll,
205 item_set(i + scroll);
214 if (!scroll)
216 /* Scroll list down */
219 item_set(scroll);
225 scroll--;
226 item_set(scroll);
229 scroll, box_y, box_x + check_x + 5, list_height);
239 if (scroll + choice >= item_count() - 1)
241 /* Scroll list up */
244 item_set(scroll + max_choice - 1);
252 scroll++;
253 item_set(scroll + max_choice - 1);
257 scroll, box_y, box_x + check_x + 5, list_height);
268 item_set(scroll + choice);
272 item_set(scroll + choice);
291 item_set(scroll + choice);