blob: 9799d0c0cfda6ba5976132e4f5e6602be69cf661 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301'\" t
2.\"***************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04003.\" Copyright 2018-2023,2024 Thomas E. Dickey *
4.\" Copyright 1998-2010,2012 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305.\" *
6.\" Permission is hereby granted, free of charge, to any person obtaining a *
7.\" copy of this software and associated documentation files (the *
8.\" "Software"), to deal in the Software without restriction, including *
9.\" without limitation the rights to use, copy, modify, merge, publish, *
10.\" distribute, distribute with modifications, sublicense, and/or sell *
11.\" copies of the Software, and to permit persons to whom the Software is *
12.\" furnished to do so, subject to the following conditions: *
13.\" *
14.\" The above copyright notice and this permission notice shall be included *
15.\" in all copies or substantial portions of the Software. *
16.\" *
17.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
18.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
19.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
20.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
21.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
22.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
23.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
24.\" *
25.\" Except as contained in this notice, the name(s) of the above copyright *
26.\" holders shall not be used in advertising or otherwise to promote the *
27.\" sale, use or other dealings in this Software without prior written *
28.\" authorization. *
29.\"***************************************************************************
30.\"
micky3879b9f5e72025-07-08 18:04:53 -040031.\" $Id: form_field.3x,v 1.34 2024/03/16 15:35:01 tom Exp $
32.TH form_field 3X 2024-03-16 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053033.SH NAME
micky3879b9f5e72025-07-08 18:04:53 -040034\fBform_field\fP \-
35make and break connections between fields and forms
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053036.SH SYNOPSIS
micky3879b9f5e72025-07-08 18:04:53 -040037.nf
38\fB#include <form.h>
39.PP
40\fBint set_form_fields(FORM *\fIform\fP, FIELD **\fIfields\fP);
41\fBFIELD **form_fields(const FORM *\fIform\fP);
42\fBint field_count(const FORM *\fIform\fP);
43\fBint move_field(FIELD *\fIfield\fP, int \fIfrow\fP, int \fIfcol\fP);
44.fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053045.SH DESCRIPTION
micky3879b9f5e72025-07-08 18:04:53 -040046The function \fBset_form_fields\fP changes the field pointer array of
47the given \fIform\fP. The array must be terminated by a \fBNULL\fP.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053048.PP
micky3879b9f5e72025-07-08 18:04:53 -040049The function \fBform_fields\fP returns the field array of the given form.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053050.PP
micky3879b9f5e72025-07-08 18:04:53 -040051The function \fBfield_count\fP returns the count of fields in \fIform\fP.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053052.PP
micky3879b9f5e72025-07-08 18:04:53 -040053The function \fBmove_field\fP moves the given field (which must be disconnected)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053054to a specified location on the screen.
Steve Kondikae271bc2015-11-15 02:50:53 +010055.SH RETURN VALUE
micky3879b9f5e72025-07-08 18:04:53 -040056The function \fBform_fields\fP returns a pointer (which may be \fBNULL\fP).
57It does not set \fBerrno\fP.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053058.PP
micky3879b9f5e72025-07-08 18:04:53 -040059The function \fBfield_count\fP returns \fBERR\fP if the \fIform\fP parameter
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053060is \fBNULL\fP.
61.PP
micky3879b9f5e72025-07-08 18:04:53 -040062The functions \fBset_form_fields\fP and \fBmove_field\fP return one of
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053063the following codes on error:
64.TP 5
65.B E_OK
66The routine succeeded.
67.TP 5
68.B E_BAD_ARGUMENT
69Routine detected an incorrect or out-of-range argument.
70.TP 5
71.B E_CONNECTED
72The field is already connected to a form.
73.TP 5
74.B E_POSTED
75The form is already posted.
76.TP 5
77.B E_SYSTEM_ERROR
micky3879b9f5e72025-07-08 18:04:53 -040078System error occurred (see \fBerrno\fP(3)).
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053079.SH PORTABILITY
micky3879b9f5e72025-07-08 18:04:53 -040080These routines emulate the System V forms library.
81They were not supported on
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053082Version 7 or BSD versions.
83.PP
micky3879b9f5e72025-07-08 18:04:53 -040084The SVr4 forms library documentation specifies the \fBfield_count\fP error value
85as \-1 (which is the value of \fBERR\fP).
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053086.SH AUTHORS
micky3879b9f5e72025-07-08 18:04:53 -040087Juergen Pfeifer.
88Manual pages and adaptation for new curses by Eric S. Raymond.
89.SH SEE ALSO
90\fB\%curses\fP(3X),
91\fB\%form\fP(3X)