Explicitly specify `all' as the default target(as it used to be), so as
[dragonfly.git] / lib / libncurses / man / form_page.3
1 '\" t
2 .\"***************************************************************************
3 .\" Copyright (c) 1998 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.8 1998/11/29 01:08:02 Rick.Ohnemus Exp $
31 .\" $DragonFly: src/lib/libncurses/man/form_page.3,v 1.1 2005/03/12 19:13:54 eirikn Exp $
32 .TH form_page 3X ""
33 .SH NAME
34 \fBform_page\fR - set and get form page number
35 .SH SYNOPSIS
36 \fB#include <form.h>\fR
37 .br
38 int set_current_field(FORM *form, FIELD *field);
39 .br
40 FIELD *current_field(const FORM *);
41 .br
42 int set_form_page(FORM *form, int n);
43 .br
44 int form_page(const FORM *form);
45 .br
46 int field_index(const FIELD *field);
47 .br
48 .SH DESCRIPTION
49 The function \fBset_current field\fR sets the current field of the given
50 form; \fBcurrent_field\fR returns the current field of the given form.
51 .PP
52 The function \fBset_form_page\fR sets the form's page number (goes to page
53 \fIn\fR of the form).
54 .PP
55 The function \fBform_page\fR returns the form's current page number.
56 .PP
57 The function \fBfield_index\fR returns the index of the field in the
58 field array of the form it is connected to. It returns \fBERR\fR if
59 the argument is the null pointer or the field is not connected.
60 .SH RETURN VALUE
61 Except for \fBform_page\fR, each routine returns one of the following:
62 .TP 5
63 \fBE_OK\fR
64 The routine succeeded.
65 .TP 5
66 \fBE_SYSTEM_ERROR\fR
67 System error occurred (see \fBerrno\fR).
68 .TP 5
69 \fBE_BAD_ARGUMENT\fR
70 Routine detected an incorrect or out-of-range argument.
71 .TP 5
72 \fBE_BAD_STATE\fR
73 Routine was called from an initialization or termination function.
74 .TP 5
75 \fBE_INVALID_FIELD\fR
76 Contents of a field are not valid.
77 .TP 5
78 \fBE_REQUEST_DENIED\fR
79 The form driver could not process the request.
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: