1form_win(3X) form_win(3X)
2
3
4
6 form_win - make and break form window and subwindow associations
7
9 #include <form.h>
10
11 int set_form_win(FORM *form, WINDOW *win);
12 WINDOW *form_win(const FORM *form);
13
14 int set_form_sub(FORM *form, WINDOW *sub);
15 WINDOW *form_sub(const FORM *form);
16
17 int scale_form(const FORM *form, int *rows, int *columns);
18
20 Every form has an associated pair of curses windows. The form window
21 displays any title and border associated with the window; the form sub‐
22 window displays the items of the form that are currently available for
23 selection.
24
25 The first four functions get and set those windows. It is not neces‐
26 sary to set either window; by default, the driver code uses stdscr for
27 both.
28
29 In the set_ functions, window argument of NULL is treated as though it
30 were stsdcr. A form argument of NULL is treated as a request to change
31 the system default form window or subwindow.
32
33 The function scale_form returns the minimum size required for the sub‐
34 window of form.
35
37 Routines that return pointers return NULL on error. Routines that re‐
38 turn an integer return one of the following error codes:
39
40 E_OK The routine succeeded.
41
42 E_SYSTEM_ERROR
43 System error occurred (see errno(3)).
44
45 E_BAD_ARGUMENT
46 Routine detected an incorrect or out-of-range argument.
47
48 E_POSTED
49 The form has already been posted.
50
51 E_NOT_CONNECTED
52 No items are connected to the form.
53
55 curses(3X), curs_variables(3X), form(3X).
56
58 The header file <form.h> automatically includes the header file
59 <curses.h>.
60
62 These routines emulate the System V forms library. They were not sup‐
63 ported on Version 7 or BSD versions.
64
66 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
67 Raymond.
68
69
70
71 form_win(3X)