Oops. Need to check not only that HAVE_DECL_ISINF is defined, but also
[python.git] / Doc / library / fl.rst
bloba5a426a140ef9fd3500c41d66673a428e25bee0d
2 :mod:`fl` --- FORMS library for graphical user interfaces
3 =========================================================
5 .. module:: fl
6    :platform: IRIX
7    :synopsis: FORMS library for applications with graphical user interfaces.
8    :deprecated:
11 .. deprecated:: 2.6
12     The :mod:`fl` module has been deprecated for removal in Python 3.0.
15 .. index::
16    single: FORMS Library
17    single: Overmars, Mark
19 This module provides an interface to the FORMS Library by Mark Overmars.  The
20 source for the library can be retrieved by anonymous ftp from host
21 ``ftp.cs.ruu.nl``, directory :file:`SGI/FORMS`.  It was last tested with version
22 2.0b.
24 Most functions are literal translations of their C equivalents, dropping the
25 initial ``fl_`` from their name.  Constants used by the library are defined in
26 module :mod:`FL` described below.
28 The creation of objects is a little different in Python than in C: instead of
29 the 'current form' maintained by the library to which new FORMS objects are
30 added, all functions that add a FORMS object to a form are methods of the Python
31 object representing the form. Consequently, there are no Python equivalents for
32 the C functions :cfunc:`fl_addto_form` and :cfunc:`fl_end_form`, and the
33 equivalent of :cfunc:`fl_bgn_form` is called :func:`fl.make_form`.
35 Watch out for the somewhat confusing terminology: FORMS uses the word
36 :dfn:`object` for the buttons, sliders etc. that you can place in a form. In
37 Python, 'object' means any value.  The Python interface to FORMS introduces two
38 new Python object types: form objects (representing an entire form) and FORMS
39 objects (representing one button, slider etc.). Hopefully this isn't too
40 confusing.
42 There are no 'free objects' in the Python interface to FORMS, nor is there an
43 easy way to add object classes written in Python.  The FORMS interface to GL
44 event handling is available, though, so you can mix FORMS with pure GL windows.
46 **Please note:** importing :mod:`fl` implies a call to the GL function
47 :cfunc:`foreground` and to the FORMS routine :cfunc:`fl_init`.
50 .. _fl-functions:
52 Functions Defined in Module :mod:`fl`
53 -------------------------------------
55 Module :mod:`fl` defines the following functions.  For more information about
56 what they do, see the description of the equivalent C function in the FORMS
57 documentation:
60 .. function:: make_form(type, width, height)
62    Create a form with given type, width and height.  This returns a :dfn:`form`
63    object, whose methods are described below.
66 .. function:: do_forms()
68    The standard FORMS main loop.  Returns a Python object representing the FORMS
69    object needing interaction, or the special value :const:`FL.EVENT`.
72 .. function:: check_forms()
74    Check for FORMS events.  Returns what :func:`do_forms` above returns, or
75    ``None`` if there is no event that immediately needs interaction.
78 .. function:: set_event_call_back(function)
80    Set the event callback function.
83 .. function:: set_graphics_mode(rgbmode, doublebuffering)
85    Set the graphics modes.
88 .. function:: get_rgbmode()
90    Return the current rgb mode.  This is the value of the C global variable
91    :cdata:`fl_rgbmode`.
94 .. function:: show_message(str1, str2, str3)
96    Show a dialog box with a three-line message and an OK button.
99 .. function:: show_question(str1, str2, str3)
101    Show a dialog box with a three-line message and YES and NO buttons. It returns
102    ``1`` if the user pressed YES, ``0`` if NO.
105 .. function:: show_choice(str1, str2, str3, but1[, but2[, but3]])
107    Show a dialog box with a three-line message and up to three buttons. It returns
108    the number of the button clicked by the user (``1``, ``2`` or ``3``).
111 .. function:: show_input(prompt, default)
113    Show a dialog box with a one-line prompt message and text field in which the
114    user can enter a string.  The second argument is the default input string.  It
115    returns the string value as edited by the user.
118 .. function:: show_file_selector(message, directory, pattern, default)
120    Show a dialog box in which the user can select a file.  It returns the absolute
121    filename selected by the user, or ``None`` if the user presses Cancel.
124 .. function:: get_directory()
125               get_pattern()
126               get_filename()
128    These functions return the directory, pattern and filename (the tail part only)
129    selected by the user in the last :func:`show_file_selector` call.
132 .. function:: qdevice(dev)
133               unqdevice(dev)
134               isqueued(dev)
135               qtest()
136               qread()
137               qreset()
138               qenter(dev, val)
139               get_mouse()
140               tie(button, valuator1, valuator2)
142    These functions are the FORMS interfaces to the corresponding GL functions.  Use
143    these if you want to handle some GL events yourself when using
144    :func:`fl.do_events`.  When a GL event is detected that FORMS cannot handle,
145    :func:`fl.do_forms` returns the special value :const:`FL.EVENT` and you should
146    call :func:`fl.qread` to read the event from the queue.  Don't use the
147    equivalent GL functions!
149    .. \funcline{blkqread}{?}
152 .. function:: color()
153               mapcolor()
154               getmcolor()
156    See the description in the FORMS documentation of :cfunc:`fl_color`,
157    :cfunc:`fl_mapcolor` and :cfunc:`fl_getmcolor`.
160 .. _form-objects:
162 Form Objects
163 ------------
165 Form objects (returned by :func:`make_form` above) have the following methods.
166 Each method corresponds to a C function whose name is prefixed with ``fl_``; and
167 whose first argument is a form pointer; please refer to the official FORMS
168 documentation for descriptions.
170 All the :meth:`add_\*` methods return a Python object representing the FORMS
171 object.  Methods of FORMS objects are described below.  Most kinds of FORMS
172 object also have some methods specific to that kind; these methods are listed
173 here.
176 .. method:: form.show_form(placement, bordertype, name)
178    Show the form.
181 .. method:: form.hide_form()
183    Hide the form.
186 .. method:: form.redraw_form()
188    Redraw the form.
191 .. method:: form.set_form_position(x, y)
193    Set the form's position.
196 .. method:: form.freeze_form()
198    Freeze the form.
201 .. method:: form.unfreeze_form()
203    Unfreeze the form.
206 .. method:: form.activate_form()
208    Activate the form.
211 .. method:: form.deactivate_form()
213    Deactivate the form.
216 .. method:: form.bgn_group()
218    Begin a new group of objects; return a group object.
221 .. method:: form.end_group()
223    End the current group of objects.
226 .. method:: form.find_first()
228    Find the first object in the form.
231 .. method:: form.find_last()
233    Find the last object in the form.
236 .. method:: form.add_box(type, x, y, w, h, name)
238    Add a box object to the form. No extra methods.
241 .. method:: form.add_text(type, x, y, w, h, name)
243    Add a text object to the form. No extra methods.
245 .. \begin{methoddesc}[form]{add_bitmap}{type, x, y, w, h, name}
246 .. Add a bitmap object to the form.
247 .. \end{methoddesc}
250 .. method:: form.add_clock(type, x, y, w, h, name)
252    Add a clock object to the form.  ---  Method: :meth:`get_clock`.
255 .. method:: form.add_button(type, x, y, w, h,  name)
257    Add a button object to the form.  ---  Methods: :meth:`get_button`,
258    :meth:`set_button`.
261 .. method:: form.add_lightbutton(type, x, y, w, h, name)
263    Add a lightbutton object to the form.  ---  Methods: :meth:`get_button`,
264    :meth:`set_button`.
267 .. method:: form.add_roundbutton(type, x, y, w, h, name)
269    Add a roundbutton object to the form.  ---  Methods: :meth:`get_button`,
270    :meth:`set_button`.
273 .. method:: form.add_slider(type, x, y, w, h, name)
275    Add a slider object to the form.  ---  Methods: :meth:`set_slider_value`,
276    :meth:`get_slider_value`, :meth:`set_slider_bounds`, :meth:`get_slider_bounds`,
277    :meth:`set_slider_return`, :meth:`set_slider_size`,
278    :meth:`set_slider_precision`, :meth:`set_slider_step`.
281 .. method:: form.add_valslider(type, x, y, w, h, name)
283    Add a valslider object to the form.  ---  Methods: :meth:`set_slider_value`,
284    :meth:`get_slider_value`, :meth:`set_slider_bounds`, :meth:`get_slider_bounds`,
285    :meth:`set_slider_return`, :meth:`set_slider_size`,
286    :meth:`set_slider_precision`, :meth:`set_slider_step`.
289 .. method:: form.add_dial(type, x, y, w, h, name)
291    Add a dial object to the form.  ---  Methods: :meth:`set_dial_value`,
292    :meth:`get_dial_value`, :meth:`set_dial_bounds`, :meth:`get_dial_bounds`.
295 .. method:: form.add_positioner(type, x, y, w, h, name)
297    Add a positioner object to the form.  ---  Methods:
298    :meth:`set_positioner_xvalue`, :meth:`set_positioner_yvalue`,
299    :meth:`set_positioner_xbounds`, :meth:`set_positioner_ybounds`,
300    :meth:`get_positioner_xvalue`, :meth:`get_positioner_yvalue`,
301    :meth:`get_positioner_xbounds`, :meth:`get_positioner_ybounds`.
304 .. method:: form.add_counter(type, x, y, w, h, name)
306    Add a counter object to the form.  ---  Methods: :meth:`set_counter_value`,
307    :meth:`get_counter_value`, :meth:`set_counter_bounds`, :meth:`set_counter_step`,
308    :meth:`set_counter_precision`, :meth:`set_counter_return`.
311 .. method:: form.add_input(type, x, y, w, h, name)
313    Add a input object to the form.  ---  Methods: :meth:`set_input`,
314    :meth:`get_input`, :meth:`set_input_color`, :meth:`set_input_return`.
317 .. method:: form.add_menu(type, x, y, w, h, name)
319    Add a menu object to the form.  ---  Methods: :meth:`set_menu`,
320    :meth:`get_menu`, :meth:`addto_menu`.
323 .. method:: form.add_choice(type, x, y, w, h, name)
325    Add a choice object to the form.  ---  Methods: :meth:`set_choice`,
326    :meth:`get_choice`, :meth:`clear_choice`, :meth:`addto_choice`,
327    :meth:`replace_choice`, :meth:`delete_choice`, :meth:`get_choice_text`,
328    :meth:`set_choice_fontsize`, :meth:`set_choice_fontstyle`.
331 .. method:: form.add_browser(type, x, y, w, h, name)
333    Add a browser object to the form.  ---  Methods: :meth:`set_browser_topline`,
334    :meth:`clear_browser`, :meth:`add_browser_line`, :meth:`addto_browser`,
335    :meth:`insert_browser_line`, :meth:`delete_browser_line`,
336    :meth:`replace_browser_line`, :meth:`get_browser_line`, :meth:`load_browser`,
337    :meth:`get_browser_maxline`, :meth:`select_browser_line`,
338    :meth:`deselect_browser_line`, :meth:`deselect_browser`,
339    :meth:`isselected_browser_line`, :meth:`get_browser`,
340    :meth:`set_browser_fontsize`, :meth:`set_browser_fontstyle`,
341    :meth:`set_browser_specialkey`.
344 .. method:: form.add_timer(type, x, y, w, h, name)
346    Add a timer object to the form.  ---  Methods: :meth:`set_timer`,
347    :meth:`get_timer`.
349 Form objects have the following data attributes; see the FORMS documentation:
351 +---------------------+-----------------+--------------------------------+
352 | Name                | C Type          | Meaning                        |
353 +=====================+=================+================================+
354 | :attr:`window`      | int (read-only) | GL window id                   |
355 +---------------------+-----------------+--------------------------------+
356 | :attr:`w`           | float           | form width                     |
357 +---------------------+-----------------+--------------------------------+
358 | :attr:`h`           | float           | form height                    |
359 +---------------------+-----------------+--------------------------------+
360 | :attr:`x`           | float           | form x origin                  |
361 +---------------------+-----------------+--------------------------------+
362 | :attr:`y`           | float           | form y origin                  |
363 +---------------------+-----------------+--------------------------------+
364 | :attr:`deactivated` | int             | nonzero if form is deactivated |
365 +---------------------+-----------------+--------------------------------+
366 | :attr:`visible`     | int             | nonzero if form is visible     |
367 +---------------------+-----------------+--------------------------------+
368 | :attr:`frozen`      | int             | nonzero if form is frozen      |
369 +---------------------+-----------------+--------------------------------+
370 | :attr:`doublebuf`   | int             | nonzero if double buffering on |
371 +---------------------+-----------------+--------------------------------+
374 .. _forms-objects:
376 FORMS Objects
377 -------------
379 Besides methods specific to particular kinds of FORMS objects, all FORMS objects
380 also have the following methods:
383 .. method:: FORMS object.set_call_back(function, argument)
385    Set the object's callback function and argument.  When the object needs
386    interaction, the callback function will be called with two arguments: the
387    object, and the callback argument.  (FORMS objects without a callback function
388    are returned by :func:`fl.do_forms` or :func:`fl.check_forms` when they need
389    interaction.)  Call this method without arguments to remove the callback
390    function.
393 .. method:: FORMS object.delete_object()
395    Delete the object.
398 .. method:: FORMS object.show_object()
400    Show the object.
403 .. method:: FORMS object.hide_object()
405    Hide the object.
408 .. method:: FORMS object.redraw_object()
410    Redraw the object.
413 .. method:: FORMS object.freeze_object()
415    Freeze the object.
418 .. method:: FORMS object.unfreeze_object()
420    Unfreeze the object.
422 FORMS objects have these data attributes; see the FORMS documentation:
424 .. \begin{methoddesc}[FORMS object]{handle_object}{} XXX
425 .. \end{methoddesc}
426 .. \begin{methoddesc}[FORMS object]{handle_object_direct}{} XXX
427 .. \end{methoddesc}
429 +--------------------+-----------------+------------------+
430 | Name               | C Type          | Meaning          |
431 +====================+=================+==================+
432 | :attr:`objclass`   | int (read-only) | object class     |
433 +--------------------+-----------------+------------------+
434 | :attr:`type`       | int (read-only) | object type      |
435 +--------------------+-----------------+------------------+
436 | :attr:`boxtype`    | int             | box type         |
437 +--------------------+-----------------+------------------+
438 | :attr:`x`          | float           | x origin         |
439 +--------------------+-----------------+------------------+
440 | :attr:`y`          | float           | y origin         |
441 +--------------------+-----------------+------------------+
442 | :attr:`w`          | float           | width            |
443 +--------------------+-----------------+------------------+
444 | :attr:`h`          | float           | height           |
445 +--------------------+-----------------+------------------+
446 | :attr:`col1`       | int             | primary color    |
447 +--------------------+-----------------+------------------+
448 | :attr:`col2`       | int             | secondary color  |
449 +--------------------+-----------------+------------------+
450 | :attr:`align`      | int             | alignment        |
451 +--------------------+-----------------+------------------+
452 | :attr:`lcol`       | int             | label color      |
453 +--------------------+-----------------+------------------+
454 | :attr:`lsize`      | float           | label font size  |
455 +--------------------+-----------------+------------------+
456 | :attr:`label`      | string          | label string     |
457 +--------------------+-----------------+------------------+
458 | :attr:`lstyle`     | int             | label style      |
459 +--------------------+-----------------+------------------+
460 | :attr:`pushed`     | int (read-only) | (see FORMS docs) |
461 +--------------------+-----------------+------------------+
462 | :attr:`focus`      | int (read-only) | (see FORMS docs) |
463 +--------------------+-----------------+------------------+
464 | :attr:`belowmouse` | int (read-only) | (see FORMS docs) |
465 +--------------------+-----------------+------------------+
466 | :attr:`frozen`     | int (read-only) | (see FORMS docs) |
467 +--------------------+-----------------+------------------+
468 | :attr:`active`     | int (read-only) | (see FORMS docs) |
469 +--------------------+-----------------+------------------+
470 | :attr:`input`      | int (read-only) | (see FORMS docs) |
471 +--------------------+-----------------+------------------+
472 | :attr:`visible`    | int (read-only) | (see FORMS docs) |
473 +--------------------+-----------------+------------------+
474 | :attr:`radio`      | int (read-only) | (see FORMS docs) |
475 +--------------------+-----------------+------------------+
476 | :attr:`automatic`  | int (read-only) | (see FORMS docs) |
477 +--------------------+-----------------+------------------+
480 :mod:`FL` --- Constants used with the :mod:`fl` module
481 ======================================================
483 .. module:: FL
484    :platform: IRIX
485    :synopsis: Constants used with the fl module.
486    :deprecated:
489 .. deprecated:: 2.6
490     The :mod:`FL` module has been deprecated for removal in Python 3.0.
493 This module defines symbolic constants needed to use the built-in module
494 :mod:`fl` (see above); they are equivalent to those defined in the C header file
495 ``<forms.h>`` except that the name prefix ``FL_`` is omitted.  Read the module
496 source for a complete list of the defined names.  Suggested use::
498    import fl
499    from FL import *
502 :mod:`flp` --- Functions for loading stored FORMS designs
503 =========================================================
505 .. module:: flp
506    :platform: IRIX
507    :synopsis: Functions for loading stored FORMS designs.
508    :deprecated:
511 .. deprecated:: 2.6
512     The :mod:`flp` module has been deprecated for removal in Python 3.0.
515 This module defines functions that can read form definitions created by the
516 'form designer' (:program:`fdesign`) program that comes with the FORMS library
517 (see module :mod:`fl` above).
519 For now, see the file :file:`flp.doc` in the Python library source directory for
520 a description.
522 XXX A complete description should be inserted here!