Lines Matching full:forms

2 :mod:`fl` --- FORMS library for graphical user interfaces
7 :synopsis: FORMS library for applications with graphical user interfaces.
16 single: FORMS Library
19 This module provides an interface to the FORMS Library by Mark Overmars. The
21 ``ftp.cs.ruu.nl``, directory :file:`SGI/FORMS`. It was last tested with version
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
35 Watch out for the somewhat confusing terminology: FORMS uses the word
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
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.
47 :c:func:`foreground` and to the FORMS routine :c:func:`fl_init`.
56 what they do, see the description of the equivalent C function in the FORMS
68 The standard FORMS main loop. Returns a Python object representing the FORMS
74 Check for FORMS events. Returns what :func:`do_forms` above returns, or
142 These functions are the FORMS interfaces to the corresponding GL functions. Use
144 :func:`fl.do_events`. When a GL event is detected that FORMS cannot handle,
156 See the description in the FORMS documentation of :c:func:`fl_color`,
167 whose first argument is a form pointer; please refer to the official FORMS
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
349 Form objects have the following data attributes; see the FORMS documentation:
376 FORMS Objects
379 Besides methods specific to particular kinds of FORMS objects, all FORMS objects
383 .. method:: FORMS object.set_call_back(function, argument)
387 object, and the callback argument. (FORMS objects without a callback function
393 .. method:: FORMS object.delete_object()
398 .. method:: FORMS object.show_object()
403 .. method:: FORMS object.hide_object()
408 .. method:: FORMS object.redraw_object()
413 .. method:: FORMS object.freeze_object()
418 .. method:: FORMS object.unfreeze_object()
422 FORMS objects have these data attributes; see the FORMS documentation:
424 .. \begin{methoddesc}[FORMS object]{handle_object}{} XXX
426 .. \begin{methoddesc}[FORMS object]{handle_object_direct}{} XXX
460 | :attr:`pushed` | int (read-only) | (see FORMS docs) |
462 | :attr:`focus` | int (read-only) | (see FORMS docs) |
464 | :attr:`belowmouse` | int (read-only) | (see FORMS docs) |
466 | :attr:`frozen` | int (read-only) | (see FORMS docs) |
468 | :attr:`active` | int (read-only) | (see FORMS docs) |
470 | :attr:`input` | int (read-only) | (see FORMS docs) |
472 | :attr:`visible` | int (read-only) | (see FORMS docs) |
474 | :attr:`radio` | int (read-only) | (see FORMS docs) |
476 | :attr:`automatic` | int (read-only) | (see FORMS docs) |
495 ``<forms.h>`` except that the name prefix ``FL_`` is omitted. Read the module
502 :mod:`flp` --- Functions for loading stored FORMS designs
507 :synopsis: Functions for loading stored FORMS designs.
516 'form designer' (:program:`fdesign`) program that comes with the FORMS library