Lines Matching defs:form
38 #include <form.h>
49 0, /* starting row in the form subwindow */
50 0, /* starting column in the form subwindow */
52 0, /* index of this field in form fields array. */
64 0, /* start of a new page on the form if 1 */
70 NULL, /* the form this field is bound to, if any */
646 set_field_init(FORM *form, Form_Hook function)
648 if (form == NULL)
651 form->field_init = function;
660 field_init(FORM *form)
662 if (form == NULL)
665 return form->field_init;
672 set_field_term(FORM *form, Form_Hook function)
674 if (form == NULL)
677 form->field_term = function;
686 field_term(FORM *form)
688 if (form == NULL)
691 return form->field_term;
703 if (field->parent != NULL) /* check if field is connected to a form */
724 * Return the index of the field in the form fields array.