]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/form_driver.3x
75c0a7b754e7891104252bcb96ece32df0c429ba
[ncurses.git] / man / form_driver.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998-2016,2017 Free Software Foundation, Inc.              *
3 .\"                                                                          *
4 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
5 .\" copy of this software and associated documentation files (the            *
6 .\" "Software"), to deal in the Software without restriction, including      *
7 .\" without limitation the rights to use, copy, modify, merge, publish,      *
8 .\" distribute, distribute with modifications, sublicense, and/or sell       *
9 .\" copies of the Software, and to permit persons to whom the Software is    *
10 .\" furnished to do so, subject to the following conditions:                 *
11 .\"                                                                          *
12 .\" The above copyright notice and this permission notice shall be included  *
13 .\" in all copies or substantial portions of the Software.                   *
14 .\"                                                                          *
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 .\"                                                                          *
23 .\" Except as contained in this notice, the name(s) of the above copyright   *
24 .\" holders shall not be used in advertising or otherwise to promote the     *
25 .\" sale, use or other dealings in this Software without prior written       *
26 .\" authorization.                                                           *
27 .\"***************************************************************************
28 .\"
29 .\" $Id: form_driver.3x,v 1.27 2017/06/23 22:56:39 tom Exp $
30 .TH form_driver 3X ""
31 .de bP
32 .IP \(bu 4
33 ..
34 .SH NAME
35 \fBform_driver\fR,
36 \fBform_driver_w\fR \- command-processing loop of the form system
37 .SH SYNOPSIS
38 \fB#include <form.h>\fR
39 .br
40 \fBint form_driver(FORM *\fP\fIform\fP\fB, int \fP\fIc\fP\fB);\fP
41 .br
42 \fBint form_driver_w(FORM *\fP\fIform\fP\fB, int \fP\fIc\fP\fB, wchar_t \fP\fIwch\fP\fB);\fP
43 .br
44 .SH DESCRIPTION
45 .SS form_driver
46 Once a form has been posted (displayed), you should funnel input events to it
47 through \fBform_driver\fR.  This routine has three major input cases:
48 .bP
49 The input is a form navigation request.
50 Navigation request codes are constants defined in \fB<form.h>\fP,
51 which are distinct from the key- and character codes returned by \fBwgetch\fP(3X).
52 .bP
53 The input is a printable character.
54 Printable characters (which must be positive, less than 256) are
55 checked according to the program's locale settings.
56 .bP
57 The input is the KEY_MOUSE special key associated with an mouse event.
58 .SS form_driver_w
59 .PP
60 This extension simplifies the use of the forms library using wide characters.
61 The input is either a key code (a request) or a wide character
62 returned by \fBget_wch\fP(3X).
63 The type must be passed as well,
64 to enable the library to determine whether the parameter
65 is a wide character or a request.
66 .SS Form-driver requests
67 .PP
68 The form driver requests are as follows:
69 .TS
70 l l
71 _ _
72 l l.
73 \fIName\fR      \fIDescription\fR
74 REQ_BEG_FIELD   Move to the beginning of the field.
75 REQ_BEG_LINE    Move to the beginning of the line.
76 REQ_CLR_EOF     Clear to end of field from cursor.
77 REQ_CLR_EOL     Clear to end of line from cursor.
78 REQ_CLR_FIELD   Clear the entire field.
79 REQ_DEL_CHAR    Delete character at the cursor.
80 REQ_DEL_LINE    Delete line at the cursor.
81 REQ_DEL_PREV    Delete character before the cursor.
82 REQ_DEL_WORD    Delete blank-delimited word at the cursor.
83 REQ_DOWN_CHAR   Move down in the field.
84 REQ_DOWN_FIELD  Move down to a field.
85 REQ_END_FIELD   Move to the end of the field.
86 REQ_END_LINE    Move to the end of the line.
87 REQ_FIRST_FIELD Move to the first field.
88 REQ_FIRST_PAGE  Move to the first page.
89 REQ_INS_CHAR    Insert a blank at the cursor.
90 REQ_INS_LINE    Insert a blank line at the cursor.
91 REQ_INS_MODE    Enter insert mode.
92 REQ_LAST_FIELD  Move to the last field.
93 REQ_LAST_PAGE   Move to the last field.
94 REQ_LEFT_CHAR   Move left in the field.
95 REQ_LEFT_FIELD  Move left to a field.
96 REQ_NEW_LINE    Insert or overlay a new line.
97 REQ_NEXT_CHAR   Move to the next char.
98 REQ_NEXT_CHOICE Display next field choice.
99 REQ_NEXT_FIELD  Move to the next field.
100 REQ_NEXT_LINE   Move to the next line.
101 REQ_NEXT_PAGE   Move to the next page.
102 REQ_NEXT_PAGE   Move to the next page.
103 REQ_NEXT_WORD   Move to the next word.
104 REQ_OVL_MODE    Enter overlay mode.
105 REQ_PREV_CHAR   Move to the previous char.
106 REQ_PREV_CHOICE Display previous field choice.
107 REQ_PREV_FIELD  Move to the previous field.
108 REQ_PREV_LINE   Move to the previous line.
109 REQ_PREV_PAGE   Move to the previous page.
110 REQ_PREV_WORD   Move to the previous word.
111 REQ_RIGHT_CHAR  Move right in the field.
112 REQ_RIGHT_FIELD Move right to a field.
113 REQ_SCR_BCHAR   Scroll the field backward a character.
114 REQ_SCR_BHPAGE  Scroll the field backward half a page.
115 REQ_SCR_BLINE   Scroll the field backward a line.
116 REQ_SCR_BPAGE   Scroll the field backward a page.
117 REQ_SCR_FCHAR   Scroll the field forward a character.
118 REQ_SCR_FHPAGE  Scroll the field forward half a page.
119 REQ_SCR_FLINE   Scroll the field forward a line.
120 REQ_SCR_FPAGE   Scroll the field forward a page.
121 REQ_SCR_HBHALF  Horizontal scroll the field backward half a line.
122 REQ_SCR_HBLINE  Horizontal scroll the field backward a line.
123 REQ_SCR_HFHALF  Horizontal scroll the field forward half a line.
124 REQ_SCR_HFLINE  Horizontal scroll the field forward a line.
125 REQ_SFIRST_FIELD        Move to the sorted first field.
126 REQ_SLAST_FIELD Move to the sorted last field.
127 REQ_SNEXT_FIELD Move to the sorted next field.
128 REQ_SPREV_FIELD Move to the sorted previous field.
129 REQ_UP_CHAR     Move up in the field.
130 REQ_UP_FIELD    Move up to a field.
131 REQ_VALIDATION  Validate field.
132 .TE
133 .PP
134 If the second argument is a printable character, the driver places it
135 in the current position in the current field.  If it is one of the forms
136 requests listed above, that request is executed.
137 .SS Field validation
138 The form library makes updates to the window associated with form fields rather than
139 directly to the field buffers.
140 .PP
141 The form driver provides low-level control over updates to the form fields.
142 The form driver also provides for validating modified fields to ensure that the contents
143 meet whatever constraints an application may attach using \fBset_field_type\fP.
144 .PP
145 .PP
146 You can validate a field without making any changes to it using
147 \fBREQ_VALIDATION\fP.
148 The form driver also validates a field in these cases:
149 .bP
150 a call to \fBset_current_field\fP attempts to move to a different field.
151 .bP
152 a call to \fBset_current_page\fP attempts to move to a different page of the form.
153 .bP
154 a request attempts to move to a different field.
155 .bP
156 a request attempts to move to a different page of the form.
157 .PP
158 In each case, the move fails if the field is invalid.
159 .PP
160 If the modified field is valid, the form driver copies the modified
161 data from the window associated with the field
162 to the field buffer.
163 .SS Mouse handling
164 .PP
165 If the second argument is the KEY_MOUSE special key, the associated
166 mouse event is translated into one of the above pre-defined requests.
167 Currently only clicks in the user window (e.g., inside the form display
168 area or the decoration window) are handled.
169 .PP
170 If you click above the display region of the form:
171 .RS 3
172 .TP
173 a REQ_PREV_FIELD is generated for a single click,
174 .TP
175 a REQ_PREV_PAGE is generated for a double-click and
176 .TP
177 a REQ_FIRST_FIELD is generated for a triple-click.
178 .RE
179 .PP
180 If you click below the display region of the form:
181 .RS 3
182 .TP
183 a REQ_NEXT_FIELD is generated for a single click,
184 .TP
185 a REQ_NEXT_PAGE is generated for a double-click and
186 .TP
187 a REQ_LAST_FIELD is generated for a triple-click.
188 .RE
189 .PP
190 If you click at an field inside the display area of the form:
191 .RS 3
192 .bP
193 the form cursor is positioned to that field.
194 .bP
195 If you double-click a field,
196 the form cursor is positioned to that field
197 and \fBE_UNKNOWN_COMMAND\fR is returned.
198 This return value makes sense,
199 because a double click usually means that an field-specific action should
200 be returned.
201 It is exactly the purpose of this return value to signal that an
202 application specific command should be executed.
203 .bP
204 If a translation
205 into a request was done, \fBform_driver\fR returns the result of this request.
206 .RE
207 .PP
208 If you clicked outside the user window or the mouse event could not be translated
209 into a form request an \fBE_REQUEST_DENIED\fR is returned.
210 .SS Application-defined commands
211 .PP
212 If the second argument is neither printable nor one of the above
213 pre-defined form requests, the driver assumes it is an application-specific
214 command and returns \fBE_UNKNOWN_COMMAND\fR.  Application-defined commands
215 should be defined relative to \fBMAX_COMMAND\fR, the maximum value of these
216 pre-defined requests.
217 .SH RETURN VALUE
218 \fBform_driver\fR returns one of the following error codes:
219 .TP 5
220 .B E_OK
221 The routine succeeded.
222 .TP 5
223 .B E_BAD_ARGUMENT
224 Routine detected an incorrect or out-of-range argument.
225 .TP 5
226 .B E_BAD_STATE
227 Routine was called from an initialization or termination function.
228 .TP 5
229 .B E_NOT_POSTED
230 The form has not been posted.
231 .TP 5
232 .B E_INVALID_FIELD
233 Contents of field is invalid.
234 .TP 5
235 .B E_REQUEST_DENIED
236 The form driver could not process the request.
237 .TP 5
238 .B E_SYSTEM_ERROR
239 System error occurred (see \fBerrno\fR).
240 .TP 5
241 .B E_UNKNOWN_COMMAND
242 The form driver code saw an unknown request code.
243 .
244 .SH SEE ALSO
245 \fBcurses\fR(3X),
246 \fBform\fR(3X),
247 \fBform_field_buffer\fR(3X),
248 \fBform_field_validation\fR(3X),
249 \fBform_fieldtype\fR(3X),
250 \fBform_variables\fR(3X),
251 \fBgetch\fR(3X).
252 .SH NOTES
253 The header file \fB<form.h>\fR automatically includes the header files
254 \fB<curses.h>\fR.
255 .SH PORTABILITY
256 These routines emulate the System V forms library.  They were not supported on
257 Version 7 or BSD versions.
258 .SH AUTHORS
259 Juergen Pfeifer.  Manual pages and adaptation for new curses by Eric
260 S. Raymond.