H59025 s 00122/00000/00000 d D 1.1 02/05/02 15:35:04 root 2 1 cC cF1 cK26282 cO-rw-rw-r-- e s 00000/00000/00000 d D 1.0 02/05/02 15:35:04 root 1 0 c BitKeeper file /Mastodon/Core/Build/ncurses/Ada95/html/form_field_opts.3x.html cBor@egypt.pell.portland.or.us|ChangeSet|20020502223039|07086|e73225ae258b78f8 cHegypt.pell.portland.or.us cK28104 cPAda95/html/form_field_opts.3x.html cR50671a1e2f8ec093 cV4 cX0x821 cZ-07:00 e u U f e 0 f x 0x821 t T I 2
form_field_opts - set and get field options
#include <form.h> int set_field_opts(FIELD *field, OPTIONS opts); int field_opts_on(FIELD *field, OPTIONS opts); int field_opts_off(FIELD *field, OPTIONS opts); OPTIONS field_opts(const FIELD *field);
The function set_field_opts sets all the given field's option bits (field option bits may be logically-OR'ed together). The function field_opts_on turns on the given option bits, and leaves others alone. The function field_opts_off turns off the given option bits, and leaves others alone. The function field_opts returns the field's current option bits. The following options are defined (all are on by default): O_VISIBLE The field is displayed. If this option is off, dis- play of the field is suppressed, O_ACTIVE The field is visited during processing. If this option is off, the field will not be reachable by navigation keys. O_PUBLIC The field contents are displayed as data is entered. O_EDIT The field can be edited. O_WRAP Words that don't fit on a line are wrapped to the next line. Words are blank-separated. O_BLANK The field is cleared whenever a character is entered at the first position. O_AUTOSKIP Skip to the next field when this one fills O_NULLOK Field buffers are fixed to field's original size. O_PASSOK Validate field only if modified by user.
Except for field_opts, each routine returns one of the following: E_OK The routine succeeded. E_SYSTEM_ERROR System error occurred (see errno). E_CURRENT The field is the current field.
curses(3X), form(3X). NOTES The header file <form.h> automatically includes the header file <curses.h>.
These routines emulate the System V forms library. They were not supported on Version 7 or BSD versions.
Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S. Raymond.E 2 I 1 E 1