Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | '\" t |
| 2 | .\"*************************************************************************** |
| 3 | .\" Copyright (c) 1998,2006 Free Software Foundation, Inc. * |
| 4 | .\" * |
| 5 | .\" Permission is hereby granted, free of charge, to any person obtaining a * |
| 6 | .\" copy of this software and associated documentation files (the * |
| 7 | .\" "Software"), to deal in the Software without restriction, including * |
| 8 | .\" without limitation the rights to use, copy, modify, merge, publish, * |
| 9 | .\" distribute, distribute with modifications, sublicense, and/or sell * |
| 10 | .\" copies of the Software, and to permit persons to whom the Software is * |
| 11 | .\" furnished to do so, subject to the following conditions: * |
| 12 | .\" * |
| 13 | .\" The above copyright notice and this permission notice shall be included * |
| 14 | .\" in all copies or substantial portions of the Software. * |
| 15 | .\" * |
| 16 | .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * |
| 17 | .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * |
| 18 | .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * |
| 19 | .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * |
| 20 | .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * |
| 21 | .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * |
| 22 | .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. * |
| 23 | .\" * |
| 24 | .\" Except as contained in this notice, the name(s) of the above copyright * |
| 25 | .\" holders shall not be used in advertising or otherwise to promote the * |
| 26 | .\" sale, use or other dealings in this Software without prior written * |
| 27 | .\" authorization. * |
| 28 | .\"*************************************************************************** |
| 29 | .\" |
| 30 | .\" $Id: form_page.3x,v 1.10 2006/11/04 18:52:32 tom Exp $ |
| 31 | .TH form_page 3X "" |
| 32 | .SH NAME |
| 33 | \fBform_page\fR - set and get form page number |
| 34 | .SH SYNOPSIS |
| 35 | \fB#include <form.h>\fR |
| 36 | .br |
| 37 | int set_current_field(FORM *form, FIELD *field); |
| 38 | .br |
| 39 | FIELD *current_field(const FORM *); |
| 40 | .br |
| 41 | int set_form_page(FORM *form, int n); |
| 42 | .br |
| 43 | int form_page(const FORM *form); |
| 44 | .br |
| 45 | int field_index(const FIELD *field); |
| 46 | .br |
| 47 | .SH DESCRIPTION |
| 48 | The function \fBset_current field\fR sets the current field of the given |
| 49 | form; \fBcurrent_field\fR returns the current field of the given form. |
| 50 | .PP |
| 51 | The function \fBset_form_page\fR sets the form's page number (goes to page |
| 52 | \fIn\fR of the form). |
| 53 | .PP |
| 54 | The function \fBform_page\fR returns the form's current page number. |
| 55 | .PP |
| 56 | The function \fBfield_index\fR returns the index of the field in the |
| 57 | field array of the form it is connected to. It returns \fBERR\fR if |
| 58 | the argument is the null pointer or the field is not connected. |
| 59 | .SH RETURN VALUE |
| 60 | Except for \fBform_page\fR, each routine returns one of the following: |
| 61 | .TP 5 |
| 62 | .B E_OK |
| 63 | The routine succeeded. |
| 64 | .TP 5 |
| 65 | .B E_BAD_ARGUMENT |
| 66 | Routine detected an incorrect or out-of-range argument. |
| 67 | .TP 5 |
| 68 | .B E_BAD_STATE |
| 69 | Routine was called from an initialization or termination function. |
| 70 | .TP 5 |
| 71 | .B E_INVALID_FIELD |
| 72 | Contents of a field are not valid. |
| 73 | .TP 5 |
| 74 | .B E_REQUEST_DENIED |
| 75 | The form driver could not process the request. |
| 76 | .TP 5 |
| 77 | .B E_SYSTEM_ERROR |
| 78 | System error occurred (see \fBerrno\fR). |
| 79 | . |
| 80 | .SH SEE ALSO |
| 81 | \fBcurses\fR(3X), \fBform\fR(3X). |
| 82 | .SH NOTES |
| 83 | The header file \fB<form.h>\fR automatically includes the header file |
| 84 | \fB<curses.h>\fR. |
| 85 | .SH PORTABILITY |
| 86 | These routines emulate the System V forms library. They were not supported on |
| 87 | Version 7 or BSD versions. |
| 88 | .SH AUTHORS |
| 89 | Juergen Pfeifer. Manual pages and adaptation for new curses by Eric |
| 90 | S. Raymond. |
| 91 | .\"# |
| 92 | .\"# The following sets edit modes for GNU EMACS |
| 93 | .\"# Local Variables: |
| 94 | .\"# mode:nroff |
| 95 | .\"# fill-column:79 |
| 96 | .\"# End: |