• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/ncurses/form/

Lines Matching refs:page

51         The current page of the form is left and some new page is
200 (field->page == field->form->curpage))
1368 if (form->curpage == field->page)
1518 (field->form->curpage == field->page))
2108 | Description : Scroll a multi-line field forward a page
2124 | Description : Scroll a multi-line field forward half a page
2140 | Description : Scroll a multi-line field backward a page
2156 | Description : Scroll a multi-line field backward half a page
3286 | page. The order of fields is the one defined by the
3297 FIELD **first_on_page = &form->field[form->page[form->curpage].pmin];
3298 FIELD **last_on_page = &form->field[form->page[form->curpage].pmax];
3315 | Description : Get the first active field on the current page,
3317 | visible field on the page. If there are also none,
3318 | we return the first field on page and hope the best.
3325 FIELD **last_on_page = &form->field[form->page[form->curpage].pmax];
3331 active and visible field on the current page. We then select
3332 the first visible field on this readonly page
3337 FIELD **first = &form->field[form->page[form->curpage].pmin];
3352 /* This means, there is also no visible field on the page.
3355 page on this form.
3369 | current page. The order of fields is the one defined by
3380 FIELD **first_on_page = &form->field[form->page[form->curpage].pmin];
3381 FIELD **last_on_page = &form->field[form->page[form->curpage].pmax];
3400 | page. The order of fields is the one defined by the
3426 | current page. The order of fields is the one defined
3452 | and the same page. Cycles through the line.
3480 | and the same page.
3521 there might be no 'previous' line if the page has just one line.
3571 there might be no 'next' line if the page has just one line.
3638 | Description : Move to the next field on the current page of the form
3655 | Description : Move to the previous field on the current page of the
3673 | Description : Move to the first field on the current page of the form
3683 Next_Field_On_Page(form->field[form->page[form->curpage].pmax])));
3690 | Description : Move to the last field on the current page of the form
3701 Previous_Field_On_Page(form->field[form->page[form->curpage].pmin])));
3708 | Description : Move to the sorted next field on the current page
3726 | Description : Move to the sorted previous field on the current page
3744 | Description : Move to the sorted first field on the current page
3755 Sorted_Next_Field(form->field[form->page[form->curpage].smax])));
3762 | Description : Move to the sorted last field on the current page
3773 Sorted_Previous_Field(form->field[form->page[form->curpage].smin])));
3781 | same line and the same page. Cycles through the line.
3799 | same line and the same page. Cycles through the line.
3817 | cycles through the page. See the comments of the
3837 | cycles through the page. See the comments of the
3862 | int page,
3865 | Description : Make the given page number the current page and make
3866 | the given field the current field on the page. If
3868 | the page the current field. The routine acts only
3869 | if the requested page is not the current page.
3877 _nc_Set_Form_Page(FORM *form, int page, FIELD *field)
3881 if ((form->curpage != page))
3886 form->curpage = (short)page;
3887 last_field = field_on_page = form->field[form->page[page].smin];
3901 because this is already executed in a page navigation
3913 | Description : Calculate the page number following the current page
3914 | number. This cycles if the highest page number is
3917 | Return Values : The next page number
3929 | Description : Calculate the page number before the current page
3930 | number. This cycles if the first page number is
3933 | Return Values : The previous page number
3951 | Description : Generic behavior for changing a page. This means
3954 | hooks must be called. Because also the page is changed,
3983 | Description : Move to the next page of the form
3999 | Description : Move to the previous page of the form
4015 | Description : Move to the first page of the form
4031 | Description : Move to the last page of the form
4373 assert(form->page);
4483 int min_field = form->page[form->curpage].pmin;
4484 int max_field = form->page[form->curpage].pmax;
4578 assert(form->page);
4685 int min_field = form->page[form->curpage].pmin;
4686 int max_field = form->page[form->curpage].pmax;