X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_field_opts.3x.html;h=5463815aa61714af8354ffc78d5bbb116f04fc68;hp=c574c2bc7e3804dae5ca3a34e98b46830b561bb3;hb=3a935d9991cdf43ebfa952073c9b555f73a3e011;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8 diff --git a/doc/html/man/form_field_opts.3x.html b/doc/html/man/form_field_opts.3x.html index c574c2bc..5463815a 100644 --- a/doc/html/man/form_field_opts.3x.html +++ b/doc/html/man/form_field_opts.3x.html @@ -2,7 +2,7 @@ @@ -54,10 +54,10 @@

SYNOPSIS

        #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);
+       int set_field_opts(FIELD *field, Field_Options opts);
+       int field_opts_on(FIELD *field, Field_Options opts);
+       int field_opts_off(FIELD *field, Field_Options opts);
+       Field_Options field_opts(const FIELD *field);
 
 
 
@@ -78,17 +78,17 @@ The following options are defined (all are on by default): O_VISIBLE - The field is displayed. If this option is off, dis- + 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. Please notice that an invisible + The field is visited during processing. If this + option is off, the field will not be reachable by + navigation keys. Please notice that an invisible field appears to be inactive also. O_PUBLIC - The field contents are displayed as data is entered. + The field contents are displayed as data is entered. O_EDIT The field can be edited. @@ -122,31 +122,37 @@ E_OK The routine succeeded. - E_SYSTEM_ERROR - System error occurred (see errno). + E_BAD_ARGUMENT + Routine detected an incorrect or out-of-range argu- + ment. E_CURRENT The field is the current field. + E_SYSTEM_ERROR + System error occurred (see errno). +

SEE ALSO

        curses(3x), form(3x).
 
 
-       NOTES  The header file <form.h> automatically includes the
-              header file <curses.h>.
+
+

NOTES

+       The header file <form.h> automatically includes the header
+       file <curses.h>.
 
 
 

PORTABILITY

-       These  routines  emulate the System V forms library.  They
+       These routines emulate the System V forms  library.   They
        were not supported on Version 7 or BSD versions.
 
 
 

AUTHORS

-       Juergen Pfeifer.  Manual  pages  and  adaptation  for  new
+       Juergen  Pfeifer.   Manual  pages  and  adaptation for new
        curses by Eric S. Raymond.