1 /****************************************************************************
2 * Copyright (c) 1998-2003,2004 Free Software Foundation, Inc. *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer, 1995,1997 *
31 ****************************************************************************/
33 #include "form.priv.h"
35 MODULE_ID("$Id: frm_post.c,v 1.9 2004/12/11 22:19:06 tom Exp $")
37 /*---------------------------------------------------------------------------
39 | Function : int post_form(FORM * form)
41 | Description : Writes the form into its associated subwindow.
43 | Return Values : E_OK - success
44 | E_BAD_ARGUMENT - invalid form pointer
45 | E_POSTED - form already posted
46 | E_NOT_CONNECTED - no fields connected to form
47 | E_NO_ROOM - form doesn't fit into subwindow
48 | E_SYSTEM_ERROR - system error
49 +--------------------------------------------------------------------------*/
57 T((T_CALLED("post_form(%p)"), form
));
60 RETURN(E_BAD_ARGUMENT
);
62 if (form
->status
& _POSTED
)
66 RETURN(E_NOT_CONNECTED
);
68 formwin
= Get_Form_Window(form
);
69 if ((form
->cols
> getmaxx(formwin
)) || (form
->rows
> getmaxy(formwin
)))
72 /* reset form->curpage to an invald value. This forces Set_Form_Page
73 to do the page initialization which is required by post_form.
77 if ((err
= _nc_Set_Form_Page(form
, page
, form
->current
)) != E_OK
)
80 form
->status
|= _POSTED
;
82 Call_Hook(form
, forminit
);
83 Call_Hook(form
, fieldinit
);
85 _nc_Refresh_Current_Field(form
);
89 /*---------------------------------------------------------------------------
91 | Function : int unpost_form(FORM * form)
93 | Description : Erase form from its associated subwindow.
95 | Return Values : E_OK - success
96 | E_BAD_ARGUMENT - invalid form pointer
97 | E_NOT_POSTED - form isn't posted
98 | E_BAD_STATE - called from a hook routine
99 +--------------------------------------------------------------------------*/
101 unpost_form(FORM
*form
)
103 T((T_CALLED("unpost_form(%p)"), form
));
106 RETURN(E_BAD_ARGUMENT
);
108 if (!(form
->status
& _POSTED
))
109 RETURN(E_NOT_POSTED
);
111 if (form
->status
& _IN_DRIVER
)
114 Call_Hook(form
, fieldterm
);
115 Call_Hook(form
, formterm
);
117 werase(Get_Form_Window(form
));
119 form
->w
= (WINDOW
*)0;
120 form
->status
&= ~_POSTED
;
124 /* frm_post.c ends here */