1form_new_page(3X) form_new_page(3X)
2
3
4
6 set_new_page, new_page - form pagination functions
7
9 #include <form.h>
10
11 int set_new_page(FIELD *field, bool new_page_flag);
12 bool new_page(const FIELD *field);
13
15 The function set_new_page sets or resets a flag marking the given field
16 as the beginning of a new page on its form.
17
18 The function new_page is a predicate which tests if a given field marks
19 a page beginning on its form.
20
22 The function new_page returns TRUE or FALSE.
23
24 The function set_new_page returns one of the following:
25
26 E_OK The routine succeeded.
27
28 E_CONNECTED
29 The given field is already connected to a form.
30
32 curses(3X) and related pages whose names begin “form_” for detailed de‐
33 scriptions of the entry points.
34
36 The header file <form.h> automatically includes the header file
37 <curses.h>.
38
40 These routines emulate the System V forms library. They were not sup‐
41 ported on Version 7 or BSD versions.
42
44 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
45 Raymond.
46
47
48
49 form_new_page(3X)