1997-05-15 12:00:00 +08:00
|
|
|
<HTML>
|
1999-10-24 12:32:42 +08:00
|
|
|
<BODY>
|
1997-05-15 12:00:00 +08:00
|
|
|
<PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
<!-- Manpage converted by man2html 3.0.1 -->
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>NAME</H2><PRE>
|
|
|
|
<B>form_win</B> - make and break form window and subwindow asso-
|
1997-05-15 12:00:00 +08:00
|
|
|
ciations
|
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>SYNOPSIS</H2><PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>#include</B> <B><form.h></B>
|
1997-05-15 12:00:00 +08:00
|
|
|
int set_form_win(FORM *form, WINDOW *win);
|
|
|
|
WINDOW *form_win(const FORM *form);
|
|
|
|
int set_form_sub(FORM *form, WINDOW *sub);
|
|
|
|
WINDOW *form_sub(const FORM *form);
|
|
|
|
int scale_form(const FORM *form, int *rows, int *columns);
|
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>DESCRIPTION</H2><PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
Every form has an associated pair of <B>curses</B> windows. The
|
1997-05-15 12:00:00 +08:00
|
|
|
form window displays any title and border associated with
|
|
|
|
the window; the form subwindow displays the items of the
|
|
|
|
form that are currently available for selection.
|
|
|
|
|
|
|
|
The first four functions get and set those windows. It is
|
|
|
|
not necessary to set either window; by default, the driver
|
2000-07-09 10:46:08 +08:00
|
|
|
code uses <B>stdscr</B> for both.
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
In the <B>set_</B> functions, window argument of <B>NULL</B> is treated
|
|
|
|
as though it were <B>stsdcr</B>. A form argument of <B>NULL</B> is
|
1997-05-15 12:00:00 +08:00
|
|
|
treated as a request to change the system default form
|
|
|
|
window or subwindow.
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
The function <B>scale_form</B> returns the minimum size required
|
|
|
|
for the subwindow of <I>form</I>.
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>RETURN VALUE</H2><PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
Routines that return pointers return <B>NULL</B> on error. Rou-
|
1997-05-15 12:00:00 +08:00
|
|
|
tines that return an integer return one of the following
|
|
|
|
error codes:
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>E_OK</B> The routine succeeded.
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>E_SYSTEM_ERROR</B>
|
|
|
|
System error occurred (see <B>errno</B>).
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>E_BAD_ARGUMENT</B>
|
1997-05-15 12:00:00 +08:00
|
|
|
Routine detected an incorrect or out-of-range argu-
|
|
|
|
ment.
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>E_POSTED</B>
|
1997-05-15 12:00:00 +08:00
|
|
|
The form has already been posted.
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
<B>E_NOT_CONNECTED</B>
|
1997-05-15 12:00:00 +08:00
|
|
|
No items are connected to the form.
|
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>SEE ALSO</H2><PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
<B><A HREF="ncurses.3x.html">curses(3x)</A></B>, <B><A HREF="form.3x.html">form(3x)</A></B>.
|
|
|
|
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>NOTES</H2><PRE>
|
|
|
|
The header file <B><form.h></B> automatically includes the header
|
|
|
|
file <B><curses.h></B>.
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>PORTABILITY</H2><PRE>
|
|
|
|
These routines emulate the System V forms library. They
|
|
|
|
were not supported on Version 7 or BSD versions.
|
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
|
|
|
<H2>AUTHORS</H2><PRE>
|
|
|
|
Juergen Pfeifer. Manual pages and adaptation for new
|
|
|
|
curses by Eric S. Raymond.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
</PRE>
|
2000-07-09 10:46:08 +08:00
|
|
|
<HR>
|
|
|
|
<ADDRESS>
|
|
|
|
Man(1) output converted with
|
|
|
|
<a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
|
|
|
|
</ADDRESS>
|
1997-05-15 12:00:00 +08:00
|
|
|
</BODY>
|
|
|
|
</HTML>
|