Home | History | Annotate | Line # | Download | only in libform
form.h revision 1.15
      1  1.15  blymn /*	$NetBSD: form.h,v 1.15 2001/07/18 12:27:53 blymn Exp $	*/
      2   1.1  blymn 
      3   1.1  blymn /*-
      4   1.1  blymn  * Copyright (c) 1998-1999 Brett Lymn
      5   1.1  blymn  *               (blymn (at) baea.com.au, brett_lymn (at) yahoo.com.au)
      6   1.1  blymn  * All rights reserved.
      7   1.1  blymn  *
      8   1.1  blymn  * This code has been donated to The NetBSD Foundation by the Author.
      9   1.1  blymn  *
     10   1.1  blymn  * Redistribution and use in source and binary forms, with or without
     11   1.1  blymn  * modification, are permitted provided that the following conditions
     12   1.1  blymn  * are met:
     13   1.1  blymn  * 1. Redistributions of source code must retain the above copyright
     14   1.1  blymn  *    notice, this list of conditions and the following disclaimer.
     15   1.1  blymn  * 2. The name of the author may not be used to endorse or promote products
     16  1.13    wiz  *    derived from this software without specific prior written permission
     17   1.1  blymn  *
     18   1.1  blymn  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19   1.1  blymn  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20   1.1  blymn  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21   1.1  blymn  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22   1.1  blymn  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23   1.1  blymn  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24   1.1  blymn  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25   1.1  blymn  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26   1.1  blymn  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27   1.1  blymn  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28   1.1  blymn  *
     29   1.1  blymn  *
     30   1.1  blymn  */
     31   1.1  blymn 
     32   1.1  blymn #ifndef FORM_H
     33   1.1  blymn #define FORM_H 1
     34   1.1  blymn #include <sys/queue.h>
     35   1.1  blymn #include <stdarg.h>
     36   1.1  blymn #include <curses.h>
     37   1.1  blymn #include <eti.h>
     38   1.1  blymn 
     39   1.1  blymn /* Define the types of field justification that can be used. */
     40  1.10  blymn #define NO_JUSTIFICATION  (0)
     41  1.10  blymn #define JUSTIFY_RIGHT     (1)
     42  1.10  blymn #define JUSTIFY_LEFT      (2)
     43  1.10  blymn #define JUSTIFY_CENTER    (3)
     44   1.1  blymn 
     45   1.1  blymn /* Define the max and min valid justification styles for range checking */
     46   1.1  blymn #define MIN_JUST_STYLE    NO_JUSTIFICATION
     47   1.1  blymn #define MAX_JUST_STYLE    JUSTIFY_CENTER
     48   1.1  blymn 
     49   1.1  blymn /* Options for the fields */
     50   1.1  blymn typedef unsigned int Form_Options;
     51   1.1  blymn 
     52   1.6  blymn /* form options */
     53   1.6  blymn #define O_BS_OVERLOAD (0x001)
     54   1.6  blymn #define O_NL_OVERLOAD (0x002)
     55   1.6  blymn 
     56   1.6  blymn /* field options */
     57  1.10  blymn #define O_VISIBLE  (0x001)  /* Field is visible */
     58  1.10  blymn #define O_ACTIVE   (0x002)  /* Field is active in the form */
     59  1.10  blymn #define O_PUBLIC   (0x004)  /* The contents entered into the field is echoed */
     60  1.10  blymn #define O_EDIT     (0x008)  /* Can edit the field */
     61  1.10  blymn #define O_WRAP     (0x010)  /* The field contents can line wrap */
     62  1.10  blymn #define O_BLANK    (0x020)  /* Blank the field on modification */
     63  1.10  blymn #define O_AUTOSKIP (0x040)  /* Skip to next field when current is full */
     64  1.10  blymn #define O_NULLOK   (0x080)  /* Field is allowed to contain no data */
     65  1.10  blymn #define O_STATIC   (0x100)  /* Field is not dynamic */
     66  1.10  blymn #define O_PASSOK   (0x200)  /* An umodified field is OK */
     67   1.1  blymn 
     68   1.7  blymn /*
     69   1.7  blymn  * Form driver requests - be VERY careful about changing the ordering
     70   1.7  blymn  * of the requests below.  The form driver code depends on a particular
     71   1.7  blymn  * order for the requests.
     72   1.7  blymn  */
     73  1.10  blymn #define REQ_MIN_REQUEST   (KEY_MAX + 0x101) /* must equal value of the
     74  1.10  blymn                                                first request */
     75   1.1  blymn 
     76  1.10  blymn #define REQ_NEXT_PAGE     (KEY_MAX + 0x101) /* next page in form */
     77  1.10  blymn #define REQ_PREV_PAGE     (KEY_MAX + 0x102) /* previous page in form */
     78  1.10  blymn #define REQ_FIRST_PAGE    (KEY_MAX + 0x103) /* goto first page in form */
     79  1.10  blymn #define REQ_LAST_PAGE     (KEY_MAX + 0x104) /* goto last page in form */
     80  1.10  blymn 
     81  1.10  blymn #define REQ_NEXT_FIELD    (KEY_MAX + 0x105) /* move to the next field */
     82  1.10  blymn #define REQ_PREV_FIELD    (KEY_MAX + 0x106) /* move to the previous field */
     83  1.10  blymn #define REQ_FIRST_FIELD   (KEY_MAX + 0x107) /* goto the first field */
     84  1.10  blymn #define REQ_LAST_FIELD    (KEY_MAX + 0x108) /* goto the last field */
     85  1.10  blymn 
     86  1.10  blymn #define REQ_SNEXT_FIELD   (KEY_MAX + 0x109) /* move to the next field
     87  1.10  blymn                                                in sorted order */
     88  1.10  blymn #define REQ_SPREV_FIELD   (KEY_MAX + 0x10a) /* move to the prev field
     89  1.10  blymn                                                in sorted order */
     90  1.10  blymn #define REQ_SFIRST_FIELD  (KEY_MAX + 0x10b) /* move to the first
     91  1.10  blymn                                                sorted field */
     92  1.10  blymn #define REQ_SLAST_FIELD   (KEY_MAX + 0x10c) /* move to the last sorted
     93  1.10  blymn                                                field */
     94  1.10  blymn 
     95  1.10  blymn #define REQ_LEFT_FIELD    (KEY_MAX + 0x10d) /* go left one field */
     96  1.10  blymn #define REQ_RIGHT_FIELD   (KEY_MAX + 0x10e) /* go right one field */
     97  1.10  blymn #define REQ_UP_FIELD      (KEY_MAX + 0x10f) /* go up one field */
     98  1.10  blymn #define REQ_DOWN_FIELD    (KEY_MAX + 0x110) /* go down one field */
     99  1.10  blymn 
    100  1.10  blymn #define REQ_NEXT_CHAR     (KEY_MAX + 0x111) /* move to the next char
    101  1.10  blymn                                                in field */
    102  1.10  blymn #define REQ_PREV_CHAR     (KEY_MAX + 0x112) /* move to the previous
    103  1.10  blymn                                                char in field */
    104  1.10  blymn #define REQ_NEXT_LINE     (KEY_MAX + 0x113) /* go to the next line in
    105  1.10  blymn                                                the field */
    106  1.10  blymn #define REQ_PREV_LINE     (KEY_MAX + 0x114) /* go to the previous line
    107  1.10  blymn                                                in the field */
    108  1.10  blymn #define REQ_NEXT_WORD     (KEY_MAX + 0x115) /* go to the next word in
    109  1.10  blymn                                                the field */
    110  1.10  blymn #define REQ_PREV_WORD     (KEY_MAX + 0x116) /* go to the previous word
    111  1.10  blymn                                                in the field */
    112  1.10  blymn #define REQ_BEG_FIELD     (KEY_MAX + 0x117) /* go to the beginning of
    113  1.10  blymn                                                the field */
    114  1.10  blymn #define REQ_END_FIELD     (KEY_MAX + 0x118) /* go to the end of the field */
    115  1.10  blymn #define REQ_BEG_LINE      (KEY_MAX + 0x119) /* go to the beginning of
    116  1.10  blymn                                                the line */
    117  1.10  blymn #define REQ_END_LINE      (KEY_MAX + 0x11a) /* go to the end of the
    118  1.10  blymn                                                line */
    119  1.10  blymn #define REQ_LEFT_CHAR     (KEY_MAX + 0x11b) /* move left in the field */
    120  1.10  blymn #define REQ_RIGHT_CHAR    (KEY_MAX + 0x11c) /* move right in the field */
    121  1.10  blymn #define REQ_UP_CHAR       (KEY_MAX + 0x11d) /* move up in the field */
    122  1.10  blymn #define REQ_DOWN_CHAR     (KEY_MAX + 0x11e) /* move down in the field */
    123  1.10  blymn 
    124  1.10  blymn #define REQ_NEW_LINE      (KEY_MAX + 0x11f) /* insert/overlay a new line */
    125  1.10  blymn #define REQ_INS_CHAR      (KEY_MAX + 0x120) /* insert a blank char at
    126  1.10  blymn                                                the cursor */
    127  1.10  blymn #define REQ_INS_LINE      (KEY_MAX + 0x121) /* insert a blank line at
    128  1.10  blymn                                                the cursor */
    129  1.10  blymn 
    130  1.10  blymn #define REQ_DEL_CHAR      (KEY_MAX + 0x122) /* delete the current character */
    131  1.10  blymn #define REQ_DEL_PREV      (KEY_MAX + 0x123) /* delete the character
    132  1.10  blymn                                                before the current */
    133  1.10  blymn #define REQ_DEL_LINE      (KEY_MAX + 0x124) /* delete the current line */
    134  1.10  blymn #define REQ_DEL_WORD      (KEY_MAX + 0x125) /* delete the word at the cursor */
    135  1.10  blymn #define REQ_CLR_EOL       (KEY_MAX + 0x126) /* clear to the end of the line */
    136  1.10  blymn #define REQ_CLR_EOF       (KEY_MAX + 0x127) /* clear to the end of the field */
    137  1.10  blymn #define REQ_CLR_FIELD     (KEY_MAX + 0x128) /* clear the field */
    138  1.10  blymn 
    139  1.10  blymn #define REQ_OVL_MODE      (KEY_MAX + 0x129) /* overlay mode */
    140  1.10  blymn #define REQ_INS_MODE      (KEY_MAX + 0x12a) /* insert mode */
    141  1.10  blymn 
    142  1.10  blymn #define REQ_SCR_FLINE     (KEY_MAX + 0x12b) /* scroll field forward one line */
    143  1.10  blymn #define REQ_SCR_BLINE     (KEY_MAX + 0x12c) /* scroll field backward
    144  1.10  blymn                                                one line */
    145  1.10  blymn #define REQ_SCR_FPAGE     (KEY_MAX + 0x12d) /* scroll field forward one page */
    146  1.10  blymn #define REQ_SCR_BPAGE     (KEY_MAX + 0x12e) /* scroll field backward
    147  1.10  blymn                                                one page */
    148  1.10  blymn #define REQ_SCR_FHPAGE    (KEY_MAX + 0x12f) /* scroll field forward
    149  1.10  blymn                                                half a page */
    150  1.10  blymn #define REQ_SCR_BHPAGE    (KEY_MAX + 0x130) /* scroll field backward
    151  1.10  blymn                                                half a page */
    152  1.10  blymn 
    153  1.10  blymn #define REQ_SCR_FCHAR     (KEY_MAX + 0x131) /* horizontal scroll
    154  1.10  blymn                                                forward a character */
    155  1.10  blymn #define REQ_SCR_BCHAR     (KEY_MAX + 0x132) /* horizontal scroll
    156  1.10  blymn                                                backward a character */
    157  1.10  blymn #define REQ_SCR_HFLINE    (KEY_MAX + 0x133) /* horizontal scroll
    158  1.10  blymn                                                forward a line */
    159  1.10  blymn #define REQ_SCR_HBLINE    (KEY_MAX + 0x134) /* horizontal scroll
    160  1.10  blymn                                                backward a line */
    161  1.10  blymn #define REQ_SCR_HFHALF    (KEY_MAX + 0x135) /* horizontal scroll
    162  1.10  blymn                                                forward half a line */
    163  1.10  blymn #define REQ_SCR_HBHALF    (KEY_MAX + 0x136) /* horizontal scroll
    164  1.10  blymn                                                backward half a line */
    165  1.10  blymn 
    166  1.10  blymn #define REQ_VALIDATION    (KEY_MAX + 0x137) /* validate the field */
    167  1.10  blymn #define REQ_PREV_CHOICE   (KEY_MAX + 0x138) /* display previous field choice */
    168  1.10  blymn #define REQ_NEXT_CHOICE   (KEY_MAX + 0x139) /* display next field choice */
    169   1.1  blymn 
    170  1.10  blymn #define REQ_MAX_COMMAND   (KEY_MAX + 0x139) /* must match the last
    171  1.10  blymn                                                driver command */
    172   1.1  blymn 
    173   1.1  blymn typedef struct _form_string {
    174   1.1  blymn 	size_t allocated;
    175   1.1  blymn 	unsigned int length;
    176   1.1  blymn 	char *string;
    177   1.1  blymn } FORM_STR;
    178   1.1  blymn 
    179   1.1  blymn typedef struct _form_field FIELD;
    180   1.1  blymn typedef struct _form_struct FORM;
    181   1.1  blymn typedef struct _form_fieldtype FIELDTYPE;
    182   1.1  blymn 
    183   1.1  blymn typedef struct _formi_page_struct _FORMI_PAGE_START;
    184   1.1  blymn typedef struct formi_type_link_struct _FORMI_TYPE_LINK;
    185  1.12  blymn typedef struct _formi_field_lines _FORMI_FIELD_LINES;
    186  1.12  blymn 
    187   1.1  blymn 
    188   1.1  blymn typedef void (*Form_Hook)(FORM *);
    189   1.1  blymn 
    190   1.1  blymn /* definition of a field in the form */
    191   1.1  blymn struct _form_field {
    192   1.1  blymn 	unsigned int rows; /* rows in the field */
    193   1.1  blymn 	unsigned int cols; /* columns in the field */
    194   1.1  blymn 	unsigned int drows; /* dynamic rows */
    195   1.1  blymn 	unsigned int dcols; /* dynamic columns */
    196   1.1  blymn 	unsigned int max; /* maximum growth */
    197   1.1  blymn 	unsigned int form_row; /* starting row in the form subwindow */
    198   1.1  blymn 	unsigned int form_col; /* starting column in the form subwindow */
    199   1.1  blymn 	unsigned int nrows; /* number of off screen rows */
    200   1.1  blymn 	int index; /* index of this field in form fields array. */
    201   1.1  blymn 	int nbuf; /* number of buffers associated with this field */
    202   1.1  blymn 	int buf0_status; /* set to true if buffer 0 has changed. */
    203   1.1  blymn 	int justification; /* justification style of the field */
    204   1.1  blymn 	int overlay; /* set to true if field is in overlay mode */
    205   1.1  blymn 	unsigned int start_char; /* starting char in string (horiz scroll) */
    206   1.1  blymn 	unsigned int start_line; /* starting line in field (vert scroll) */
    207   1.1  blymn 	unsigned int row_count; /* number of rows actually used in field */
    208   1.1  blymn 	unsigned int cursor_xpos; /* x pos of cursor in field */
    209   1.1  blymn 	unsigned int cursor_ypos; /* y pos of cursor in field */
    210   1.1  blymn 	short page_break; /* start of a new page on the form if 1 */
    211   1.1  blymn 	short page; /* number of the page this field is on */
    212   1.1  blymn 	chtype fore; /* character attributes for the foreground */
    213   1.1  blymn 	chtype back; /* character attributes for the background */
    214   1.1  blymn 	int pad; /* padding character */
    215   1.1  blymn 	Form_Options opts; /* options for the field */
    216   1.1  blymn 	FORM *parent; /* the form this field is bound to, if any */
    217   1.1  blymn 	FIELD *up; /* field above this one */
    218   1.1  blymn 	FIELD *down; /* field below this one */
    219   1.1  blymn 	FIELD *left; /* field to the left of this one */
    220   1.1  blymn 	FIELD *right; /* field to the right of this one */
    221   1.1  blymn 	void *userptr;  /* user defined pointer. */
    222   1.1  blymn 	FIELD *link; /* used if fields are linked */
    223   1.1  blymn 	FIELDTYPE *type; /* type struct for the field */
    224   1.1  blymn 	CIRCLEQ_ENTRY(_form_field) glue; /* circle queue glue for sorting fields */
    225   1.1  blymn 	char *args; /* args for field type. */
    226  1.12  blymn 	unsigned int lines_alloced; /* number of slots allocated in lines
    227  1.12  blymn 				       array */
    228  1.12  blymn 	_FORMI_FIELD_LINES *lines; /* array of the starts and ends of lines */
    229   1.1  blymn 	FORM_STR *buffers; /* array of buffers for the field */
    230   1.1  blymn };
    231   1.1  blymn 
    232   1.1  blymn /* define the types of fields we can have */
    233   1.1  blymn extern FIELDTYPE *TYPE_ALNUM;
    234   1.1  blymn extern FIELDTYPE *TYPE_ALPHA;
    235   1.1  blymn extern FIELDTYPE *TYPE_ENUM;
    236   1.1  blymn extern FIELDTYPE *TYPE_INTEGER;
    237   1.1  blymn extern FIELDTYPE *TYPE_NUMERIC;
    238   1.1  blymn extern FIELDTYPE *TYPE_REGEXP;
    239   1.8  blymn extern FIELDTYPE *TYPE_IPV4;
    240   1.8  blymn extern FIELDTYPE *TYPE_IPV6;
    241   1.1  blymn extern FIELDTYPE *TYPE_USER;
    242   1.1  blymn 
    243   1.1  blymn /* definition of a field type. */
    244   1.1  blymn struct _form_fieldtype {
    245   1.1  blymn 	unsigned flags; /* status of the type */
    246   1.1  blymn 	unsigned refcount; /* in use if > 0 */
    247   1.1  blymn 	_FORMI_TYPE_LINK *link; /* set if this type is linked */
    248   1.1  blymn 
    249   1.1  blymn 	char * (*make_args)(va_list *); /* make the args for the type */
    250   1.1  blymn 	char * (*copy_args)(char *); /* copy the args for the type */
    251   1.1  blymn 	void (*free_args)(char *); /* free storage used by the args */
    252   1.1  blymn 	int (*field_check)(FIELD *, char *); /* field validation routine */
    253   1.1  blymn 	int (*char_check)(int, char *); /* char validation routine */
    254   1.1  blymn 	int (*next_choice)(FIELD *, char *); /* function to select next
    255   1.1  blymn 						choice */
    256   1.1  blymn 	int (*prev_choice)(FIELD *, char *); /* function to select prev
    257   1.1  blymn 						choice */
    258   1.1  blymn };
    259   1.1  blymn 
    260   1.1  blymn /*definition of a form */
    261   1.1  blymn 
    262   1.1  blymn struct _form_struct {
    263   1.1  blymn 	int in_init; /* true if performing a init or term function */
    264   1.1  blymn 	int posted; /* the form is posted */
    265   1.3  blymn 	int wrap; /* wrap from last field to first field if true */
    266   1.1  blymn 	WINDOW *win; /* window for the form */
    267   1.1  blymn 	WINDOW *subwin; /* subwindow for the form */
    268  1.10  blymn 	WINDOW *scrwin; /* this is the window to use for output */
    269   1.1  blymn 	void *userptr; /* user defined pointer */
    270   1.1  blymn 	Form_Options opts; /* options for the form */
    271   1.1  blymn 	Form_Hook form_init; /* function called when form posted and
    272   1.1  blymn 				after page change */
    273   1.1  blymn 	Form_Hook form_term; /* function called when form is unposted and
    274   1.1  blymn 				before page change */
    275   1.1  blymn 	Form_Hook field_init; /* function called when form posted and after
    276   1.1  blymn 				 current field changes */
    277   1.1  blymn 	Form_Hook field_term; /* function called when form unposted and
    278   1.1  blymn 				 before current field changes */
    279   1.1  blymn 	int field_count; /* number of fields attached */
    280   1.1  blymn 	int cur_field; /* current field */
    281   1.1  blymn 	int page; /* current page of form */
    282   1.1  blymn 	int max_page; /* number of pages in the form */
    283   1.1  blymn 	_FORMI_PAGE_START *page_starts; /* dynamic array of fields that start
    284   1.1  blymn 					   the pages */
    285   1.1  blymn 	CIRCLEQ_HEAD(_formi_sort_head, _form_field) sorted_fields; /* sorted field
    286   1.1  blymn 								list */
    287   1.1  blymn 	FIELD **fields; /* array of fields attached to this form. */
    288   1.1  blymn };
    289   1.1  blymn 
    290   1.1  blymn /* Public function prototypes. */
    291   1.1  blymn __BEGIN_DECLS
    292   1.1  blymn 
    293  1.15  blymn FIELD       *current_field(FORM *);
    294  1.15  blymn int          data_ahead(FORM *);
    295  1.15  blymn int          data_behind(FORM *);
    296  1.15  blymn FIELD       *dup_field(FIELD *, int, int);
    297  1.15  blymn int          dynamic_field_info(FIELD *, int *, int *, int *);
    298  1.15  blymn char        *field_arg(FIELD *);
    299  1.15  blymn chtype       field_back(FIELD *);
    300  1.15  blymn char        *field_buffer(FIELD *, int);
    301  1.15  blymn int          field_count(FORM *);
    302  1.15  blymn chtype       field_fore(FIELD *);
    303  1.15  blymn int          field_index(FIELD *);
    304  1.15  blymn int          field_info(FIELD *, int *, int *, int *, int *, int *, int *);
    305  1.15  blymn Form_Hook    field_init(FORM *);
    306  1.15  blymn int          field_just(FIELD *);
    307   1.1  blymn Form_Options field_opts(FIELD *);
    308  1.15  blymn int          field_opts_off(FIELD *, Form_Options);
    309  1.15  blymn int          field_opts_on(FIELD *, Form_Options);
    310  1.15  blymn int          field_pad(FIELD *);
    311  1.15  blymn int          field_status(FIELD *);
    312  1.15  blymn Form_Hook    field_term(FORM *);
    313  1.15  blymn FIELDTYPE   *field_type(FIELD *);
    314  1.15  blymn void        *field_userptr(FIELD *);
    315  1.15  blymn int          form_driver(FORM *, int);
    316  1.15  blymn FIELD      **form_fields(FORM *);
    317  1.15  blymn Form_Hook    form_init(FORM *);
    318  1.15  blymn int          form_max_page(FORM *);
    319   1.1  blymn Form_Options form_opts(FORM *);
    320  1.15  blymn int          form_opts_off(FORM *, Form_Options);
    321  1.15  blymn int          form_opts_on(FORM *, Form_Options);
    322  1.15  blymn int          form_page(FORM *);
    323  1.15  blymn WINDOW      *form_sub(FORM *);
    324  1.15  blymn Form_Hook    form_term(FORM *);
    325  1.15  blymn void        *form_userptr(FORM *);
    326  1.15  blymn WINDOW      *form_win(FORM *);
    327  1.15  blymn int          free_field(FIELD *);
    328  1.15  blymn int          free_fieldtype(FIELDTYPE *);
    329  1.15  blymn int          free_form(FORM *);
    330  1.15  blymn FIELD       *link_field(FIELD *, int, int);
    331  1.15  blymn FIELDTYPE   *link_fieldtype(FIELDTYPE *, FIELDTYPE *);
    332  1.15  blymn int          move_field(FIELD *, int, int);
    333  1.15  blymn FIELD       *new_field(int, int, int, int, int, int);
    334  1.15  blymn FIELDTYPE   *new_fieldtype(int (* field_check)(FIELD *, char *),
    335  1.15  blymn 			   int (* char_check)(int, char *));
    336  1.15  blymn FORM        *new_form(FIELD **);
    337  1.15  blymn int          new_page(FIELD *);
    338  1.15  blymn int          pos_form_cursor(FORM *);
    339  1.15  blymn int          post_form(FORM *);
    340  1.15  blymn int          scale_form(FORM *, int *, int *);
    341  1.15  blymn int          set_current_field(FORM *, FIELD *);
    342  1.15  blymn int          set_field_back(FIELD *, chtype);
    343  1.15  blymn int          set_field_buffer(FIELD *, int, char *);
    344  1.15  blymn int          set_field_fore(FIELD *, chtype);
    345  1.15  blymn int          set_field_init(FORM *, Form_Hook);
    346  1.15  blymn int          set_field_just(FIELD *, int);
    347  1.15  blymn int          set_field_opts(FIELD *, Form_Options);
    348  1.15  blymn int          set_field_pad(FIELD *, int);
    349  1.15  blymn int          set_field_status(FIELD *, int);
    350  1.15  blymn int          set_field_term(FORM *, Form_Hook);
    351  1.15  blymn int          set_field_type(FIELD *, FIELDTYPE *, ...);
    352  1.15  blymn int          set_field_userptr(FIELD *, void *);
    353  1.15  blymn int          set_fieldtype_arg(FIELDTYPE *, char *(*)(va_list *),
    354  1.15  blymn 			       char *(*)(char *),
    355  1.15  blymn 			       void (*)(char *));
    356  1.15  blymn int          set_fieldtype_choice(FIELDTYPE *, int (*)(FIELD *, char *),
    357  1.15  blymn 				  int (*)(FIELD *, char *));
    358  1.15  blymn int          set_form_fields(FORM *, FIELD **);
    359  1.15  blymn int          set_form_init(FORM *, Form_Hook);
    360  1.15  blymn int          set_form_opts(FORM *, Form_Options);
    361  1.15  blymn int          set_form_page(FORM *, int);
    362  1.15  blymn int          set_form_sub(FORM *, WINDOW *);
    363  1.15  blymn int          set_form_term(FORM *, Form_Hook);
    364  1.15  blymn int          set_form_userptr(FORM *, void *);
    365  1.15  blymn int          set_form_win(FORM *, WINDOW *);
    366  1.15  blymn int          set_max_field(FIELD *, int);
    367  1.15  blymn int          set_new_page(FIELD *, int);
    368  1.15  blymn int          unpost_form(FORM *);
    369   1.1  blymn 
    370   1.1  blymn __END_DECLS
    371   1.1  blymn 
    372   1.4    cgd #endif /* FORM_H */
    373