Lines Matching full:form

6 almost anything to be done with the loaded form.
16 definition file or creating a form.
21 take the following form:
28 Parse_form parses a single form, and returns a tuple (ftmp, otmplist).
29 Ftmp is a template for a form, otmplist is a list of templates for
38 formname is the name of the form to load. This argument is mandatory,
39 even if the file only contains one form.
41 The form template and object template are structures that contain all
42 the information read from the fd file, in 'natural' form. A form
46 "Name", the name of the form;
47 "Width", the width of the form;
48 "Height", the height of the form; and
49 "Numberofobjects", the number of objects in the form.
72 form = create_form(form_template)
74 Create an fl form from a form template. Returns the form created.
77 obj = create_object(form, obj_template)
79 Create an object in an fl form. Return the new object.
85 that contains the form and all the objects (insofar as they are named),
87 this class to handle the form interaction.
93 This routine takes an instance of your form-handling class and an
95 the form into the instance, defines all object names and arranges that
101 merge_full_form(instance, form, ftuple)
104 the form itself nor the 'background box' that fdesign automatically
105 adds to each form. This is useful if your class inherits a superclass
106 that already defines a skeleton form (with 'OK' and 'Cancel' buttons,
107 for instance), and you want to merge the new form into that existing
108 form. The 'form' parameter is the form to which the new objects are
117 create_object_instance(instance, form, obj_template)