blob: d5332a0602cd5b9f5629bb1b8fe729f816d8ebd6 [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Built-in Module \sectcode{fl}}
2\bimodindex{fl}
3
4This module provides an interface to the FORMS Library by Mark
Guido van Rossum470be141995-03-17 16:07:09 +00005Overmars. The source for the library can be retrieved by anonymous
6ftp from host \samp{ftp.cs.ruu.nl}, directory \file{SGI/FORMS}. It
7was last tested with version 2.0b.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00008
9Most functions are literal translations of their C equivalents,
Guido van Rossum470be141995-03-17 16:07:09 +000010dropping the initial \samp{fl_} from their name. Constants used by
11the library are defined in module \code{FL} described below.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000012
13The creation of objects is a little different in Python than in C:
14instead of the `current form' maintained by the library to which new
15FORMS objects are added, all functions that add a FORMS object to a
Guido van Rossum470be141995-03-17 16:07:09 +000016form are methods of the Python object representing the form.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000017Consequently, there are no Python equivalents for the C functions
18\code{fl_addto_form} and \code{fl_end_form}, and the equivalent of
19\code{fl_bgn_form} is called \code{fl.make_form}.
20
21Watch out for the somewhat confusing terminology: FORMS uses the word
22\dfn{object} for the buttons, sliders etc. that you can place in a form.
23In Python, `object' means any value. The Python interface to FORMS
24introduces two new Python object types: form objects (representing an
25entire form) and FORMS objects (representing one button, slider etc.).
26Hopefully this isn't too confusing...
27
28There are no `free objects' in the Python interface to FORMS, nor is
29there an easy way to add object classes written in Python. The FORMS
Guido van Rossum470be141995-03-17 16:07:09 +000030interface to GL event handling is available, though, so you can mix
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000031FORMS with pure GL windows.
32
33\strong{Please note:} importing \code{fl} implies a call to the GL function
34\code{foreground()} and to the FORMS routine \code{fl_init()}.
35
Guido van Rossum470be141995-03-17 16:07:09 +000036\subsection{Functions Defined in Module \sectcode{fl}}
Guido van Rossum86cb0921995-03-20 12:59:56 +000037\nodename{FL Functions}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000038
39Module \code{fl} defines the following functions. For more information
40about what they do, see the description of the equivalent C function
41in the FORMS documentation:
42
43\renewcommand{\indexsubitem}{(in module fl)}
44\begin{funcdesc}{make_form}{type\, width\, height}
45Create a form with given type, width and height. This returns a
46\dfn{form} object, whose methods are described below.
47\end{funcdesc}
48
49\begin{funcdesc}{do_forms}{}
50The standard FORMS main loop. Returns a Python object representing
51the FORMS object needing interaction, or the special value
52\code{FL.EVENT}.
53\end{funcdesc}
54
55\begin{funcdesc}{check_forms}{}
56Check for FORMS events. Returns what \code{do_forms} above returns,
57or \code{None} if there is no event that immediately needs
58interaction.
59\end{funcdesc}
60
61\begin{funcdesc}{set_event_call_back}{function}
62Set the event callback function.
63\end{funcdesc}
64
65\begin{funcdesc}{set_graphics_mode}{rgbmode\, doublebuffering}
66Set the graphics modes.
67\end{funcdesc}
68
69\begin{funcdesc}{get_rgbmode}{}
70Return the current rgb mode. This is the value of the C global
71variable \code{fl_rgbmode}.
72\end{funcdesc}
73
74\begin{funcdesc}{show_message}{str1\, str2\, str3}
75Show a dialog box with a three-line message and an OK button.
76\end{funcdesc}
77
78\begin{funcdesc}{show_question}{str1\, str2\, str3}
79Show a dialog box with a three-line message and YES and NO buttons.
80It returns \code{1} if the user pressed YES, \code{0} if NO.
81\end{funcdesc}
82
Guido van Rossum16d6e711994-08-08 12:30:22 +000083\begin{funcdesc}{show_choice}{str1\, str2\, str3\, but1\optional{\, but2\,
84but3}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000085Show a dialog box with a three-line message and up to three buttons.
86It returns the number of the button clicked by the user
87(\code{1}, \code{2} or \code{3}).
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000088\end{funcdesc}
89
90\begin{funcdesc}{show_input}{prompt\, default}
91Show a dialog box with a one-line prompt message and text field in
92which the user can enter a string. The second argument is the default
93input string. It returns the string value as edited by the user.
94\end{funcdesc}
95
96\begin{funcdesc}{show_file_selector}{message\, directory\, pattern\, default}
Guido van Rossum470be141995-03-17 16:07:09 +000097Show a dialog box in which the user can select a file. It returns
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000098the absolute filename selected by the user, or \code{None} if the user
99presses Cancel.
100\end{funcdesc}
101
102\begin{funcdesc}{get_directory}{}
103\funcline{get_pattern}{}
104\funcline{get_filename}{}
105These functions return the directory, pattern and filename (the tail
106part only) selected by the user in the last \code{show_file_selector}
107call.
108\end{funcdesc}
109
110\begin{funcdesc}{qdevice}{dev}
111\funcline{unqdevice}{dev}
112\funcline{isqueued}{dev}
113\funcline{qtest}{}
114\funcline{qread}{}
115%\funcline{blkqread}{?}
116\funcline{qreset}{}
117\funcline{qenter}{dev\, val}
118\funcline{get_mouse}{}
119\funcline{tie}{button\, valuator1\, valuator2}
120These functions are the FORMS interfaces to the corresponding GL
121functions. Use these if you want to handle some GL events yourself
122when using \code{fl.do_events}. When a GL event is detected that
123FORMS cannot handle, \code{fl.do_forms()} returns the special value
124\code{FL.EVENT} and you should call \code{fl.qread()} to read the
125event from the queue. Don't use the equivalent GL functions!
126\end{funcdesc}
127
128\begin{funcdesc}{color}{}
129\funcline{mapcolor}{}
130\funcline{getmcolor}{}
131See the description in the FORMS documentation of \code{fl_color},
132\code{fl_mapcolor} and \code{fl_getmcolor}.
133\end{funcdesc}
134
Guido van Rossum470be141995-03-17 16:07:09 +0000135\subsection{Form Objects}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000136
137Form objects (returned by \code{fl.make_form()} above) have the
138following methods. Each method corresponds to a C function whose name
139is prefixed with \samp{fl_}; and whose first argument is a form
140pointer; please refer to the official FORMS documentation for
141descriptions.
142
143All the \samp{add_{\rm \ldots}} functions return a Python object representing
144the FORMS object. Methods of FORMS objects are described below. Most
145kinds of FORMS object also have some methods specific to that kind;
146these methods are listed here.
147
148\begin{flushleft}
149\renewcommand{\indexsubitem}{(form object method)}
150\begin{funcdesc}{show_form}{placement\, bordertype\, name}
151 Show the form.
152\end{funcdesc}
153
154\begin{funcdesc}{hide_form}{}
155 Hide the form.
156\end{funcdesc}
157
158\begin{funcdesc}{redraw_form}{}
159 Redraw the form.
160\end{funcdesc}
161
162\begin{funcdesc}{set_form_position}{x\, y}
163Set the form's position.
164\end{funcdesc}
165
166\begin{funcdesc}{freeze_form}{}
167Freeze the form.
168\end{funcdesc}
169
170\begin{funcdesc}{unfreeze_form}{}
171 Unfreeze the form.
172\end{funcdesc}
173
174\begin{funcdesc}{activate_form}{}
175 Activate the form.
176\end{funcdesc}
177
178\begin{funcdesc}{deactivate_form}{}
179 Deactivate the form.
180\end{funcdesc}
181
182\begin{funcdesc}{bgn_group}{}
183 Begin a new group of objects; return a group object.
184\end{funcdesc}
185
186\begin{funcdesc}{end_group}{}
187 End the current group of objects.
188\end{funcdesc}
189
190\begin{funcdesc}{find_first}{}
191 Find the first object in the form.
192\end{funcdesc}
193
194\begin{funcdesc}{find_last}{}
195 Find the last object in the form.
196\end{funcdesc}
197
198%---
199
200\begin{funcdesc}{add_box}{type\, x\, y\, w\, h\, name}
201Add a box object to the form.
202No extra methods.
203\end{funcdesc}
204
205\begin{funcdesc}{add_text}{type\, x\, y\, w\, h\, name}
206Add a text object to the form.
207No extra methods.
208\end{funcdesc}
209
210%\begin{funcdesc}{add_bitmap}{type\, x\, y\, w\, h\, name}
211%Add a bitmap object to the form.
212%\end{funcdesc}
213
214\begin{funcdesc}{add_clock}{type\, x\, y\, w\, h\, name}
215Add a clock object to the form. \\
216Method:
217\code{get_clock}.
218\end{funcdesc}
219
220%---
221
222\begin{funcdesc}{add_button}{type\, x\, y\, w\, h\, name}
223Add a button object to the form. \\
224Methods:
225\code{get_button},
226\code{set_button}.
227\end{funcdesc}
228
229\begin{funcdesc}{add_lightbutton}{type\, x\, y\, w\, h\, name}
230Add a lightbutton object to the form. \\
231Methods:
232\code{get_button},
233\code{set_button}.
234\end{funcdesc}
235
236\begin{funcdesc}{add_roundbutton}{type\, x\, y\, w\, h\, name}
237Add a roundbutton object to the form. \\
238Methods:
239\code{get_button},
240\code{set_button}.
241\end{funcdesc}
242
243%---
244
245\begin{funcdesc}{add_slider}{type\, x\, y\, w\, h\, name}
246Add a slider object to the form. \\
247Methods:
248\code{set_slider_value},
249\code{get_slider_value},
250\code{set_slider_bounds},
251\code{get_slider_bounds},
252\code{set_slider_return},
253\code{set_slider_size},
254\code{set_slider_precision},
255\code{set_slider_step}.
256\end{funcdesc}
257
258\begin{funcdesc}{add_valslider}{type\, x\, y\, w\, h\, name}
259Add a valslider object to the form. \\
260Methods:
261\code{set_slider_value},
262\code{get_slider_value},
263\code{set_slider_bounds},
264\code{get_slider_bounds},
265\code{set_slider_return},
266\code{set_slider_size},
267\code{set_slider_precision},
268\code{set_slider_step}.
269\end{funcdesc}
270
271\begin{funcdesc}{add_dial}{type\, x\, y\, w\, h\, name}
272Add a dial object to the form. \\
273Methods:
274\code{set_dial_value},
275\code{get_dial_value},
276\code{set_dial_bounds},
277\code{get_dial_bounds}.
278\end{funcdesc}
279
280\begin{funcdesc}{add_positioner}{type\, x\, y\, w\, h\, name}
281Add a positioner object to the form. \\
282Methods:
283\code{set_positioner_xvalue},
284\code{set_positioner_yvalue},
285\code{set_positioner_xbounds},
286\code{set_positioner_ybounds},
287\code{get_positioner_xvalue},
288\code{get_positioner_yvalue},
289\code{get_positioner_xbounds},
290\code{get_positioner_ybounds}.
291\end{funcdesc}
292
293\begin{funcdesc}{add_counter}{type\, x\, y\, w\, h\, name}
294Add a counter object to the form. \\
295Methods:
296\code{set_counter_value},
297\code{get_counter_value},
298\code{set_counter_bounds},
299\code{set_counter_step},
300\code{set_counter_precision},
301\code{set_counter_return}.
302\end{funcdesc}
303
304%---
305
306\begin{funcdesc}{add_input}{type\, x\, y\, w\, h\, name}
307Add a input object to the form. \\
308Methods:
309\code{set_input},
310\code{get_input},
311\code{set_input_color},
312\code{set_input_return}.
313\end{funcdesc}
314
315%---
316
317\begin{funcdesc}{add_menu}{type\, x\, y\, w\, h\, name}
318Add a menu object to the form. \\
319Methods:
320\code{set_menu},
321\code{get_menu},
322\code{addto_menu}.
323\end{funcdesc}
324
325\begin{funcdesc}{add_choice}{type\, x\, y\, w\, h\, name}
326Add a choice object to the form. \\
327Methods:
328\code{set_choice},
329\code{get_choice},
330\code{clear_choice},
331\code{addto_choice},
332\code{replace_choice},
333\code{delete_choice},
334\code{get_choice_text},
335\code{set_choice_fontsize},
336\code{set_choice_fontstyle}.
337\end{funcdesc}
338
339\begin{funcdesc}{add_browser}{type\, x\, y\, w\, h\, name}
340Add a browser object to the form. \\
341Methods:
342\code{set_browser_topline},
343\code{clear_browser},
344\code{add_browser_line},
345\code{addto_browser},
346\code{insert_browser_line},
347\code{delete_browser_line},
348\code{replace_browser_line},
349\code{get_browser_line},
350\code{load_browser},
351\code{get_browser_maxline},
352\code{select_browser_line},
353\code{deselect_browser_line},
354\code{deselect_browser},
355\code{isselected_browser_line},
356\code{get_browser},
357\code{set_browser_fontsize},
358\code{set_browser_fontstyle},
359\code{set_browser_specialkey}.
360\end{funcdesc}
361
362%---
363
364\begin{funcdesc}{add_timer}{type\, x\, y\, w\, h\, name}
365Add a timer object to the form. \\
366Methods:
367\code{set_timer},
368\code{get_timer}.
369\end{funcdesc}
370\end{flushleft}
371
372Form objects have the following data attributes; see the FORMS
373documentation:
374
375\begin{tableiii}{|l|c|l|}{code}{Name}{Type}{Meaning}
376 \lineiii{window}{int (read-only)}{GL window id}
377 \lineiii{w}{float}{form width}
378 \lineiii{h}{float}{form height}
379 \lineiii{x}{float}{form x origin}
380 \lineiii{y}{float}{form y origin}
381 \lineiii{deactivated}{int}{nonzero if form is deactivated}
382 \lineiii{visible}{int}{nonzero if form is visible}
383 \lineiii{frozen}{int}{nonzero if form is frozen}
384 \lineiii{doublebuf}{int}{nonzero if double buffering on}
385\end{tableiii}
386
Guido van Rossum470be141995-03-17 16:07:09 +0000387\subsection{FORMS Objects}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000388
389Besides methods specific to particular kinds of FORMS objects, all
390FORMS objects also have the following methods:
391
392\renewcommand{\indexsubitem}{(FORMS object method)}
393\begin{funcdesc}{set_call_back}{function\, argument}
394Set the object's callback function and argument. When the object
395needs interaction, the callback function will be called with two
396arguments: the object, and the callback argument. (FORMS objects
397without a callback function are returned by \code{fl.do_forms()} or
398\code{fl.check_forms()} when they need interaction.) Call this method
399without arguments to remove the callback function.
400\end{funcdesc}
401
402\begin{funcdesc}{delete_object}{}
403 Delete the object.
404\end{funcdesc}
405
406\begin{funcdesc}{show_object}{}
407 Show the object.
408\end{funcdesc}
409
410\begin{funcdesc}{hide_object}{}
411 Hide the object.
412\end{funcdesc}
413
414\begin{funcdesc}{redraw_object}{}
415 Redraw the object.
416\end{funcdesc}
417
418\begin{funcdesc}{freeze_object}{}
419 Freeze the object.
420\end{funcdesc}
421
422\begin{funcdesc}{unfreeze_object}{}
423 Unfreeze the object.
424\end{funcdesc}
425
426%\begin{funcdesc}{handle_object}{} XXX
427%\end{funcdesc}
428
429%\begin{funcdesc}{handle_object_direct}{} XXX
430%\end{funcdesc}
431
432FORMS objects have these data attributes; see the FORMS documentation:
433
434\begin{tableiii}{|l|c|l|}{code}{Name}{Type}{Meaning}
435 \lineiii{objclass}{int (read-only)}{object class}
436 \lineiii{type}{int (read-only)}{object type}
437 \lineiii{boxtype}{int}{box type}
438 \lineiii{x}{float}{x origin}
439 \lineiii{y}{float}{y origin}
440 \lineiii{w}{float}{width}
441 \lineiii{h}{float}{height}
442 \lineiii{col1}{int}{primary color}
443 \lineiii{col2}{int}{secondary color}
444 \lineiii{align}{int}{alignment}
445 \lineiii{lcol}{int}{label color}
446 \lineiii{lsize}{float}{label font size}
447 \lineiii{label}{string}{label string}
448 \lineiii{lstyle}{int}{label style}
449 \lineiii{pushed}{int (read-only)}{(see FORMS docs)}
450 \lineiii{focus}{int (read-only)}{(see FORMS docs)}
451 \lineiii{belowmouse}{int (read-only)}{(see FORMS docs)}
452 \lineiii{frozen}{int (read-only)}{(see FORMS docs)}
453 \lineiii{active}{int (read-only)}{(see FORMS docs)}
454 \lineiii{input}{int (read-only)}{(see FORMS docs)}
455 \lineiii{visible}{int (read-only)}{(see FORMS docs)}
456 \lineiii{radio}{int (read-only)}{(see FORMS docs)}
457 \lineiii{automatic}{int (read-only)}{(see FORMS docs)}
458\end{tableiii}
459
460\section{Standard Module \sectcode{FL}}
461\nodename{FL (uppercase)}
462\stmodindex{FL}
463
464This module defines symbolic constants needed to use the built-in
465module \code{fl} (see above); they are equivalent to those defined in
466the C header file \file{<forms.h>} except that the name prefix
467\samp{FL_} is omitted. Read the module source for a complete list of
468the defined names. Suggested use:
469
470\bcode\begin{verbatim}
471import fl
472from FL import *
473\end{verbatim}\ecode
474
475\section{Standard Module \sectcode{flp}}
476\stmodindex{flp}
477
478This module defines functions that can read form definitions created
479by the `form designer' (\code{fdesign}) program that comes with the
480FORMS library (see module \code{fl} above).
481
482For now, see the file \file{flp.doc} in the Python library source
483directory for a description.
484
485XXX A complete description should be inserted here!