]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/form_page.3x
ncurses 6.1 - patch 20181117
[ncurses.git] / man / form_page.3x
1 '\" t
2 .\"***************************************************************************
3 .\" Copyright (c) 1998-2016,2018 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.15 2018/07/28 21:34:06 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 unfocus_current_field(FORM *form);
42 .br
43 int set_form_page(FORM *form, int n);
44 .br
45 int form_page(const FORM *form);
46 .br
47 int field_index(const FIELD *field);
48 .br
49 .SH DESCRIPTION
50 The function \fBset_current_field\fR sets the current field of the given
51 form; \fBcurrent_field\fR returns the current field of the given form.
52 .PP
53 The function \fBunfocus_current_field\fR removes the focus from the current
54 field of the form.
55 In such state, inquiries via \fBcurrent_field\fR shall return a NULL pointer.
56 .PP
57 The function \fBset_form_page\fR sets the form's page number (goes to page
58 \fIn\fR of the form).
59 .PP
60 The function \fBform_page\fR returns the form's current page number.
61 .PP
62 The function \fBfield_index\fR returns the index of the field in the
63 field array of the form it is connected to.
64 It returns \fBERR\fR if
65 the argument is the null pointer or the field is not connected.
66 .SH RETURN VALUE
67 Except for \fBform_page\fR, each routine returns one of the following:
68 .TP 5
69 .B E_OK
70 The routine succeeded.
71 .TP 5
72 .B E_BAD_ARGUMENT
73 Routine detected an incorrect or out-of-range argument.
74 .TP 5
75 .B E_BAD_STATE
76 Routine was called from an initialization or termination function.
77 .TP 5
78 .B E_INVALID_FIELD
79 Contents of a field are not valid.
80 .TP 5
81 .B E_REQUEST_DENIED
82 The form driver could not process the request.
83 .TP 5
84 .B E_SYSTEM_ERROR
85 System error occurred (see \fBerrno\fR).
86 .
87 .SH SEE ALSO
88 \fBcurses\fR(3X), \fBform\fR(3X).
89 .SH NOTES
90 The header file \fB<form.h>\fR automatically includes the header file
91 \fB<curses.h>\fR.
92 .SH PORTABILITY
93 These routines emulate the System V forms library.
94 They were not supported on
95 Version 7 or BSD versions.
96 .PP
97 The \fBunfocus_current_field\fP function is an ncurses extension.
98 .SH AUTHORS
99 Juergen Pfeifer.
100 Manual pages and adaptation for new curses by Eric S. Raymond.