Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / CursesDialog / form / fld_def.c
blob320422fa9aa92b772830ee7b1a7260dc94abdb4e
1 /****************************************************************************
2 * Copyright (c) 1998 Free Software Foundation, Inc. *
3 * *
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: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
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. *
22 * *
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 *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer <juergen.pfeifer@gmx.net> 1995,1997 *
31 ****************************************************************************/
33 #include "form.priv.h"
35 MODULE_ID("$Id: fld_def.c,v 1.2 2002/01/25 14:06:38 king Exp $")
37 /* this can't be readonly */
38 static FIELD default_field = {
39 0, /* status */
40 0, /* rows */
41 0, /* cols */
42 0, /* frow */
43 0, /* fcol */
44 0, /* drows */
45 0, /* dcols */
46 0, /* maxgrow*/
47 0, /* nrow */
48 0, /* nbuf */
49 NO_JUSTIFICATION, /* just */
50 0, /* page */
51 0, /* index */
52 (int)' ', /* pad */
53 A_NORMAL, /* fore */
54 A_NORMAL, /* back */
55 ALL_FIELD_OPTS, /* opts */
56 (FIELD *)0, /* snext */
57 (FIELD *)0, /* sprev */
58 (FIELD *)0, /* link */
59 (FORM *)0, /* form */
60 (FIELDTYPE *)0, /* type */
61 (char *)0, /* arg */
62 (char *)0, /* buf */
63 (char *)0 /* usrptr */
66 FIELD *_nc_Default_Field = &default_field;
68 /*---------------------------------------------------------------------------
69 | Facility : libnform
70 | Function : TypeArgument *_nc_Make_Argument(
71 | const FIELDTYPE *typ,
72 | va_list *ap,
73 | int *err )
75 | Description : Create an argument structure for the specified type.
76 | Use the type-dependant argument list to construct
77 | it.
79 | Return Values : Pointer to argument structure. Maybe NULL.
80 | In case of an error in *err an errorcounter is increased.
81 +--------------------------------------------------------------------------*/
82 TypeArgument*
83 _nc_Make_Argument(const FIELDTYPE *typ, va_list *ap, int *err)
85 TypeArgument *res = (TypeArgument *)0;
86 TypeArgument *p;
88 if (typ && (typ->status & _HAS_ARGS))
90 assert(err && ap);
91 if (typ->status & _LINKED_TYPE)
93 p = (TypeArgument *)malloc(sizeof(TypeArgument));
94 if (p)
96 p->left = _nc_Make_Argument(typ->left ,ap,err);
97 p->right = _nc_Make_Argument(typ->right,ap,err);
98 return p;
100 else
101 *err += 1;
102 } else
104 assert(typ->makearg != 0);
105 if ( !(res=(TypeArgument *)typ->makearg(ap)) )
106 *err += 1;
109 return res;
112 /*---------------------------------------------------------------------------
113 | Facility : libnform
114 | Function : TypeArgument *_nc_Copy_Argument(const FIELDTYPE *typ,
115 | const TypeArgument *argp,
116 | int *err )
118 | Description : Create a copy of an argument structure for the specified
119 | type.
121 | Return Values : Pointer to argument structure. Maybe NULL.
122 | In case of an error in *err an errorcounter is increased.
123 +--------------------------------------------------------------------------*/
124 TypeArgument*
125 _nc_Copy_Argument(const FIELDTYPE *typ,
126 const TypeArgument *argp, int *err)
128 TypeArgument *res = (TypeArgument *)0;
129 TypeArgument *p;
131 if ( typ && (typ->status & _HAS_ARGS) )
133 assert(err && argp);
134 if (typ->status & _LINKED_TYPE)
136 p = (TypeArgument *)malloc(sizeof(TypeArgument));
137 if (p)
139 p->left = _nc_Copy_Argument(typ,argp->left ,err);
140 p->right = _nc_Copy_Argument(typ,argp->right,err);
141 return p;
143 *err += 1;
145 else
147 if (typ->copyarg)
149 if (!(res = (TypeArgument *)(typ->copyarg((const void *)argp))))
150 *err += 1;
152 else
153 res = (TypeArgument *)argp;
156 return res;
159 /*---------------------------------------------------------------------------
160 | Facility : libnform
161 | Function : void _nc_Free_Argument(const FIELDTYPE *typ,
162 | TypeArgument * argp )
164 | Description : Release memory associated with the argument structure
165 | for the given fieldtype.
167 | Return Values : -
168 +--------------------------------------------------------------------------*/
169 void
170 _nc_Free_Argument(const FIELDTYPE * typ, TypeArgument * argp)
172 if (!typ || !(typ->status & _HAS_ARGS))
173 return;
175 if (typ->status & _LINKED_TYPE)
177 assert(argp != 0);
178 _nc_Free_Argument(typ->left ,argp->left );
179 _nc_Free_Argument(typ->right,argp->right);
180 free(argp);
182 else
184 if (typ->freearg)
185 typ->freearg((void *)argp);
189 /*---------------------------------------------------------------------------
190 | Facility : libnform
191 | Function : bool _nc_Copy_Type( FIELD *dst, FIELD const *src )
193 | Description : Copy argument structure of field src to field dst
195 | Return Values : TRUE - copy worked
196 | FALSE - error occured
197 +--------------------------------------------------------------------------*/
198 bool
199 _nc_Copy_Type(FIELD *dst, FIELD const *src)
201 int err = 0;
203 assert(dst && src);
205 dst->type = src->type;
206 dst->arg = (void *)_nc_Copy_Argument(src->type,(TypeArgument *)(src->arg),&err);
208 if (err)
210 _nc_Free_Argument(dst->type,(TypeArgument *)(dst->arg));
211 dst->type = (FIELDTYPE *)0;
212 dst->arg = (void *)0;
213 return FALSE;
215 else
217 if (dst->type)
218 dst->type->ref++;
219 return TRUE;
223 /*---------------------------------------------------------------------------
224 | Facility : libnform
225 | Function : void _nc_Free_Type( FIELD *field )
227 | Description : Release Argument structure for this field
229 | Return Values : -
230 +--------------------------------------------------------------------------*/
231 void
232 _nc_Free_Type(FIELD *field)
234 assert(field != 0);
235 if (field->type)
236 field->type->ref--;
237 _nc_Free_Argument(field->type,(TypeArgument *)(field->arg));
240 /*---------------------------------------------------------------------------
241 | Facility : libnform
242 | Function : FIELD *new_field( int rows, int cols,
243 | int frow, int fcol,
244 | int nrow, int nbuf )
246 | Description : Create a new field with this many 'rows' and 'cols',
247 | starting at 'frow/fcol' in the subwindow of the form.
248 | Allocate 'nrow' off-screen rows and 'nbuf' additional
249 | buffers. If an error occurs, errno is set to
251 | E_BAD_ARGUMENT - invalid argument
252 | E_SYSTEM_ERROR - system error
254 | Return Values : Pointer to the new field or NULL if failure.
255 +--------------------------------------------------------------------------*/
256 FIELD *new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf)
258 FIELD *New_Field = (FIELD *)0;
259 int err = E_BAD_ARGUMENT;
261 if (rows>0 &&
262 cols>0 &&
263 frow>=0 &&
264 fcol>=0 &&
265 nrow>=0 &&
266 nbuf>=0 &&
267 ((err = E_SYSTEM_ERROR) != 0) && /* trick: this resets the default error */
268 (New_Field=(FIELD *)malloc(sizeof(FIELD))) )
270 *New_Field = default_field;
271 New_Field->rows = rows;
272 New_Field->cols = cols;
273 New_Field->drows = rows + nrow;
274 New_Field->dcols = cols;
275 New_Field->frow = frow;
276 New_Field->fcol = fcol;
277 New_Field->nrow = nrow;
278 New_Field->nbuf = nbuf;
279 New_Field->link = New_Field;
281 if (_nc_Copy_Type(New_Field,&default_field))
283 size_t len;
285 len = Total_Buffer_Size(New_Field);
286 if ((New_Field->buf = (char *)malloc(len)))
288 /* Prefill buffers with blanks and insert terminating zeroes
289 between buffers */
290 int i;
292 memset(New_Field->buf,' ',len);
293 for(i=0;i<=New_Field->nbuf;i++)
295 New_Field->buf[(New_Field->drows*New_Field->cols+1)*(i+1)-1]
296 = '\0';
298 return New_Field;
303 if (New_Field)
304 free_field(New_Field);
306 SET_ERROR( err );
307 return (FIELD *)0;
310 /*---------------------------------------------------------------------------
311 | Facility : libnform
312 | Function : int free_field( FIELD *field )
314 | Description : Frees the storage allocated for the field.
316 | Return Values : E_OK - success
317 | E_BAD_ARGUMENT - invalid field pointer
318 | E_CONNECTED - field is connected
319 +--------------------------------------------------------------------------*/
320 int free_field(FIELD * field)
322 if (!field)
323 RETURN(E_BAD_ARGUMENT);
325 if (field->form)
326 RETURN(E_CONNECTED);
328 if (field == field->link)
330 if (field->buf)
331 free(field->buf);
333 else
335 FIELD *f;
337 for(f=field;f->link != field;f = f->link)
339 f->link = field->link;
341 _nc_Free_Type(field);
342 free(field);
343 RETURN(E_OK);
346 /* fld_def.c ends here */