form.priv.h revision 166124
1169691Skan/****************************************************************************
2169691Skan * Copyright (c) 1998-2004,2005 Free Software Foundation, Inc.              *
3169691Skan *                                                                          *
4169691Skan * Permission is hereby granted, free of charge, to any person obtaining a  *
5169691Skan * copy of this software and associated documentation files (the            *
6169691Skan * "Software"), to deal in the Software without restriction, including      *
7169691Skan * without limitation the rights to use, copy, modify, merge, publish,      *
8169691Skan * distribute, distribute with modifications, sublicense, and/or sell       *
9169691Skan * copies of the Software, and to permit persons to whom the Software is    *
10169691Skan * furnished to do so, subject to the following conditions:                 *
11169691Skan *                                                                          *
12169691Skan * The above copyright notice and this permission notice shall be included  *
13169691Skan * in all copies or substantial portions of the Software.                   *
14169691Skan *                                                                          *
15169691Skan * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16169691Skan * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17169691Skan * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18169691Skan * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19169691Skan * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20169691Skan * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21169691Skan * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22169691Skan *                                                                          *
23169691Skan * Except as contained in this notice, the name(s) of the above copyright   *
24169691Skan * holders shall not be used in advertising or otherwise to promote the     *
25169691Skan * sale, use or other dealings in this Software without prior written       *
26169691Skan * authorization.                                                           *
27169691Skan ****************************************************************************/
28169691Skan
29169691Skan/****************************************************************************
30169691Skan *   Author:  Juergen Pfeifer, 1995,1997                                    *
31169691Skan ****************************************************************************/
32169691Skan
33169691Skan/* $Id: form.priv.h,v 0.26 2006/12/17 19:47:09 tom Exp $ */
34169691Skan
35169691Skan#ifndef FORM_PRIV_H
36169691Skan#define FORM_PRIV_H 1
37169691Skan
38169691Skan#include "curses.priv.h"
39169691Skan#include "mf_common.h"
40169691Skan
41169691Skan#if USE_WIDEC_SUPPORT
42169691Skan#include <wchar.h>
43169691Skan
44169691Skan#if HAVE_WCTYPE_H
45169691Skan#include <wctype.h>
46169691Skan#endif
47169691Skan
48169691Skan#ifndef MB_LEN_MAX
49169691Skan#define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
50169691Skan#endif
51169691Skan
52169691Skan#define FIELD_CELL NCURSES_CH_T
53169691Skan
54169691Skan#define NCURSES_FIELD_INTERNALS char** expanded; WINDOW *working;
55169691Skan#define NCURSES_FIELD_EXTENSION , (char **)0, (WINDOW *)0
56169691Skan
57169691Skan#else
58169691Skan
59169691Skan#define FIELD_CELL char
60169691Skan
61169691Skan#define NCURSES_FIELD_EXTENSION /* nothing */
62169691Skan
63169691Skan#endif
64169691Skan
65169691Skan#include "form.h"
66169691Skan
67169691Skan/* form  status values */
68169691Skan#define _OVLMODE         (0x04U) /* Form is in overlay mode                */
69169691Skan#define _WINDOW_MODIFIED (0x10U) /* Current field window has been modified */
70169691Skan#define _FCHECK_REQUIRED (0x20U) /* Current field needs validation         */
71169691Skan
72169691Skan/* field status values */
73169691Skan#define _CHANGED         (0x01U) /* Field has been changed                 */
74169691Skan#define _NEWTOP          (0x02U) /* Vertical scrolling occurred            */
75169691Skan#define _NEWPAGE         (0x04U) /* field begins new page of form          */
76169691Skan#define _MAY_GROW        (0x08U) /* dynamic field may still grow           */
77169691Skan
78169691Skan/* fieldtype status values */
79169691Skan#define _LINKED_TYPE     (0x01U) /* Type is a linked type                  */
80169691Skan#define _HAS_ARGS        (0x02U) /* Type has arguments                     */
81169691Skan#define _HAS_CHOICE      (0x04U) /* Type has choice methods                */
82169691Skan#define _RESIDENT        (0x08U) /* Type is built-in                       */
83169691Skan
84169691Skan/* This are the field options required to be a selectable field in field
85169691Skan   navigation requests */
86169691Skan#define O_SELECTABLE (O_ACTIVE | O_VISIBLE)
87169691Skan
88169691Skan/* If form is NULL replace form argument by default-form */
89169691Skan#define Normalize_Form(form) \
90169691Skan  ((form) = (form != 0) ? (form) : _nc_Default_Form)
91169691Skan
92169691Skan/* If field is NULL replace field argument by default-field */
93169691Skan#define Normalize_Field(field) \
94169691Skan  ((field) = (field != 0) ? (field) : _nc_Default_Field)
95169691Skan
96169691Skan/* Retrieve forms window */
97169691Skan#define Get_Form_Window(form) \
98169691Skan  ((form)->sub?(form)->sub:((form)->win?(form)->win:stdscr))
99169691Skan
100169691Skan/* Calculate the size for a single buffer for this field */
101169691Skan#define Buffer_Length(field) ((field)->drows * (field)->dcols)
102
103/* Calculate the total size of all buffers for this field */
104#define Total_Buffer_Size(field) \
105   ( (Buffer_Length(field) + 1) * (1+(field)->nbuf) * sizeof(FIELD_CELL) )
106
107/* Logic to determine whether or not a field is single lined */
108#define Single_Line_Field(field) \
109   (((field)->rows + (field)->nrow) == 1)
110
111/* Logic to determine whether or not a field is selectable */
112#define Field_Is_Selectable(f)     (((unsigned)((f)->opts) & O_SELECTABLE)==O_SELECTABLE)
113#define Field_Is_Not_Selectable(f) (((unsigned)((f)->opts) & O_SELECTABLE)!=O_SELECTABLE)
114
115typedef struct typearg
116  {
117    struct typearg *left;
118    struct typearg *right;
119  }
120TypeArgument;
121
122/* This is a dummy request code (normally invalid) to be used internally
123   with the form_driver() routine to position to the first active field
124   on the form
125*/
126#define FIRST_ACTIVE_MAGIC (-291056)
127
128#define ALL_FORM_OPTS  (                \
129			O_NL_OVERLOAD  |\
130			O_BS_OVERLOAD   )
131
132#define ALL_FIELD_OPTS (Field_Options)( \
133			O_VISIBLE |\
134			O_ACTIVE  |\
135			O_PUBLIC  |\
136			O_EDIT    |\
137			O_WRAP    |\
138			O_BLANK   |\
139			O_AUTOSKIP|\
140			O_NULLOK  |\
141			O_PASSOK  |\
142			O_STATIC   )
143
144#define C_BLANK ' '
145#define is_blank(c) ((c)==C_BLANK)
146
147#define C_ZEROS '\0'
148
149extern NCURSES_EXPORT_VAR(const FIELDTYPE *) _nc_Default_FieldType;
150
151extern NCURSES_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
152extern NCURSES_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int*);
153extern NCURSES_EXPORT(void) _nc_Free_Argument (const FIELDTYPE*, TypeArgument*);
154extern NCURSES_EXPORT(bool) _nc_Copy_Type (FIELD*, FIELD const *);
155extern NCURSES_EXPORT(void) _nc_Free_Type (FIELD *);
156
157extern NCURSES_EXPORT(int) _nc_Synchronize_Attributes (FIELD*);
158extern NCURSES_EXPORT(int) _nc_Synchronize_Options (FIELD*, Field_Options);
159extern NCURSES_EXPORT(int) _nc_Set_Form_Page (FORM*, int, FIELD*);
160extern NCURSES_EXPORT(int) _nc_Refresh_Current_Field (FORM*);
161extern NCURSES_EXPORT(FIELD *) _nc_First_Active_Field (FORM*);
162extern NCURSES_EXPORT(bool) _nc_Internal_Validation (FORM*);
163extern NCURSES_EXPORT(int) _nc_Set_Current_Field (FORM*, FIELD*);
164extern NCURSES_EXPORT(int) _nc_Position_Form_Cursor (FORM*);
165
166#if USE_WIDEC_SUPPORT
167extern NCURSES_EXPORT(wchar_t *) _nc_Widen_String(char *, int *);
168#endif
169
170#ifdef TRACE
171
172#define returnField(code)	TRACE_RETURN(code,field)
173#define returnFieldPtr(code)	TRACE_RETURN(code,field_ptr)
174#define returnForm(code)	TRACE_RETURN(code,form)
175#define returnFieldType(code)	TRACE_RETURN(code,field_type)
176#define returnFormHook(code)	TRACE_RETURN(code,form_hook)
177
178extern NCURSES_EXPORT(FIELD **)	    _nc_retrace_field_ptr (FIELD **);
179extern NCURSES_EXPORT(FIELD *)	    _nc_retrace_field (FIELD *);
180extern NCURSES_EXPORT(FIELDTYPE *)  _nc_retrace_field_type (FIELDTYPE *);
181extern NCURSES_EXPORT(FORM *)  _nc_retrace_form (FORM *);
182extern NCURSES_EXPORT(Form_Hook)  _nc_retrace_form_hook (Form_Hook);
183
184#else /* !TRACE */
185
186#define returnFieldPtr(code)	return code
187#define returnFieldType(code)	return code
188#define returnField(code)	return code
189#define returnForm(code)	return code
190#define returnFormHook(code)	return code
191
192#endif /* TRACE/!TRACE */
193
194/*
195 * Use Check_CTYPE_Field() to simplify FIELDTYPE's that use only the ccheck()
196 * function.
197 */
198#if USE_WIDEC_SUPPORT
199#define Check_CTYPE_Field(result, buffer, width, ccheck) \
200  while (*buffer && *buffer == ' ') \
201    buffer++; \
202  if (*buffer) \
203    { \
204      bool blank = FALSE; \
205      int len; \
206      int n; \
207      wchar_t *list = _nc_Widen_String((char *)buffer, &len); \
208      if (list != 0) \
209	{ \
210	  result = TRUE; \
211	  for (n = 0; n < len; ++n) \
212	    { \
213	      if (blank) \
214		{ \
215		  if (list[n] != ' ') \
216		    { \
217		      result = FALSE; \
218		      break; \
219		    } \
220		} \
221	      else if (list[n] == ' ') \
222		{ \
223		  blank = TRUE; \
224		  result = (n + 1 >= width); \
225		} \
226	      else if (!ccheck(list[n], NULL)) \
227		{ \
228		  result = FALSE; \
229		  break; \
230		} \
231	    } \
232	  free(list); \
233	} \
234    }
235#else
236#define Check_CTYPE_Field(result, buffer, width, ccheck) \
237  while (*buffer && *buffer == ' ') \
238    buffer++; \
239  if (*buffer) \
240    { \
241      unsigned char *s = buffer; \
242      int l = -1; \
243      while (*buffer && ccheck(*buffer, NULL)) \
244	buffer++; \
245      l = (int)(buffer - s); \
246      while (*buffer && *buffer == ' ') \
247	buffer++; \
248      result = ((*buffer || (l < width)) ? FALSE : TRUE); \
249    }
250#endif
251
252#endif /* FORM_PRIV_H */
253