| Main index | Section 3 | Options |
#include <form.h>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);
The first four functions get and set those windows. It is not necessary to set either window; by default, the driver code uses stdscr for both.
In the set_ functions, window argument of NULL is treated as though it were stsdcr. A form argument of NULL is treated as a request to change the system default form window or subwindow.
The function scale_form returns the minimum size required for the subwindow of form.
| E_OK | The routine succeeded. |
| E_SYSTEM_ERROR | |
| System error occurred (see errno(3)). | |
| E_BAD_ARGUMENT | |
| Routine detected an incorrect or out-of-range argument. | |
| E_POSTED | |
| The form has already been posted. | |
| E_NOT_CONNECTED | |
| No items are connected to the form. | |
| 2024-03-16 | form_win (3X) | ncurses 6.5 |
| Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
| “ | Never write it in C if you can do it in `awk'; Never do it in `awk' if `sed' can handle it; Never use `sed' when `tr' can do the job; Never invoke `tr' when `cat' is sufficient; Avoid using `cat' whenever possible. |
” |
| — Taylor's Laws of Programming | ||