X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_driver.3x.html;h=a66307f1d2fb82d9a4c2d1b22d5dc39dc7b54ec0;hp=36a27aa81bc531a45453985b2f6eeaf47cc7ce20;hb=71c0306f0824ef2b10c4c5813fb003db48f3012e;hpb=b1f61d9f3aa244512045a6b02e759825d7049d34 diff --git a/doc/html/man/form_driver.3x.html b/doc/html/man/form_driver.3x.html index 36a27aa8..a66307f1 100644 --- a/doc/html/man/form_driver.3x.html +++ b/doc/html/man/form_driver.3x.html @@ -1,26 +1,80 @@ + + + +form_driver 3x + + + +

form_driver 3x

+
 
+form_driver(3x)                                         form_driver(3x)
+
+
+
 
 

NAME

-       form_driver - command-processing loop of the form system
+       form_driver - command-processing loop of the form system
 
 
 

SYNOPSIS

-       #include <form.h>
+       #include <form.h>
        int form_driver(FORM *form, int c);
 
 
 

DESCRIPTION

        Once a form has been posted (displayed), you should funnel
-       input events to it through form_driver.  This routine  has
-       two  major input cases; either the input is a form naviga-
-       tion request or it's a  printable  ASCII  character.   The
-       form driver requests are as follows:
+       input events to it through form_driver.  This routine  has
+       three major input cases:
+
+       -  The  input  is  a  form navigation request.  Navigation
+          request codes are constants defined in <form.h>,  which
+          are distinct from the key- and character codes returned
+          by wgetch.
+
+       -  The input is a printable character.  Printable  charac-
+          ters  (which  must  be  positive,  less  than  256) are
+          checked according to the program's locale settings.
+
+       -  The input is the KEY_MOUSE special key associated  with
+          an mouse event.
+
+       The form driver requests are as follows:
 
        REQ_NEXT_PAGE
             Move to the next page.
@@ -115,7 +169,6 @@
             Move down in the field.
 
 
-
        REQ_NEW_LINE
             Insert or overlay a new line.
 
@@ -171,6 +224,7 @@
        REQ_SCR_BHPAGE
             Scroll the field backward half a page.
 
+
        REQ_SCR_FCHAR
             Scroll the field forward a character.
 
@@ -199,96 +253,119 @@
        REQ_PREV_CHOICE
             Display previous field choice.
 
-       If the second argument is a printable ASCII character, the
+       If  the  second  argument  is  a  printable character, the
        driver places it in the current position  in  the  current
        field.   If  it is one of the forms requests listed above,
        that request is executed.
 
-       If the second argument is neither printable ASCII nor  one
-       of the above pre-defined form requests, the driver assumes
-       it  is  an  application-specific   command   and   returns
-       E_UNKNOWN_COMMAND.  Application-defined commands should be
-       defined relative to  MAX_COMMAND,  the  maximum  value  of
-       these pre-defined requests.
-
-
-
-

RETURN VALUE

-       form_driver return one of the following error codes:
+   MOUSE HANDLING
+       If the second argument is the KEY_MOUSE special  key,  the
+       associated mouse event is translated into one of the above
+       pre-defined requests.  Currently only clicks in  the  user
+       window  (e.g., inside the form display area or the decora-
+       tion window) are handled.
 
-       E_OK The routine succeeded.
+       If you click above the display region of the form:
 
-       E_SYSTEM_ERROR
-            System error occurred (see errno).
+              a REQ_PREV_FIELD is generated for a single click,
 
-       E_BAD_ARGUMENT
-            Routine  detected  an incorrect or out-of-range argu-
-            ment.
+              a REQ_PREV_PAGE is generated for a double-click and
 
-       E_BAD_STATE
-            Routine  was  called  from   an   initialization   or
-            termination function.
+              a REQ_FIRST_FIELD is generated for a triple-click.
 
-       E_NOT_POSTED
-            The form has not been posted.
+       If you click below the display region of the form:
 
-       E_UNKNOWN_COMMAND
-            The form driver code saw an unknown request code.
+              a REQ_NEXT_FIELD is generated for a single click,
 
-       E_INVALID_FIELD
-            Contents of field is invalid.
+              a REQ_NEXT_PAGE is generated for a double-click and
 
-       E_REQUEST_DENIED
-            The form driver could not process the request.
+              a REQ_LAST_FIELD is generated for a triple-click.
 
+       If you click at an field inside the display  area  of  the
+       form:
 
-
-

SEE ALSO

-       curses(3x), form(3x).
+              -  the form cursor is positioned to that field.
 
+              -  If  you double-click a field, the form cursor is
+                 positioned to that field  and  E_UNKNOWN_COMMAND
+                 is  returned.   This  return  value makes sense,
+                 because a double click  usually  means  that  an
+                 field-specific action should be returned.  It is
+                 exactly the purpose of this return value to sig-
+                 nal  that an application specific command should
+                 be executed.
 
-
-

NOTES

-       The header file <form.h> automatically includes the header
-       files <curses.h>.
+              -  If  a  translation  into  a  request  was  done,
+                 form_driver returns the result of this request.
 
+       If  you clicked outside the user window or the mouse event
+       could  not  be  translated  into   a   form   request   an
+       E_REQUEST_DENIED is returned.
 
-
-

PORTABILITY

-       These routines emulate the System V forms  library.   They
-       were not supported on Version 7 or BSD versions.
+   APPLICATION-DEFINED COMMANDS
+       If the second argument is neither printable nor one of the
+       above pre-defined form requests, the driver assumes it  is
+       an application-specific command and returns E_UNKNOWN_COM-
+       MAND.  Application-defined commands should be defined rel-
+       ative  to  MAX_COMMAND,  the  maximum  value of these pre-
+       defined requests.
 
 
 
-

AUTHORS

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

RETURN VALUE

+       form_driver returns one of the following error codes:
 
+       E_OK The routine succeeded.
 
+       E_BAD_ARGUMENT
+            Routine detected an incorrect or  out-of-range  argu-
+            ment.
 
+       E_BAD_STATE
+            Routine was called from an initialization or termina-
+            tion function.
 
+       E_NOT_POSTED
+            The form has not been posted.
 
+       E_INVALID_FIELD
+            Contents of field is invalid.
 
+       E_REQUEST_DENIED
+            The form driver could not process the request.
 
+       E_SYSTEM_ERROR
+            System error occurred (see errno).
 
+       E_UNKNOWN_COMMAND
+            The form driver code saw an unknown request code.
 
 
+
+

SEE ALSO

+       curses(3x), form(3x), wgetch(3x).
 
 
+
+

NOTES

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

PORTABILITY

+       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
+       curses by Eric S. Raymond.
 
 
 
+                                                        form_driver(3x)