Explicitly specify `all' as the default target(as it used to be), so as
[dragonfly.git] / lib / libncurses / man / form_win.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_win.3x,v 1.8 1999/04/10 23:36:08 tom Exp $
31 .\" $DragonFly: src/lib/libncurses/man/form_win.3,v 1.1 2005/03/12 19:13:54 eirikn Exp $
32 .TH form_win 3X ""
33 .SH NAME
34 \fBform_win\fR - make and break form window and subwindow associations
35 .SH SYNOPSIS
36 \fB#include <form.h>\fR
37 .br
38 int set_form_win(FORM *form, WINDOW *win);
39 .br
40 WINDOW *form_win(const FORM *form);
41 .br
42 int set_form_sub(FORM *form, WINDOW *sub);
43 .br
44 WINDOW *form_sub(const FORM *form);
45 .br
46 int scale_form(const FORM *form, int *rows, int *columns);
47 .br
48 .SH DESCRIPTION
49 Every form has an associated pair of \fBcurses\fR windows.  The form window
50 displays any title and border associated with the window; the form subwindow
51 displays the items of the form that are currently available for selection.
52
53 The first four functions get and set those windows.  It is not necessary to set
54 either window; by default, the driver code uses \fBstdscr\fR for both.
55
56 In the \fBset_\fR functions, window argument of \fBNULL\fR is treated as though
57 it were \fBstsdcr\fR.  A form argument of \fBNULL\fR is treated as a request
58 to change the system default form window or subwindow.
59
60 The function \fBscale_form\fR returns the minimum size required for the
61 subwindow of \fIform\fR.
62 .SH RETURN VALUE
63 Routines that return pointers return \fBNULL\fR on error.  Routines that return
64 an integer return one of the following error codes:
65 .TP 5
66 \fBE_OK\fR
67 The routine succeeded.
68 .TP 5
69 \fBE_SYSTEM_ERROR\fR
70 System error occurred (see \fBerrno\fR).
71 .TP 5
72 \fBE_BAD_ARGUMENT\fR
73 Routine detected an incorrect or out-of-range argument.
74 .TP 5
75 \fBE_POSTED\fR
76 The form has already been posted.
77 .TP 5
78 \fBE_NOT_CONNECTED\fR
79 No items are connected to the form.
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: