X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_driver.3x.html;h=fd595bee514a46086b5bcb77d379486ec7f5f17a;hp=a66307f1d2fb82d9a4c2d1b22d5dc39dc7b54ec0;hb=761e4f0825b330e970558e82a4bd638383914429;hpb=71c0306f0824ef2b10c4c5813fb003db48f3012e diff --git a/doc/html/man/form_driver.3x.html b/doc/html/man/form_driver.3x.html index a66307f1..fd595bee 100644 --- a/doc/html/man/form_driver.3x.html +++ b/doc/html/man/form_driver.3x.html @@ -1,4 +1,4 @@ - + @@ -62,17 +62,17 @@ 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. + o 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. + o 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. + o The input is the KEY_MOUSE special key associated with + an mouse event. The form driver requests are as follows: @@ -267,47 +267,46 @@ If you click above the display region of the form: - a REQ_PREV_FIELD is generated for a single click, + a REQ_PREV_FIELD is generated for a single click, - a REQ_PREV_PAGE is generated for a double-click and + a REQ_PREV_PAGE is generated for a double-click and - a REQ_FIRST_FIELD is generated for a triple-click. + a REQ_FIRST_FIELD is generated for a triple-click. If you click below the display region of the form: - a REQ_NEXT_FIELD is generated for a single click, + a REQ_NEXT_FIELD is generated for a single click, - a REQ_NEXT_PAGE is generated for a double-click and + a REQ_NEXT_PAGE is generated for a double-click and - a REQ_LAST_FIELD is generated for a triple-click. + a REQ_LAST_FIELD is generated for a triple-click. If you click at an field inside the display area of the form: - - the form cursor is positioned to that field. + o 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. + o 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 pur- + pose of this return value to signal that an appli- + cation specific command should be executed. - - If a translation into a request was done, - form_driver returns the result of this request. + o 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 + 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. APPLICATION-DEFINED COMMANDS If the second argument is neither printable nor one of the - above pre-defined form requests, the driver assumes it is + 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- + ative to MAX_COMMAND, the maximum value of these pre- defined requests. @@ -318,7 +317,7 @@ E_OK The routine succeeded. E_BAD_ARGUMENT - Routine detected an incorrect or out-of-range argu- + Routine detected an incorrect or out-of-range argu- ment. E_BAD_STATE @@ -343,7 +342,7 @@

SEE ALSO

-       curses(3x), form(3x), wgetch(3x).
+       curses(3x), form(3x), form_variables(3x), getch(3x).
 
 
 
@@ -354,13 +353,13 @@

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.