Lines Matching full:form
34 #include "form.priv.h"
40 FORM_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
43 T((T_CALLED("set_" #typ"_"#name"(%p,%s)"), (void *) form, TR_FUNC_ARG(0, func)));\
44 (Normalize_Form( form ) -> typ ## name) = func ;\
50 FORM_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
52 T((T_CALLED(#typ "_" #name "(%p)"), (const void *) form));\
53 returnFormHook( Normalize_Form( form ) -> typ ## name );\
58 | Function : int set_field_init(FORM *form, Form_Hook f)
61 | to be called when the form is posted and just after
70 | Function : Form_Hook field_init(const FORM *form)
80 | Function : int set_field_term(FORM *form, Form_Hook f)
83 | to be called when the form is unposted and just before
92 | Function : Form_Hook field_term(const FORM *form)
102 | Function : int set_form_init(FORM *form, Form_Hook f)
105 | to be called when the form is posted and just after
110 GEN_HOOK_SET_FUNCTION(form, init)
114 | Function : Form_Hook form_init(const FORM *form)
116 | Description : Retrieve form initialization routine address.
120 GEN_HOOK_GET_FUNCTION(form, init)
124 | Function : int set_form_term(FORM *form, Form_Hook f)
127 | to be called when the form is unposted and just before
132 GEN_HOOK_SET_FUNCTION(form, term)
136 | Function : Form_Hook form_term(const FORM *form)
138 | Description : Retrieve form finalization routine address.
142 GEN_HOOK_GET_FUNCTION(form, term)