]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 5.9 - patch 20120310
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998-2011,2012 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  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  *     and: Juergen Pfeifer                                                 *
34  ****************************************************************************/
35
36 /*
37  * $Id: curses.priv.h,v 1.499 2012/03/10 21:16:32 tom Exp $
38  *
39  *      curses.priv.h
40  *
41  *      Header file for curses library objects which are private to
42  *      the library.
43  *
44  */
45
46 #ifndef CURSES_PRIV_H
47 #define CURSES_PRIV_H 1
48 /* *INDENT-OFF* */
49
50 #include <ncurses_dll.h>
51
52 #ifdef __cplusplus
53 extern "C" {
54 #endif
55
56 #include <ncurses_cfg.h>
57
58 #if USE_RCS_IDS
59 #define MODULE_ID(id) static const char Ident[] = id;
60 #else
61 #define MODULE_ID(id) /*nothing*/
62 #endif
63
64 #include <stddef.h>             /* for offsetof */
65 #include <stdlib.h>
66 #include <string.h>
67 #include <sys/types.h>
68 #include <sys/stat.h>
69
70 #if HAVE_UNISTD_H
71 #include <unistd.h>
72 #endif
73
74 #if HAVE_SYS_BSDTYPES_H
75 #include <sys/bsdtypes.h>       /* needed for ISC */
76 #endif
77
78 #if HAVE_LIMITS_H
79 # include <limits.h>
80 #elif HAVE_SYS_PARAM_H
81 # include <sys/param.h>
82 #endif
83
84 #include <assert.h>
85 #include <stdio.h>
86
87 #include <errno.h>
88
89 #ifndef PATH_MAX
90 # if defined(_POSIX_PATH_MAX)
91 #  define PATH_MAX _POSIX_PATH_MAX
92 # elif defined(MAXPATHLEN)
93 #  define PATH_MAX MAXPATHLEN
94 # else
95 #  define PATH_MAX 255  /* the Posix minimum path-size */
96 # endif
97 #endif
98
99 #if DECL_ERRNO
100 extern int errno;
101 #endif
102
103 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
104 #if HAVE_WORKING_POLL
105 #define USE_FUNC_POLL 1
106 #if HAVE_POLL_H
107 #include <poll.h>
108 #else
109 #include <sys/poll.h>
110 #endif
111 #else
112 #define USE_FUNC_POLL 0
113 #endif
114
115 #if HAVE_INTTYPES_H
116 # include <inttypes.h>
117 #else
118 # if HAVE_STDINT_H
119 #  include <stdint.h>
120 # endif
121 #endif
122
123 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
124 #include <signal.h>
125
126 /* Alessandro Rubini's GPM (general-purpose mouse) */
127 #if HAVE_LIBGPM && HAVE_GPM_H
128 #define USE_GPM_SUPPORT 1
129 #else
130 #define USE_GPM_SUPPORT 0
131 #endif
132
133 /* QNX mouse support */
134 #if defined(__QNX__) && !defined(__QNXNTO__)
135 #define USE_QNX_MOUSE 1
136 #else
137 #define USE_QNX_MOUSE 0
138 #endif
139
140 /* EMX mouse support */
141 #ifdef __EMX__
142 #define USE_EMX_MOUSE 1
143 #else
144 #define USE_EMX_MOUSE 0
145 #endif
146
147 /* kLIBC keyboard/mouse support */
148 #if defined(__OS2__) && defined(__KLIBC__)
149 #define USE_KLIBC_KBD   1
150 #define USE_KLIBC_MOUSE 1
151 #else
152 #define USE_KLIBC_KBD   0
153 #define USE_KLIBC_MOUSE 0
154 #endif
155
156 #define DEFAULT_MAXCLICK 166
157 #define EV_MAX          8       /* size of mouse circular event queue */
158
159 /*
160  * If we don't have signals to support it, don't add a sigwinch handler.
161  * In any case, resizing is an extended feature.  Use it if we've got it.
162  */
163 #if !NCURSES_EXT_FUNCS
164 #undef HAVE_SIZECHANGE
165 #define HAVE_SIZECHANGE 0
166 #endif
167
168 #if HAVE_SIZECHANGE && USE_SIGWINCH && defined(SIGWINCH)
169 #define USE_SIZECHANGE 1
170 #else
171 #define USE_SIZECHANGE 0
172 #undef USE_SIGWINCH
173 #define USE_SIGWINCH 0
174 #endif
175
176 /*
177  * If desired, one can configure this, disabling environment variables that
178  * point to custom terminfo/termcap locations.
179  */
180 #ifdef USE_ROOT_ENVIRON
181 #define use_terminfo_vars() 1
182 #else
183 #define use_terminfo_vars() _nc_env_access()
184 extern NCURSES_EXPORT(int) _nc_env_access (void);
185 #endif
186
187 /*
188  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
189  * have neither).
190  */
191 #if USE_OK_BCOPY
192 #define memmove(d,s,n) bcopy(s,d,n)
193 #elif USE_MY_MEMMOVE
194 #define memmove(d,s,n) _nc_memmove(d,s,n)
195 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
196 #endif
197
198 /*
199  * If we have va_copy(), use it for assigning va_list's.
200  */
201 #if defined(HAVE___VA_COPY)
202 #define begin_va_copy(dst,src)  __va_copy(dst, src)
203 #define end_va_copy(dst)        va_end(dst)
204 #elif defined(va_copy) || defined(HAVE_VA_COPY)
205 #define begin_va_copy(dst,src)  va_copy(dst, src)
206 #define end_va_copy(dst)        va_end(dst)
207 #else
208 #define begin_va_copy(dst,src) (dst) = (src)
209 #define end_va_copy(dst)        /* nothing */
210 #endif
211
212 /*
213  * Either/both S_ISxxx and/or S_IFxxx are defined in sys/types.h; some systems
214  * lack one or the other.
215  */
216 #ifndef S_ISDIR
217 #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR)
218 #endif
219
220 #ifndef S_ISREG
221 #define S_ISREG(mode) ((mode & S_IFMT) == S_IFREG)
222 #endif
223
224 /*
225  * Scroll hints are useless when hashmap is used
226  */
227 #if !USE_SCROLL_HINTS
228 #if !USE_HASHMAP
229 #define USE_SCROLL_HINTS 1
230 #else
231 #define USE_SCROLL_HINTS 0
232 #endif
233 #endif
234
235 #if USE_SCROLL_HINTS
236 #define if_USE_SCROLL_HINTS(stmt) stmt
237 #else
238 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
239 #endif
240
241 #include <nc_string.h>
242
243 /*
244  * Options for terminal drivers, etc...
245  */
246 #ifdef USE_TERM_DRIVER
247 #define USE_SP_RIPOFF     1
248 #define USE_SP_TERMTYPE   1
249 #define USE_SP_WINDOWLIST 1
250 #endif
251
252 /*
253  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
254  * when we're throwing control codes at the screen at high volume.  To see
255  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
256  * probably don't want to define this either due to uncertainties about tab
257  * delays and expansion in raw mode.
258  */
259
260 #define TRIES struct tries
261 typedef TRIES {
262         TRIES    *child;            /* ptr to child.  NULL if none          */
263         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
264         unsigned char    ch;        /* character at this node               */
265         unsigned short   value;     /* code of string so far.  0 if none.   */
266 #undef TRIES
267 } TRIES;
268
269 /*
270  * Common/troublesome character definitions
271  */
272 #define StringOf(ch) {ch, 0}
273
274 #define L_BRACE '{'
275 #define R_BRACE '}'
276 #define S_QUOTE '\''
277 #define D_QUOTE '"'
278
279 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
280
281 /*
282  * Structure for palette tables
283  */
284
285 typedef struct
286 {
287     short red, green, blue;     /* what color_content() returns */
288     short r, g, b;              /* params to init_color() */
289     int init;                   /* true if we called init_color() */
290 }
291 color_t;
292
293 #define MAXCOLUMNS    135
294 #define MAXLINES      66
295 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
296
297 #define ACS_LEN       128
298
299 #define WINDOWLIST struct _win_list
300
301 #if USE_WIDEC_SUPPORT
302 #define _nc_bkgd    _bkgrnd
303 #else
304 #undef _XOPEN_SOURCE_EXTENDED
305 #undef _XPG5
306 #define _nc_bkgd    _bkgd
307 #define wgetbkgrnd(win, wch)    *wch = win->_bkgd
308 #define wbkgrnd     wbkgd
309 #endif
310
311 #undef NCURSES_OPAQUE
312 #define NCURSES_INTERNALS 1
313 #define NCURSES_OPAQUE 0
314
315 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
316
317 /*
318  * If curses.h did not expose the SCREEN-functions, then we do not need the
319  * parameter in the corresponding unextended functions.
320  */
321
322 #define USE_SP_FUNC_SUPPORT     NCURSES_SP_FUNCS
323 #define USE_EXT_SP_FUNC_SUPPORT (NCURSES_SP_FUNCS && NCURSES_EXT_FUNCS)
324
325 #if NCURSES_SP_FUNCS
326 #define SP_PARM         sp      /* use parameter */
327 #define NCURSES_SP_ARG          SP_PARM
328 #define NCURSES_SP_DCL  SCREEN *NCURSES_SP_ARG
329 #define NCURSES_SP_DCL0 NCURSES_SP_DCL
330 #define NCURSES_SP_ARGx         NCURSES_SP_ARG,
331 #define NCURSES_SP_DCLx SCREEN *NCURSES_SP_ARGx
332 #else
333 #define SP_PARM         SP      /* use global variable */
334 #define NCURSES_SP_ARG
335 #define NCURSES_SP_DCL
336 #define NCURSES_SP_DCL0 void
337 #define NCURSES_SP_ARGx
338 #define NCURSES_SP_DCLx
339 #endif
340
341 #include <nc_panel.h>
342
343 #define IsPreScreen(sp)      (((sp) != 0) && sp->_prescreen)
344 #define HasTerminal(sp)      (((sp) != 0) && (0 != ((sp)->_term)))
345 #define IsValidScreen(sp)    (HasTerminal(sp) && !IsPreScreen(sp))
346
347 #if BROKEN_LINKER || USE_REENTRANT
348 #define CurTerm              _nc_prescreen._cur_term
349 #else
350 #define CurTerm              cur_term
351 #endif
352
353 #if NCURSES_SP_FUNCS
354 #define TerminalOf(sp)       ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
355 #else
356 #define TerminalOf(sp)       CurTerm
357 #endif
358
359 #include <term.h>
360 #include <nc_termios.h>
361
362 /*
363  * Reduce dependency on cur_term global by using terminfo data from SCREEN's
364  * pointer to this data.
365  */
366 #ifdef USE_SP_TERMTYPE
367 #undef CUR
368 #endif
369
370 #define SP_TERMTYPE TerminalOf(sp)->type.
371
372 #include <term_entry.h>
373
374 #include <nc_tparm.h>
375
376 /*
377  * Use these macros internally, to make tracing less verbose.  But leave the
378  * option for compiling the tracing into the library.
379  */
380 #if 1
381 #define ColorPair(n)            NCURSES_BITS(n, 0)
382 #define PairNumber(a)           (NCURSES_CAST(int,(((unsigned long)(a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
383 #else
384 #define ColorPair(pair)         COLOR_PAIR(pair)
385 #define PairNumber(attr)        PAIR_NUMBER(attr)
386 #endif
387
388 #define unColor(n)              unColor2(AttrOf(n))
389 #define unColor2(a)             ((a) & ALL_BUT_COLOR)
390
391 /*
392  * Extended-colors stores the color pair in a separate struct-member than the
393  * attributes.  But for compatibility, we handle most cases where a program
394  * written for non-extended colors stores the color in the attributes by
395  * checking for a color pair in both places.
396  */
397 #if NCURSES_EXT_COLORS
398 #define if_EXT_COLORS(stmt)     stmt
399 #define SetPair(value,p)        SetPair2((value).ext_color, AttrOf(value), p)
400 #define SetPair2(c,a,p)         c = (p), \
401                                 a = (unColor2(a) | (A_COLOR & (unsigned) ColorPair(oldColor(c))))
402 #define GetPair(value)          GetPair2((value).ext_color, AttrOf(value))
403 #define GetPair2(c,a)           ((c) ? (c) : PairNumber(a))
404 #define oldColor(p)             (((p) > 255) ? 255 : (p))
405 #define GET_WINDOW_PAIR(w)      GetPair2((w)->_color, (w)->_attrs)
406 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
407 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
408
409 #if NCURSES_SP_FUNCS
410 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vid_attr)(sp, attr, (short) pair, 0)
411 #else
412 #define VIDATTR(sp,attr,pair)   vid_attr(attr, (short) pair, 0)
413 #endif
414
415 #else /* !NCURSES_EXT_COLORS */
416
417 #define if_EXT_COLORS(stmt)     /* nothing */
418 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
419                                 SetAttr(value, AttrOf(value) | (A_COLOR & (attr_t) ColorPair(p)))
420 #define GetPair(value)          PairNumber(AttrOf(value))
421 #define GET_WINDOW_PAIR(w)      PairNumber(WINDOW_ATTRS(w))
422 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
423                                 WINDOW_ATTRS(w) |= (A_COLOR & (attr_t) ColorPair(p))
424 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
425
426 #if NCURSES_SP_FUNCS
427 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vidattr)(sp, attr)
428 #else
429 #define VIDATTR(sp,attr,pair)   vidattr(attr)
430 #endif
431
432 #endif /* NCURSES_EXT_COLORS */
433
434 #if NCURSES_NO_PADDING
435 #define GetNoPadding(sp)        ((sp) ? (sp)->_no_padding : _nc_prescreen._no_padding)
436 #define SetNoPadding(sp)        _nc_set_no_padding(sp)
437 extern NCURSES_EXPORT(void)     _nc_set_no_padding(SCREEN *);
438 #else
439 #define GetNoPadding(sp)        FALSE
440 #define SetNoPadding(sp)        /*nothing*/
441 #endif
442
443 #define WINDOW_ATTRS(w)         ((w)->_attrs)
444
445 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
446 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
447 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
448
449 #if USE_REENTRANT || NCURSES_SP_FUNCS
450 NCURSES_EXPORT(int *)        _nc_ptr_Lines (SCREEN *);
451 NCURSES_EXPORT(int *)        _nc_ptr_Cols (SCREEN *);
452 NCURSES_EXPORT(int *)        _nc_ptr_Tabsize (SCREEN *);
453 NCURSES_EXPORT(int *)        _nc_ptr_Escdelay (SCREEN *);
454 #endif
455
456 #if USE_REENTRANT
457
458 #define ptrLines(sp)         (sp ? &(sp->_LINES) : &(_nc_prescreen._LINES))
459 #define ptrCols(sp)          (sp ? &(sp->_COLS) : &(_nc_prescreen._COLS))
460 #define ptrTabsize(sp)       (sp ? &(sp->_TABSIZE) : &(_nc_prescreen._TABSIZE))
461 #define ptrEscdelay(sp)      (sp ? &(sp->_ESCDELAY) : &(_nc_prescreen._ESCDELAY))
462
463 #define SET_LINES(value)     *_nc_ptr_Lines(SP_PARM) = value
464 #define SET_COLS(value)      *_nc_ptr_Cols(SP_PARM) = value
465 #define SET_TABSIZE(value)   *_nc_ptr_Tabsize(SP_PARM) = value
466 #define SET_ESCDELAY(value)  *_nc_ptr_Escdelay(SP_PARM) = value
467
468 #else
469
470 #define ptrLines(sp)         &LINES
471 #define ptrCols(sp)          &COLS
472 #define ptrTabsize(sp)       &TABSIZE
473 #define ptrEscdelay(sp)      &ESCDELAY
474
475 #define SET_LINES(value)     LINES = value
476 #define SET_COLS(value)      COLS = value
477 #define SET_TABSIZE(value)   TABSIZE = value
478 #define SET_ESCDELAY(value)  ESCDELAY = value
479
480 #endif
481
482 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
483             __FILE__, __LINE__, \
484             (unsigned long) (pthread_self()), \
485             data.__data.__lock, \
486             data.__data.__count, \
487             data.__data.__owner, \
488             data.__data.__kind, \
489             (data.__data.__nusers > 5) ? " OOPS " : "", \
490             data.__data.__nusers)
491 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
492
493 #if USE_WEAK_SYMBOLS
494 #if defined(__GNUC__)
495 #  if defined __USE_ISOC99
496 #    define _cat_pragma(exp)    _Pragma(#exp)
497 #    define _weak_pragma(exp)   _cat_pragma(weak name)
498 #  else
499 #    define _weak_pragma(exp)
500 #  endif
501 #  define _declare(name)        __extension__ extern __typeof__(name) name
502 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
503 #else
504 #  undef USE_WEAK_SYMBOLS
505 #  define USE_WEAK_SYMBOLS 0
506 #endif
507 #endif
508
509 #ifdef USE_PTHREADS
510
511 #if USE_REENTRANT
512 #include <pthread.h>
513 extern NCURSES_EXPORT(void) _nc_init_pthreads(void);
514 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
515 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
516 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
517 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
518 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
519 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
520 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
521
522 #else
523 #error POSIX threads requires --enable-reentrant option
524 #endif
525
526 #ifdef USE_PTHREADS
527 #  if USE_WEAK_SYMBOLS
528 weak_symbol(pthread_sigmask);
529 weak_symbol(pthread_kill);
530 weak_symbol(pthread_self);
531 weak_symbol(pthread_equal);
532 weak_symbol(pthread_mutex_init);
533 weak_symbol(pthread_mutex_lock);
534 weak_symbol(pthread_mutex_unlock);
535 weak_symbol(pthread_mutex_trylock);
536 weak_symbol(pthread_mutexattr_settype);
537 weak_symbol(pthread_mutexattr_init);
538 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
539 #    undef  sigprocmask
540 #    define sigprocmask _nc_sigprocmask
541 #  endif
542 #endif
543
544 #if HAVE_NANOSLEEP
545 #undef HAVE_NANOSLEEP
546 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
547 #endif
548
549 #else /* !USE_PTHREADS */
550
551 #if USE_PTHREADS_EINTR
552 #  if USE_WEAK_SYMBOLS
553 #include <pthread.h>
554 weak_symbol(pthread_sigmask);
555 weak_symbol(pthread_kill);
556 weak_symbol(pthread_self);
557 weak_symbol(pthread_equal);
558 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
559 #    undef  sigprocmask
560 #    define sigprocmask _nc_sigprocmask
561 #  endif
562 #endif /* USE_PTHREADS_EINTR */
563
564 #define _nc_init_pthreads()     /* nothing */
565 #define _nc_mutex_init(obj)     /* nothing */
566
567 #define _nc_lock_global(name)   /* nothing */
568 #define _nc_try_global(name)    0
569 #define _nc_unlock_global(name) /* nothing */
570
571 #endif /* USE_PTHREADS */
572
573 /*
574  * When using sp-funcs, locks are targeted to SCREEN-level granularity.
575  * So the locking is done in the non-sp-func (which calls the sp-func) rather
576  * than in the sp-func itself.
577  *
578  * Use the _nc_nonsp_XXX functions in the function using "NCURSES_SP_NAME()".
579  * Use the _nc_sp_XXX functions in the function using "#if NCURSES_SP_FUNCS".
580  */
581 #if NCURSES_SP_FUNCS
582
583 #define _nc_nonsp_lock_global(name)     /* nothing */
584 #define _nc_nonsp_try_global(name)    0
585 #define _nc_nonsp_unlock_global(name)   /* nothing */
586
587 #define _nc_sp_lock_global(name)        _nc_lock_global(name)
588 #define _nc_sp_try_global(name)         _nc_try_global(name)
589 #define _nc_sp_unlock_global(name)      _nc_unlock_global(name)
590
591 #else
592
593 #define _nc_nonsp_lock_global(name)     _nc_lock_global(name)
594 #define _nc_nonsp_try_global(name)      _nc_try_global(name)
595 #define _nc_nonsp_unlock_global(name)   _nc_unlock_global(name)
596
597 #define _nc_sp_lock_global(name)        /* nothing */
598 #define _nc_sp_try_global(name)    0
599 #define _nc_sp_unlock_global(name)      /* nothing */
600
601 #endif
602
603 #if HAVE_GETTIMEOFDAY
604 # define PRECISE_GETTIME 1
605 # define TimeType struct timeval
606 #else
607 # define PRECISE_GETTIME 0
608 # define TimeType time_t
609 #endif
610
611 /*
612  * Definitions for color pairs
613  */
614 typedef unsigned colorpair_t;   /* type big enough to store PAIR_OF() */
615 #define C_SHIFT 9               /* we need more bits than there are colors */
616 #define C_MASK                  ((1 << C_SHIFT) - 1)
617 #define PAIR_OF(fg, bg)         (colorpair_t) ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
618 #define FORE_OF(c)              (((c) >> C_SHIFT) & C_MASK)
619 #define BACK_OF(c)              ((c) & C_MASK)
620 #define isDefaultColor(c)       ((c) >= COLOR_DEFAULT || (c) < 0)
621
622 #define COLOR_DEFAULT           C_MASK
623
624 #if defined(USE_BUILD_CC) || (defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T))
625
626 #undef NCURSES_CH_T             /* this is not a termlib feature */
627 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
628
629 #endif  /* USE_TERMLIB */
630
631 #ifndef USE_TERMLIB
632 struct ldat
633 {
634         NCURSES_CH_T    *text;          /* text of the line */
635         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
636         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
637         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
638 };
639 #endif  /* USE_TERMLIB */
640
641 typedef enum {
642         M_XTERM = -1            /* use xterm's mouse tracking? */
643         ,M_NONE = 0             /* no mouse device */
644 #if USE_GPM_SUPPORT
645         ,M_GPM                  /* use GPM */
646 #endif
647 #if USE_SYSMOUSE
648         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
649 #endif
650 #ifdef USE_TERM_DRIVER
651         ,M_TERM_DRIVER          /* Win32 console, etc */
652 #endif
653 } MouseType;
654
655 /*
656  * Structures for scrolling.
657  */
658
659 typedef struct {
660         unsigned long hashval;
661         int oldcount, newcount;
662         int oldindex, newindex;
663 } HASHMAP;
664
665 /*
666  * Structures for soft labels.
667  */
668
669 struct _SLK;
670
671 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
672
673 typedef struct
674 {
675         char *ent_text;         /* text for the label */
676         char *form_text;        /* formatted text (left/center/...) */
677         int ent_x;              /* x coordinate of this field */
678         char dirty;             /* this label has changed */
679         char visible;           /* field is visible */
680 } slk_ent;
681
682 typedef struct _SLK {
683         bool    dirty;          /* all labels have changed */
684         bool    hidden;         /* soft labels are hidden */
685         WINDOW  *win;
686         slk_ent *ent;
687         short   maxlab;         /* number of available labels */
688         short   labcnt;         /* number of allocated labels */
689         short   maxlen;         /* length of labels */
690         NCURSES_CH_T attr;      /* soft label attribute */
691 } SLK;
692
693 #endif  /* USE_TERMLIB */
694
695 typedef struct {
696         WINDOW *win;            /* the window used in the hook      */
697         int     line;           /* lines to take, < 0 => from bottom*/
698         int     (*hook)(WINDOW *, int); /* callback for user        */
699 } ripoff_t;
700
701 #if USE_GPM_SUPPORT
702 #undef buttons                  /* term.h defines this, and gpm uses it! */
703 #include <gpm.h>
704 #if USE_WEAK_SYMBOLS
705 weak_symbol(Gpm_Wgetch);
706 #endif
707
708 #ifdef HAVE_LIBDL
709 /* link dynamically to GPM */
710 typedef int *TYPE_gpm_fd;
711 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
712 typedef int (*TYPE_Gpm_Close) (void);
713 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
714
715 #define my_gpm_fd       SP_PARM->_mouse_gpm_fd
716 #define my_Gpm_Open     SP_PARM->_mouse_Gpm_Open
717 #define my_Gpm_Close    SP_PARM->_mouse_Gpm_Close
718 #define my_Gpm_GetEvent SP_PARM->_mouse_Gpm_GetEvent
719 #else
720 /* link statically to GPM */
721 #define my_gpm_fd       &gpm_fd
722 #define my_Gpm_Open     Gpm_Open
723 #define my_Gpm_Close    Gpm_Close
724 #define my_Gpm_GetEvent Gpm_GetEvent
725 #endif /* HAVE_LIBDL */
726 #endif /* USE_GPM_SUPPORT */
727
728 typedef struct {
729     long sequence;
730     bool last_used;
731     char *fix_sgr0;             /* this holds the filtered sgr0 string */
732     char *last_bufp;            /* help with fix_sgr0 leak */
733     TERMINAL *last_term;
734 } TGETENT_CACHE;
735
736 #define TGETENT_MAX 4
737
738 /*
739  * State of tparm().
740  */
741 #define STACKSIZE 20
742
743 typedef struct {
744         union {
745                 int     num;
746                 char    *str;
747         } data;
748         bool num_type;
749 } STACK_FRAME;
750
751 #define NUM_VARS 26
752
753 typedef struct {
754 #ifdef TRACE
755         const char      *tname;
756 #endif
757         const char      *tparam_base;
758
759         STACK_FRAME     stack[STACKSIZE];
760         int             stack_ptr;
761
762         char            *out_buff;
763         size_t          out_size;
764         size_t          out_used;
765
766         char            *fmt_buff;
767         size_t          fmt_size;
768
769         int             dynamic_var[NUM_VARS];
770         int             static_vars[NUM_VARS];
771 } TPARM_STATE;
772
773 typedef struct {
774     char *text;
775     size_t size;
776 } TRACEBUF;
777
778 /*
779  * The filesystem database normally uses a single-letter for the lower level
780  * of directories.  Use a hexadecimal code for filesystems which do not
781  * preserve mixed-case names.
782  */
783 #if MIXEDCASE_FILENAMES
784 #define LEAF_FMT "%c"
785 #define LEAF_LEN 1
786 #else
787 #define LEAF_FMT "%02x"
788 #define LEAF_LEN 2
789 #endif
790
791 /*
792  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
793  * could at most have 10 digits, and the mask contains no more than 32 bits
794  * with each bit representing less than 15 characters.  Usually the whole
795  * string is less than 80 columns, but this buffer size is an absolute
796  * limit.
797  */
798 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
799 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
800
801 #ifdef USE_TERM_DRIVER
802 struct DriverTCB; /* Terminal Control Block forward declaration */
803 #define INIT_TERM_DRIVER()      _nc_globals.term_driver = _nc_get_driver
804 #else
805 #define INIT_TERM_DRIVER()      /* nothing */
806 #endif
807
808 typedef struct {
809     const char *name;
810     char *value;
811 } ITERATOR_VARS;
812
813 /*
814  * Global data which is not specific to a screen.
815  */
816 typedef struct {
817         SIG_ATOMIC_T    have_sigwinch;
818         SIG_ATOMIC_T    cleanup_nested;
819
820         bool            init_signals;
821         bool            init_screen;
822
823         char            *comp_sourcename;
824         char            *comp_termtype;
825
826         bool            have_tic_directory;
827         bool            keep_tic_directory;
828         const char      *tic_directory;
829
830         char            *dbi_list;
831         int             dbi_size;
832
833         char            *first_name;
834         char            **keyname_table;
835
836         int             slk_format;
837
838         char            *safeprint_buf;
839         size_t          safeprint_used;
840
841         TGETENT_CACHE   tgetent_cache[TGETENT_MAX];
842         int             tgetent_index;
843         long            tgetent_sequence;
844
845         char            *dbd_blob;      /* string-heap for dbd_list[] */
846         char            **dbd_list;     /* distinct places to look for data */
847         int             dbd_size;       /* length of dbd_list[] */
848         time_t          dbd_time;       /* cache last updated */
849         ITERATOR_VARS   dbd_vars[dbdLAST];
850
851 #ifndef USE_SP_WINDOWLIST
852         WINDOWLIST      *_nc_windowlist;
853 #define WindowList(sp)  _nc_globals._nc_windowlist
854 #endif
855
856 #if USE_HOME_TERMINFO
857         char            *home_terminfo;
858 #endif
859
860 #if !USE_SAFE_SPRINTF
861         int             safeprint_cols;
862         int             safeprint_rows;
863 #endif
864
865 #ifdef USE_TERM_DRIVER
866         int             (*term_driver)(struct DriverTCB*, const char*, int*);
867 #endif
868
869 #ifdef TRACE
870         bool            init_trace;
871         char            trace_fname[PATH_MAX];
872         int             trace_level;
873         FILE            *trace_fp;
874
875         char            *tracearg_buf;
876         size_t          tracearg_used;
877
878         TRACEBUF        *tracebuf_ptr;
879         size_t          tracebuf_used;
880
881         char            tracechr_buf[40];
882
883         char            *tracedmp_buf;
884         size_t          tracedmp_used;
885
886         unsigned char   *tracetry_buf;
887         size_t          tracetry_used;
888
889         char            traceatr_color_buf[2][80];
890         int             traceatr_color_sel;
891         int             traceatr_color_last;
892 #if !defined(USE_PTHREADS) && USE_REENTRANT
893         int             nested_tracef;
894 #endif
895 #endif  /* TRACE */
896
897 #ifdef USE_PTHREADS
898         pthread_mutex_t mutex_curses;
899         pthread_mutex_t mutex_tst_tracef;
900         pthread_mutex_t mutex_tracef;
901         int             nested_tracef;
902         int             use_pthreads;
903 #define _nc_use_pthreads        _nc_globals.use_pthreads
904 #endif
905 #if USE_PTHREADS_EINTR
906         pthread_t       read_thread;            /* The reading thread */
907 #endif
908 } NCURSES_GLOBALS;
909
910 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
911
912 #define N_RIPS 5
913
914 /*
915  * Global data which can be swept up into a SCREEN when one is created.
916  * It may be modified before the next SCREEN is created.
917  */
918 typedef struct {
919         bool            use_env;
920         bool            filter_mode;
921         attr_t          previous_attr;
922 #ifndef USE_SP_RIPOFF
923         ripoff_t        rippedoff[N_RIPS];
924         ripoff_t        *rsp;
925 #endif
926         TPARM_STATE     tparm_state;
927         TTY             *saved_tty;     /* savetty/resetty information      */
928 #if NCURSES_NO_PADDING
929         bool            _no_padding;    /* flag to set if padding disabled  */
930 #endif
931         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
932 #if BROKEN_LINKER || USE_REENTRANT
933         chtype          *real_acs_map;
934         int             _LINES;
935         int             _COLS;
936         int             _TABSIZE;
937         int             _ESCDELAY;
938         TERMINAL        *_cur_term;
939 #ifdef TRACE
940         long            _outchars;
941         const char      *_tputs_trace;
942 #endif
943 #endif
944 } NCURSES_PRESCREEN;
945
946 /*
947  * Use screen-specific ripoff data (for softkeys) rather than global.
948  */
949 #ifdef USE_SP_RIPOFF
950 #define safe_ripoff_sp     (sp)->rsp
951 #define safe_ripoff_stack  (sp)->rippedoff
952 #else
953 #define safe_ripoff_sp     _nc_prescreen.rsp
954 #define safe_ripoff_stack  _nc_prescreen.rippedoff
955 #endif
956
957 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
958
959 /*
960  * The SCREEN structure.
961  */
962
963 struct screen {
964         int             _ifd;           /* input file ptr for screen        */
965         FILE            *_ofp;          /* output file ptr for screen       */
966         char            *_setbuf;       /* buffered I/O for output          */
967         bool            _filtered;      /* filter() was called              */
968         bool            _buffered;      /* setvbuf uses _setbuf data        */
969         bool            _prescreen;     /* is in prescreen phase            */
970         bool            _use_env;       /* LINES & COLS from environment?   */
971         int             _checkfd;       /* filedesc for typeahead check     */
972         TERMINAL        *_term;         /* terminal type information        */
973         TTY             _saved_tty;     /* savetty/resetty information      */
974         NCURSES_SIZE_T  _lines;         /* screen lines                     */
975         NCURSES_SIZE_T  _columns;       /* screen columns                   */
976
977         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
978         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
979
980         WINDOW          *_curscr;       /* current screen                   */
981         WINDOW          *_newscr;       /* virtual screen to be updated to  */
982         WINDOW          *_stdscr;       /* screen's full-window context     */
983
984 #define CurScreen(sp)  (sp)->_curscr
985 #define NewScreen(sp)  (sp)->_newscr
986 #define StdScreen(sp)  (sp)->_stdscr
987
988         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
989         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
990         bool            _tried;         /* keypad mode was initialized      */
991         bool            _keypad_on;     /* keypad mode is currently on      */
992
993         bool            _called_wgetch; /* check for recursion in wgetch()  */
994         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
995         short           _fifohead,      /* head of fifo queue               */
996                         _fifotail,      /* tail of fifo queue               */
997                         _fifopeek,      /* where to peek for next char      */
998                         _fifohold;      /* set if breakout marked           */
999
1000         int             _endwin;        /* are we out of window mode?       */
1001         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
1002         int             _coloron;       /* is color enabled?                */
1003         int             _color_defs;    /* are colors modified              */
1004         int             _cursor;        /* visibility of the cursor         */
1005         int             _cursrow;       /* physical cursor row              */
1006         int             _curscol;       /* physical cursor column           */
1007         bool            _notty;         /* true if we cannot switch non-tty */
1008         int             _nl;            /* True if NL -> CR/NL is on        */
1009         int             _raw;           /* True if in raw mode              */
1010         int             _cbreak;        /* 1 if in cbreak mode              */
1011                                         /* > 1 if in halfdelay mode         */
1012         int             _echo;          /* True if echo on                  */
1013         int             _use_meta;      /* use the meta key?                */
1014         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
1015         int             slk_format;     /* selected format for this screen  */
1016         /* cursor movement costs; units are 10ths of milliseconds */
1017 #if NCURSES_NO_PADDING
1018         bool            _no_padding;    /* flag to set if padding disabled  */
1019 #endif
1020         int             _char_padding;  /* cost of character put            */
1021         int             _cr_cost;       /* cost of (carriage_return)        */
1022         int             _cup_cost;      /* cost of (cursor_address)         */
1023         int             _home_cost;     /* cost of (cursor_home)            */
1024         int             _ll_cost;       /* cost of (cursor_to_ll)           */
1025 #if USE_HARD_TABS
1026         int             _ht_cost;       /* cost of (tab)                    */
1027         int             _cbt_cost;      /* cost of (backtab)                */
1028 #endif /* USE_HARD_TABS */
1029         int             _cub1_cost;     /* cost of (cursor_left)            */
1030         int             _cuf1_cost;     /* cost of (cursor_right)           */
1031         int             _cud1_cost;     /* cost of (cursor_down)            */
1032         int             _cuu1_cost;     /* cost of (cursor_up)              */
1033         int             _cub_cost;      /* cost of (parm_cursor_left)       */
1034         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
1035         int             _cud_cost;      /* cost of (parm_cursor_down)       */
1036         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
1037         int             _hpa_cost;      /* cost of (column_address)         */
1038         int             _vpa_cost;      /* cost of (row_address)            */
1039         /* used in tty_update.c, must be chars */
1040         int             _ed_cost;       /* cost of (clr_eos)                */
1041         int             _el_cost;       /* cost of (clr_eol)                */
1042         int             _el1_cost;      /* cost of (clr_bol)                */
1043         int             _dch1_cost;     /* cost of (delete_character)       */
1044         int             _ich1_cost;     /* cost of (insert_character)       */
1045         int             _dch_cost;      /* cost of (parm_dch)               */
1046         int             _ich_cost;      /* cost of (parm_ich)               */
1047         int             _ech_cost;      /* cost of (erase_chars)            */
1048         int             _rep_cost;      /* cost of (repeat_char)            */
1049         int             _hpa_ch_cost;   /* cost of (column_address)         */
1050         int             _cup_ch_cost;   /* cost of (cursor_address)         */
1051         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
1052         int             _inline_cost;   /* cost of inline-move              */
1053         int             _smir_cost;     /* cost of (enter_insert_mode)      */
1054         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
1055         int             _ip_cost;       /* cost of (insert_padding)         */
1056         /* used in lib_mvcur.c */
1057         char *          _address_cursor;
1058         /* used in tty_update.c */
1059         int             _scrolling;     /* 1 if terminal's smart enough to  */
1060
1061         /* used in lib_color.c */
1062         color_t         *_color_table;  /* screen's color palette            */
1063         int             _color_count;   /* count of colors in palette        */
1064         colorpair_t     *_color_pairs;  /* screen's color pair list          */
1065         int             _pair_count;    /* count of color pairs              */
1066         int             _pair_limit;    /* actual limit of color-pairs       */
1067 #if NCURSES_EXT_FUNCS
1068         bool            _assumed_color; /* use assumed colors                */
1069         bool            _default_color; /* use default colors                */
1070         bool            _has_sgr_39_49; /* has ECMA default color support    */
1071         int             _default_fg;    /* assumed default foreground        */
1072         int             _default_bg;    /* assumed default background        */
1073         int             _default_pairs; /* count pairs using default color   */
1074 #endif
1075         chtype          _ok_attributes; /* valid attributes for terminal     */
1076         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
1077         chtype          _xmc_triggers;  /* attributes to process if xmc      */
1078         chtype *        _acs_map;       /* the real alternate-charset map    */
1079         bool *          _screen_acs_map;
1080
1081
1082         /* used in lib_vidattr.c */
1083         bool            _use_rmso;      /* true if we may use 'rmso'         */
1084         bool            _use_rmul;      /* true if we may use 'rmul'         */
1085
1086 #if USE_KLIBC_KBD
1087         bool            _extended_key;  /* true if an extended key           */
1088 #endif
1089
1090         /*
1091          * These data correspond to the state of the idcok() and idlok()
1092          * functions.  A caveat is in order here:  the XSI and SVr4
1093          * documentation specify that these functions apply to the window which
1094          * is given as an argument.  However, ncurses implements this logic
1095          * only for the newscr/curscr update process, _not_ per-window.
1096          */
1097         bool            _nc_sp_idlok;
1098         bool            _nc_sp_idcok;
1099
1100         /*
1101          * These are the data that support the mouse interface.
1102          */
1103         bool            _mouse_initialized;
1104         MouseType       _mouse_type;
1105         int             _maxclick;
1106         bool            (*_mouse_event) (SCREEN *);
1107         bool            (*_mouse_inline)(SCREEN *);
1108         bool            (*_mouse_parse) (SCREEN *, int);
1109         void            (*_mouse_resume)(SCREEN *);
1110         void            (*_mouse_wrap)  (SCREEN *);
1111         int             _mouse_fd;      /* file-descriptor, if any */
1112         bool            _mouse_active;  /* true if initialized */
1113         mmask_t         _mouse_mask;    /* set via mousemask() */
1114         mmask_t         _mouse_mask2;   /* OR's in press/release bits */
1115         mmask_t         _mouse_bstate;
1116         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
1117         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
1118         MEVENT          *_mouse_eventp; /* next free slot in event queue */
1119
1120 #if USE_GPM_SUPPORT
1121         bool            _mouse_gpm_loaded;
1122         bool            _mouse_gpm_found;
1123 #ifdef HAVE_LIBDL
1124         void            *_dlopen_gpm;
1125         TYPE_gpm_fd     _mouse_gpm_fd;
1126         TYPE_Gpm_Open   _mouse_Gpm_Open;
1127         TYPE_Gpm_Close  _mouse_Gpm_Close;
1128         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
1129 #endif
1130         Gpm_Connect     _mouse_gpm_connect;
1131 #endif /* USE_GPM_SUPPORT */
1132
1133 #if USE_EMX_MOUSE
1134         int             _emxmouse_wfd;
1135         int             _emxmouse_thread;
1136         int             _emxmouse_activated;
1137         char            _emxmouse_buttons[4];
1138 #endif
1139
1140 #if USE_SYSMOUSE
1141         MEVENT          _sysmouse_fifo[FIFO_SIZE];
1142         int             _sysmouse_head;
1143         int             _sysmouse_tail;
1144         int             _sysmouse_char_width;   /* character width */
1145         int             _sysmouse_char_height;  /* character height */
1146         int             _sysmouse_old_buttons;
1147         int             _sysmouse_new_buttons;
1148 #endif
1149
1150 #ifdef USE_TERM_DRIVER
1151         MEVENT          _drv_mouse_fifo[FIFO_SIZE];
1152         int             _drv_mouse_head;
1153         int             _drv_mouse_tail;
1154         int             _drv_mouse_old_buttons;
1155         int             _drv_mouse_new_buttons;
1156 #endif
1157         /*
1158          * This supports automatic resizing
1159          */
1160 #if USE_SIZECHANGE
1161         int             (*_resize)(NCURSES_SP_DCLx int y, int x);
1162 #endif
1163
1164         /*
1165          * These are data that support the proper handling of the panel stack on an
1166          * per screen basis.
1167          */
1168         struct panelhook _panelHook;
1169
1170         bool            _sig_winch;
1171         SCREEN          *_next_screen;
1172
1173         /* hashes for old and new lines */
1174         unsigned long   *oldhash, *newhash;
1175         HASHMAP         *hashtab;
1176         int             hashtab_len;
1177         int             *_oldnum_list;
1178         int             _oldnum_size;
1179
1180         bool            _cleanup;       /* cleanup after int/quit signal */
1181         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1182
1183         int             _legacy_coding; /* see use_legacy_coding() */
1184
1185 #if USE_REENTRANT
1186         char            _ttytype[NAMESIZE];
1187         int             _ESCDELAY;
1188         int             _TABSIZE;
1189         int             _LINES;
1190         int             _COLS;
1191 #ifdef TRACE
1192         long            _outchars;
1193         const char      *_tputs_trace;
1194 #endif
1195 #endif
1196
1197 #ifdef TRACE
1198         char            tracechr_buf[40];
1199         char            tracemse_buf[TRACEMSE_MAX];
1200 #endif
1201 #ifdef USE_SP_WINDOWLIST
1202         WINDOWLIST*     _windowlist;
1203 #define WindowList(sp)  (sp)->_windowlist
1204 #endif
1205         NCURSES_OUTC    jump;
1206
1207         ripoff_t        rippedoff[N_RIPS];
1208         ripoff_t        *rsp;
1209
1210         /*
1211          * ncurses/ncursesw are the same up to this point.
1212          */
1213 #if USE_WIDEC_SUPPORT
1214         /* recent versions of 'screen' have partially-working support for
1215          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1216          */
1217         bool            _screen_acs_fix;
1218 #endif
1219 };
1220
1221 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1222 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1223
1224         WINDOWLIST {
1225         WINDOWLIST *next;
1226         SCREEN *screen;         /* screen containing the window */
1227         WINDOW  win;            /* WINDOW_EXT() needs to account for offset */
1228 #if NCURSES_WIDECHAR
1229         char addch_work[(MB_LEN_MAX * 9) + 1];
1230         unsigned addch_used;    /* number of bytes in addch_work[] */
1231         int addch_x;            /* x-position for addch_work[] */
1232         int addch_y;            /* y-position for addch_work[] */
1233 #endif
1234 };
1235
1236 #define WINDOW_EXT(w,m) (((WINDOWLIST *)((void *)((char *)(w) - offsetof(WINDOWLIST, win))))->m)
1237
1238 #define SP_PRE_INIT(sp)                         \
1239     sp->_cursrow = -1;                          \
1240     sp->_curscol = -1;                          \
1241     sp->_nl = TRUE;                             \
1242     sp->_raw = FALSE;                           \
1243     sp->_cbreak = 0;                            \
1244     sp->_echo = TRUE;                           \
1245     sp->_fifohead = -1;                         \
1246     sp->_endwin = TRUE;                         \
1247     sp->_cursor = -1;                           \
1248     WindowList(sp) = 0;                         \
1249     sp->_outch = NCURSES_SP_NAME(_nc_outch);    \
1250     sp->jump = 0                                \
1251
1252 /* usually in <limits.h> */
1253 #ifndef UCHAR_MAX
1254 #define UCHAR_MAX 255
1255 #endif
1256
1257 /* The terminfo source is assumed to be 7-bit ASCII */
1258 #define is7bits(c)      ((unsigned)(c) < 128)
1259
1260 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1261 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1262
1263 #ifndef min
1264 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1265 #endif
1266
1267 #ifndef max
1268 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1269 #endif
1270
1271 /* usually in <unistd.h> */
1272 #ifndef STDIN_FILENO
1273 #define STDIN_FILENO 0
1274 #endif
1275
1276 #ifndef STDOUT_FILENO
1277 #define STDOUT_FILENO 1
1278 #endif
1279
1280 #ifndef STDERR_FILENO
1281 #define STDERR_FILENO 2
1282 #endif
1283
1284 #ifndef EXIT_SUCCESS
1285 #define EXIT_SUCCESS 0
1286 #endif
1287
1288 #ifndef EXIT_FAILURE
1289 #define EXIT_FAILURE 1
1290 #endif
1291
1292 #ifndef R_OK
1293 #define R_OK    4               /* Test for read permission.  */
1294 #endif
1295 #ifndef W_OK
1296 #define W_OK    2               /* Test for write permission.  */
1297 #endif
1298 #ifndef X_OK
1299 #define X_OK    1               /* Test for execute permission.  */
1300 #endif
1301 #ifndef F_OK
1302 #define F_OK    0               /* Test for existence.  */
1303 #endif
1304
1305 #if HAVE_FCNTL_H
1306 #include <fcntl.h>              /* may define O_BINARY  */
1307 #endif
1308
1309 #ifndef O_BINARY
1310 #define O_BINARY 0
1311 #endif
1312
1313 #ifdef TRACE
1314 #if USE_REENTRANT
1315 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1316 #else
1317 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1318 #endif
1319 #else
1320 #define COUNT_OUTCHARS(n) /* nothing */
1321 #endif
1322
1323 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1324
1325 #define UChar(c)        ((unsigned char)(c))
1326 #define UShort(c)       ((unsigned short)(c))
1327 #define ChCharOf(c)     ((c) & (chtype)A_CHARTEXT)
1328 #define ChAttrOf(c)     ((c) & (chtype)A_ATTRIBUTES)
1329
1330 #ifndef MB_LEN_MAX
1331 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
1332 #endif
1333
1334 #if USE_WIDEC_SUPPORT /* { */
1335 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1336
1337 #define init_mb(state)  memset(&state, 0, sizeof(state))
1338
1339 #if NCURSES_EXT_COLORS
1340 #define NulColor        , 0
1341 #else
1342 #define NulColor        /* nothing */
1343 #endif
1344
1345 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1346 #define CharOf(c)       ((c).chars[0])
1347 #define AttrOf(c)       ((c).attr)
1348
1349 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1350 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1351 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1352
1353 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1354 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1355
1356 #if CCHARW_MAX == 5
1357 #define CharEq(a,b)     (((a).attr == (b).attr) \
1358                        && (a).chars[0] == (b).chars[0] \
1359                        && (a).chars[1] == (b).chars[1] \
1360                        && (a).chars[2] == (b).chars[2] \
1361                        && (a).chars[3] == (b).chars[3] \
1362                        && (a).chars[4] == (b).chars[4] \
1363                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1364 #else
1365 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1366 #endif
1367
1368 #define SetChar(ch,c,a) do {                                                        \
1369                             NCURSES_CH_T *_cp = &ch;                                \
1370                             memset(_cp, 0, sizeof(ch));                             \
1371                             _cp->chars[0] = (wchar_t) (c);                          \
1372                             _cp->attr = (a);                                        \
1373                             if_EXT_COLORS(SetPair(ch, PairNumber(a)));              \
1374                         } while (0)
1375 #define CHREF(wch)      (&wch)
1376 #define CHDEREF(wch)    (*wch)
1377 #define ARG_CH_T        NCURSES_CH_T *
1378 #define CARG_CH_T       const NCURSES_CH_T *
1379 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1380                         mbstate_t PUT_st; wchar_t PUTC_ch
1381 #define PUTC_INIT       init_mb (PUT_st)
1382 #define PUTC(ch,b)      do { if(!isWidecExt(ch)) {                                  \
1383                         if (Charable(ch)) {                                         \
1384                             fputc(CharOf(ch), b);                                   \
1385                             COUNT_OUTCHARS(1);                                      \
1386                         } else {                                                    \
1387                             PUTC_INIT;                                              \
1388                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1389                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1390                                 if (PUTC_ch == L'\0')                               \
1391                                     break;                                          \
1392                                 PUTC_n = (int) wcrtomb(PUTC_buf,                    \
1393                                                        (ch).chars[PUTC_i], &PUT_st); \
1394                                 if (PUTC_n <= 0) {                                  \
1395                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1396                                         putc(PUTC_ch,b);                            \
1397                                     break;                                          \
1398                                 }                                                   \
1399                                 IGNORE_RC(fwrite(PUTC_buf, (size_t) PUTC_n, (size_t) 1, b)); \
1400                             }                                                       \
1401                             COUNT_OUTCHARS(PUTC_i);                                 \
1402                         } } } while (0)
1403
1404 #define BLANK           NewChar2(' ', WA_NORMAL)
1405 #define ZEROS           NewChar2('\0', WA_NORMAL)
1406 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1407
1408         /*
1409          * Wide characters cannot be represented in the A_CHARTEXT mask of
1410          * attr_t's but an application might have set a narrow character there.
1411          * But even in that case, it would only be a printable character, or
1412          * zero.  Otherwise we can use those bits to tell if a cell is the
1413          * first or extension part of a wide character.
1414          */
1415 #define WidecExt(ch)    (int) (AttrOf(ch) & A_CHARTEXT)
1416 #define isWidecBase(ch) (WidecExt(ch) == 1)
1417 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1418 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1419                                 AttrOf(dst) |= (attr_t) (ext + 1)
1420
1421 #define if_WIDEC(code)  code
1422 #define Charable(ch)    ((SP_PARM != 0 && SP_PARM->_legacy_coding)      \
1423                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1424                          || (!isWidecExt(ch) &&                         \
1425                              (ch).chars[1] == L'\0' &&                  \
1426                              _nc_is_charable(CharOf(ch))))
1427
1428 #define L(ch)           L ## ch
1429 #else /* }{ */
1430 #define CharOf(c)       ChCharOf(c)
1431 #define AttrOf(c)       ChAttrOf(c)
1432 #define AddAttr(c,a)    c |= (a)
1433 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1434 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1435 #define NewChar(ch)     (ch)
1436 #define NewChar2(c,a)   ((c) | (a))
1437 #define CharEq(a,b)     ((a) == (b))
1438 #define SetChar(ch,c,a) ch = (c) | (a)
1439 #define CHREF(wch)      wch
1440 #define CHDEREF(wch)    wch
1441 #define ARG_CH_T        NCURSES_CH_T
1442 #define CARG_CH_T       NCURSES_CH_T
1443 #define PUTC_DATA       int data = 0
1444 #define PUTC(ch,b)      do { data = CharOf(ch); putc(data,b); } while (0)
1445
1446 #define BLANK           (' '|A_NORMAL)
1447 #define ZEROS           ('\0'|A_NORMAL)
1448 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1449
1450 #define isWidecExt(ch)  (0)
1451 #define if_WIDEC(code) /* nothing */
1452
1453 #define L(ch)           ch
1454 #endif /* } */
1455
1456 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1457 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1458 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1459
1460 #define BLANK_ATTR      A_NORMAL
1461 #define BLANK_TEXT      L(' ')
1462
1463 #define CHANGED     -1
1464
1465 #define LEGALYX(w, y, x) \
1466               ((w) != 0 && \
1467                 ((x) >= 0 && (x) <= (w)->_maxx && \
1468                  (y) >= 0 && (y) <= (w)->_maxy))
1469
1470 #define CHANGED_CELL(line,col) \
1471         if (line->firstchar == _NOCHANGE) \
1472                 line->firstchar = line->lastchar = (NCURSES_SIZE_T) (col); \
1473         else if ((col) < line->firstchar) \
1474                 line->firstchar = (NCURSES_SIZE_T) (col); \
1475         else if ((col) > line->lastchar) \
1476                 line->lastchar = (NCURSES_SIZE_T) (col)
1477
1478 #define CHANGED_RANGE(line,start,end) \
1479         if (line->firstchar == _NOCHANGE \
1480          || line->firstchar > (start)) \
1481                 line->firstchar = (NCURSES_SIZE_T) (start); \
1482         if (line->lastchar == _NOCHANGE \
1483          || line->lastchar < (end)) \
1484                 line->lastchar = (NCURSES_SIZE_T) (end)
1485
1486 #define CHANGED_TO_EOL(line,start,end) \
1487         if (line->firstchar == _NOCHANGE \
1488          || line->firstchar > (start)) \
1489                 line->firstchar = (NCURSES_SIZE_T) (start); \
1490         line->lastchar = (NCURSES_SIZE_T) (end)
1491
1492 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1493
1494 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1495
1496 /* FreeAndNull() is not a comma-separated expression because some compilers
1497  * do not accept a mixture of void with values.
1498  */
1499 #define FreeAndNull(p)   free(p); p = 0
1500
1501 #include <nc_alloc.h>
1502
1503 /*
1504  * TTY bit definition for converting tabs to spaces.
1505  */
1506 #ifdef TAB3
1507 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1508 #else
1509 # ifdef XTABS
1510 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1511 # else
1512 #  ifdef OXTABS
1513 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1514 #  else
1515 #   define OFLAGS_TABS 0
1516 #  endif
1517 # endif
1518 #endif
1519
1520 /*
1521  * Standardize/simplify common loops
1522  */
1523 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1524 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1525 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1526
1527 /*
1528  * Prefixes for call/return points of library function traces.  We use these to
1529  * instrument the public functions so that the traces can be easily transformed
1530  * into regression scripts.
1531  */
1532 #define T_CALLED(fmt) "called {" fmt
1533 #define T_CREATE(fmt) "create :" fmt
1534 #define T_RETURN(fmt) "return }" fmt
1535
1536 #ifdef TRACE
1537
1538 #if USE_REENTRANT
1539 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1540 #else
1541 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1542 #endif
1543
1544 #define START_TRACE() \
1545         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1546             int t = _nc_getenv_num("NCURSES_TRACE"); \
1547             if (t >= 0) \
1548                 trace((unsigned) t); \
1549         }
1550
1551 /*
1552  * Many of the _tracef() calls use static buffers; lock the trace state before
1553  * trying to fill them.
1554  */
1555 #if USE_REENTRANT
1556 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1557 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1558 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1559 #else
1560 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1561 #define _nc_locked_tracef _tracef
1562 #endif
1563
1564 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1565 #define T(a)            TR(TRACE_CALLS, a)
1566 #define TRACE_RETURN(value,type)     return _nc_retrace_##type(value)
1567 #define TRACE_RETURN2(value,dst,src) return _nc_retrace_##dst##_##src(value)
1568 #define TRACE_RETURN_SP(value,type)  return _nc_retrace_##type(SP_PARM, value)
1569
1570 #define NonNull(s)      ((s) != 0 ? s : "<null>")
1571
1572 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1573 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1574 #define returnBool(code)        TRACE_RETURN(code,bool)
1575 #define returnCPtr(code)        TRACE_RETURN(code,cptr)
1576 #define returnCVoidPtr(code)    TRACE_RETURN(code,cvoid_ptr)
1577 #define returnChar(code)        TRACE_RETURN(code,char)
1578 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1579 #define returnCode(code)        TRACE_RETURN(code,int)
1580 #define returnIntAttr(code)     TRACE_RETURN2(code,int,attr_t)
1581 #define returnMMask(code)       TRACE_RETURN_SP(code,mmask_t)
1582 #define returnPtr(code)         TRACE_RETURN(code,ptr)
1583 #define returnSP(code)          TRACE_RETURN(code,sp)
1584 #define returnVoid              T((T_RETURN(""))); return
1585 #define returnVoidPtr(code)     TRACE_RETURN(code,void_ptr)
1586 #define returnWin(code)         TRACE_RETURN(code,win)
1587
1588 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (int);
1589 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1590 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1591 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1592 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1593 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1594 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1595 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1596 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1597 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1598 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1599 extern NCURSES_EXPORT(char)             _nc_retrace_char (int);
1600 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1601 extern NCURSES_EXPORT(int)              _nc_retrace_int_attr_t (attr_t);
1602 extern NCURSES_EXPORT(mmask_t)          _nc_retrace_mmask_t (SCREEN *, mmask_t);
1603 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1604 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1605 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1606
1607 #if USE_REENTRANT
1608 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1609 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1610 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1611 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1612 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1613 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1614 #else
1615 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1616 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1617 #endif
1618
1619 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1620
1621 #if USE_WIDEC_SUPPORT
1622 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1623 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1624 #endif
1625
1626 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1627 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1628
1629 #else /* !TRACE */
1630
1631 #define START_TRACE() /* nothing */
1632
1633 #define T(a)
1634 #define TR(n, a)
1635 #define TPUTS_TRACE(s)
1636
1637 #define returnAttr(code)        return code
1638 #define returnBits(code)        return code
1639 #define returnBool(code)        return code
1640 #define returnCPtr(code)        return code
1641 #define returnCVoidPtr(code)    return code
1642 #define returnChar(code)        return ((char) code)
1643 #define returnChtype(code)      return code
1644 #define returnCode(code)        return code
1645 #define returnIntAttr(code)     return code
1646 #define returnMMask(code)       return code
1647 #define returnPtr(code)         return code
1648 #define returnSP(code)          return code
1649 #define returnVoid              return
1650 #define returnVoidPtr(code)     return code
1651 #define returnWin(code)         return code
1652
1653 #endif /* TRACE/!TRACE */
1654
1655 /*
1656  * Workaround for defective implementation of gcc attribute warn_unused_result
1657  */
1658 #if defined(__GNUC__) && defined(_FORTIFY_SOURCE)
1659 #define IGNORE_RC(func) errno = (int) func
1660 #else
1661 #define IGNORE_RC(func) (void) func
1662 #endif /* gcc workarounds */
1663
1664 /*
1665  * Return-codes for tgetent() and friends.
1666  */
1667 #define TGETENT_YES  1          /* entry is found */
1668 #define TGETENT_NO   0          /* entry is not found */
1669 #define TGETENT_ERR -1          /* an error occurred */
1670
1671 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1672 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1673
1674 #define EMPTY_MODULE(name) \
1675 extern  NCURSES_EXPORT(void) name (void); \
1676         NCURSES_EXPORT(void) name (void) { }
1677
1678 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1679 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
1680 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1681
1682 #define toggle_attr_on(S,at) {\
1683    if (PairNumber(at) > 0) {\
1684       (S) = ((S) & ALL_BUT_COLOR) | (attr_t) (at);\
1685    } else {\
1686       (S) |= (attr_t) (at);\
1687    }\
1688    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1689
1690
1691 #define toggle_attr_off(S,at) {\
1692    if (PairNumber(at) > 0) {\
1693       (S) &= ~(at|A_COLOR);\
1694    } else {\
1695       (S) &= ~(at);\
1696    }\
1697    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1698
1699 #define DelCharCost(sp,count) \
1700                 ((parm_dch != 0) \
1701                 ? sp->_dch_cost \
1702                 : ((delete_character != 0) \
1703                         ? (sp->_dch1_cost * count) \
1704                         : INFINITY))
1705
1706 #define InsCharCost(sp,count) \
1707                 ((parm_ich != 0) \
1708                 ? sp->_ich_cost \
1709                 : ((enter_insert_mode && exit_insert_mode) \
1710                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1711                   : ((insert_character != 0) \
1712                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1713                     : INFINITY)))
1714
1715 #if USE_XMC_SUPPORT
1716 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1717                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1718                                 VIDATTR(sp, AttrOf(c), GetPair(c)); \
1719                                 if (magic_cookie_glitch > 0 \
1720                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1721                                         T(("%s @%d before glitch %d,%d", \
1722                                                 __FILE__, __LINE__, \
1723                                                 sp->_cursrow, \
1724                                                 sp->_curscol)); \
1725                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1726                                 } \
1727                         }
1728 #else
1729 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1730                                     VIDATTR(sp, AttrOf(c), GetPair(c)); \
1731                         }
1732 #endif
1733
1734 /*
1735  * Macros to make additional parameter to implement wgetch_events()
1736  */
1737 #ifdef NCURSES_WGETCH_EVENTS
1738 #define EVENTLIST_0th(param) param
1739 #define EVENTLIST_1st(param) param
1740 #define EVENTLIST_2nd(param) , param
1741 #define TWAIT_MASK (TW_ANY | TW_EVENT)
1742 #else
1743 #define EVENTLIST_0th(param) void
1744 #define EVENTLIST_1st(param) /* nothing */
1745 #define EVENTLIST_2nd(param) /* nothing */
1746 #define TWAIT_MASK TW_ANY
1747 #endif
1748
1749 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1750
1751 #undef  toggle_attr_on
1752 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1753 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1754
1755 #undef  toggle_attr_off
1756 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1757 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1758
1759 #undef  DelCharCost
1760 #define DelCharCost(sp, count) NCURSES_SP_NAME(_nc_DelCharCost)(NCURSES_SP_ARGx count)
1761
1762 #undef  InsCharCost
1763 #define InsCharCost(sp, count) NCURSES_SP_NAME(_nc_InsCharCost)(NCURSES_SP_ARGx count)
1764
1765 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_DelCharCost) (NCURSES_SP_DCLx int _c);
1766 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_InsCharCost) (NCURSES_SP_DCLx int _c);
1767
1768 #undef  UpdateAttrs
1769 #define UpdateAttrs(sp,c) NCURSES_SP_NAME(_nc_UpdateAttrs)(NCURSES_SP_ARGx CHREF(c))
1770
1771 #if USE_WIDEC_SUPPORT || defined(NEED_NCURSES_CH_T)
1772 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx CARG_CH_T _c);
1773 #else
1774 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx chtype c);
1775 #endif
1776
1777 #if NCURSES_SP_FUNCS
1778 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1779 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1780 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (CARG_CH_T);
1781 #endif /* NCURSES_SP_FUNCS */
1782
1783 #else
1784
1785 extern NCURSES_EXPORT(void) _nc_expanded (void);
1786
1787 #endif
1788
1789 #if !NCURSES_EXT_FUNCS
1790 #define set_escdelay(value) ESCDELAY = value
1791 #endif
1792
1793 #if !HAVE_GETCWD
1794 #define getcwd(buf,len) getwd(buf)
1795 #endif
1796
1797 /* charable.c */
1798 #if USE_WIDEC_SUPPORT
1799 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1800 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1801 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1802 #endif
1803
1804 /* comp_captab.c */
1805 typedef struct {
1806         short   nte_name;       /* offset of name to hash on */
1807         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1808         short   nte_index;      /* index of associated variable in its array */
1809         short   nte_link;       /* index in table of next hash, or -1 */
1810 } name_table_data;
1811
1812 typedef struct
1813 {
1814         short   from;
1815         short   to;
1816         short   source;
1817 } alias_table_data;
1818
1819 /* doupdate.c */
1820 #if USE_XMC_SUPPORT
1821 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1822 #endif
1823
1824 /* hardscroll.c */
1825 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1826 extern NCURSES_EXPORT(void) _nc_linedump (void);
1827 #endif
1828
1829 /* lib_acs.c */
1830 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1831 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1832
1833 /* lib_addch.c */
1834 #if USE_WIDEC_SUPPORT
1835 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1836 #endif
1837
1838 /* lib_addstr.c */
1839 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
1840 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1841 #endif
1842
1843 /* lib_color.c */
1844 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1845
1846 /* lib_getch.c */
1847 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, int *, int EVENTLIST_2nd(_nc_eventlist *));
1848
1849 /* lib_insch.c */
1850 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
1851
1852 /* lib_mvcur.c */
1853 #define INFINITY        1000000 /* cost: too high to use */
1854
1855 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1856 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1857 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1858
1859 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1860
1861 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1862 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1863 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1864
1865 /* lib_mouse.c */
1866 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
1867
1868 /* lib_mvcur.c */
1869 #define INFINITY        1000000 /* cost: too high to use */
1870 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1871
1872 /* lib_setup.c */
1873 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1874 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
1875 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
1876 extern NCURSES_EXPORT(int)    _nc_setupterm(NCURSES_CONST char *, int, int *, int);
1877 extern NCURSES_EXPORT(void)   _nc_tinfo_cmdch(TERMINAL *, int);
1878
1879 /* lib_set_term.c */
1880 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
1881
1882 /* lib_setup.c */
1883 #define ret_error(code, fmt, arg)       if (errret) {\
1884                                             *errret = code;\
1885                                             returnCode(ERR);\
1886                                         } else {\
1887                                             fprintf(stderr, fmt, arg);\
1888                                             exit(EXIT_FAILURE);\
1889                                         }
1890
1891 #define ret_error1(code, fmt, arg)      ret_error(code, "'%s': " fmt, arg)
1892
1893 #define ret_error0(code, msg)           if (errret) {\
1894                                             *errret = code;\
1895                                             returnCode(ERR);\
1896                                         } else {\
1897                                             fprintf(stderr, msg);\
1898                                             exit(EXIT_FAILURE);\
1899                                         }
1900
1901 /* lib_tstp.c */
1902 #if USE_SIGWINCH
1903 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
1904 #else
1905 #define _nc_handle_sigwinch(a) /* nothing */
1906 #endif
1907
1908 /* lib_wacs.c */
1909 #if USE_WIDEC_SUPPORT
1910 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1911 #endif
1912
1913 typedef struct {
1914     char *s_head;       /* beginning of the string (may be null) */
1915     char *s_tail;       /* end of the string (may be null) */
1916     size_t s_size;      /* current remaining size available */
1917     size_t s_init;      /* total size available */
1918 } string_desc;
1919
1920 /* strings.c */
1921 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
1922 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
1923 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
1924 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
1925 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
1926
1927 #if !HAVE_STRSTR
1928 #define strstr _nc_strstr
1929 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1930 #endif
1931
1932 /* safe_sprintf.c */
1933 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1934
1935 /* tries.c */
1936 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
1937 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
1938 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
1939 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
1940
1941 /* elsewhere ... */
1942 extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry (ENTRY *, TERMTYPE *);
1943 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
1944 extern NCURSES_EXPORT(TERMINAL*) _nc_get_cur_term (void);
1945 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
1946 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1947 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1948 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
1949 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
1950 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1951 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1952 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
1953 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1954 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, int);
1955 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1956 extern NCURSES_EXPORT(int) _nc_outch (int);
1957 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
1958 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
1959 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1960 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, int, int);
1961 extern NCURSES_EXPORT(int) _nc_setup_tinfo(const char *, TERMTYPE *);
1962 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
1963 extern NCURSES_EXPORT(void) _nc_do_color (int, int, int, NCURSES_OUTC);
1964 extern NCURSES_EXPORT(void) _nc_flush (void);
1965 extern NCURSES_EXPORT(void) _nc_free_and_exit (int) GCC_NORETURN;
1966 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE *);
1967 extern NCURSES_EXPORT(void) _nc_freeall (void);
1968 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1969 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
1970 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1971 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
1972 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
1973 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1974 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, int);
1975 extern NCURSES_EXPORT(void) _nc_signal_handler (int);
1976 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
1977 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
1978
1979 #if NO_LEAKS
1980 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1981 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1982 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
1983 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
1984 extern NCURSES_EXPORT(void) _nc_comp_error_leaks(void);
1985 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1986 extern NCURSES_EXPORT(void) _nc_db_iterator_leaks(void);
1987 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1988 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
1989 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1990 #endif
1991
1992 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
1993 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
1994 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
1995 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, int const, int const, NCURSES_CH_T);
1996 #endif
1997
1998 #if USE_WIDEC_SUPPORT
1999 extern NCURSES_EXPORT(int) _nc_insert_wch(WINDOW *, const cchar_t *);
2000 #endif
2001
2002 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2003 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
2004 #endif
2005
2006 #if USE_SIZECHANGE
2007 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
2008 #endif
2009
2010 #if HAVE_RESIZETERM
2011 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
2012 #else
2013 #define _nc_resize_margins(wp) /* nothing */
2014 #endif
2015
2016 #ifdef NCURSES_WGETCH_EVENTS
2017 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
2018 #else
2019 #define wgetch_events(win, evl) wgetch(win)
2020 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
2021 #endif
2022
2023 /*
2024  * Wide-character macros to hide some platform-differences.
2025  */
2026 #if USE_WIDEC_SUPPORT
2027 #if HAVE_MBTOWC && HAVE_MBLEN
2028 #define reset_mbytes(state) IGNORE_RC(mblen(NULL, (size_t) 0)), IGNORE_RC(mbtowc(NULL, NULL, (size_t) 0))
2029 #define count_mbytes(buffer,length,state) mblen(buffer,length)
2030 #define check_mbytes(wch,buffer,length,state) \
2031         (int) mbtowc(&wch, buffer, length)
2032 #define state_unused
2033 #elif HAVE_MBRTOWC && HAVE_MBRLEN
2034 #define reset_mbytes(state) init_mb(state)
2035 #define count_mbytes(buffer,length,state) mbrlen(buffer,length,&state)
2036 #define check_mbytes(wch,buffer,length,state) \
2037         (int) mbrtowc(&wch, buffer, length, &state)
2038 #else
2039 make an error
2040 #endif
2041 #endif
2042
2043 /*
2044  * Not everyone has vsscanf(), but we'd like to use it for scanw().
2045  */
2046 #if !HAVE_VSSCANF
2047 extern int vsscanf(const char *str, const char *format, va_list __arg);
2048 #endif
2049
2050 /* scroll indices */
2051 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
2052
2053 #define USE_SETBUF_0 0
2054
2055 #define NC_BUFFERED(sp,flag) NCURSES_SP_NAME(_nc_set_buffer)(NCURSES_SP_ARGx sp->_ofp, flag)
2056
2057 #define NC_OUTPUT(sp) ((sp != 0) ? sp->_ofp : stdout)
2058
2059 /*
2060  * On systems with a broken linker, define 'SP' as a function to force the
2061  * linker to pull in the data-only module with 'SP'.
2062  */
2063 #define _nc_alloc_screen_sp() typeCalloc(SCREEN, 1)
2064
2065 #if BROKEN_LINKER
2066 #define SP _nc_screen()
2067 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
2068 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
2069 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
2070 #define CURRENT_SCREEN          _nc_screen()
2071 #else
2072 /* current screen is private data; avoid possible linking conflicts too */
2073 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
2074 #define CURRENT_SCREEN SP
2075 #define _nc_alloc_screen()      ((SP = _nc_alloc_screen_sp()) != 0)
2076 #define _nc_set_screen(sp)      SP = sp
2077 #endif
2078
2079 #if NCURSES_SP_FUNCS
2080 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
2081 #else
2082 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
2083 #endif
2084
2085 /*
2086  * We don't want to use the lines or columns capabilities internally, because
2087  * if the application is running multiple screens under X, it's quite possible
2088  * they could all have type xterm but have different sizes!  So...
2089  */
2090 #define screen_lines(sp)        (sp)->_lines
2091 #define screen_columns(sp)      (sp)->_columns
2092
2093 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
2094 extern NCURSES_EXPORT(int) _nc_format_slks (NCURSES_SP_DCLx int _c);
2095
2096 /*
2097  * Some constants related to SLK's
2098  */
2099 #define MAX_SKEY_OLD       8    /* count of soft keys */
2100 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
2101 #define MAX_SKEY_PC       12    /* This is what most PC's have */
2102 #define MAX_SKEY_LEN_PC    5
2103
2104 /* Macro to check whether or not we use a standard format */
2105 #define SLK_STDFMT(fmt) (fmt < 3)
2106 /* Macro to determine height of label window */
2107 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
2108
2109 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
2110 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
2111
2112 /*
2113  * Common error messages
2114  */
2115 #define MSG_NO_MEMORY "Out of memory"
2116 #define MSG_NO_INPUTS "Premature EOF"
2117
2118 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
2119 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
2120
2121 /* timed_wait flag definitions */
2122 #define TW_NONE    0
2123 #define TW_INPUT   1
2124 #define TW_MOUSE   2
2125 #define TW_ANY     (TW_INPUT | TW_MOUSE)
2126 #define TW_EVENT   4
2127
2128 #define SetSafeOutcWrapper(outc)            \
2129     SCREEN* sp = CURRENT_SCREEN;            \
2130     if (sp==0) {                            \
2131         struct screen dummy;                \
2132         sp = &dummy;                        \
2133         memset(sp,0,sizeof(struct screen)); \
2134         sp->_outch = _nc_outc_wrapper;      \
2135     }\
2136     sp->jump = outc
2137
2138 #ifdef USE_TERM_DRIVER
2139 typedef void* TERM_HANDLE;
2140
2141 typedef struct _termInfo
2142 {
2143     bool caninit;
2144
2145     bool hascolor;
2146     bool initcolor;
2147     bool canchange;
2148
2149     int  tabsize;
2150
2151     int  maxcolors;
2152     int  maxpairs;
2153     int  nocolorvideo;
2154
2155     int  numbuttons;
2156     int  numlabels;
2157     int  labelwidth;
2158     int  labelheight;
2159
2160     const color_t* defaultPalette;
2161 } TerminalInfo;
2162
2163 typedef struct term_driver {
2164     bool   isTerminfo;
2165     bool   (*CanHandle)(struct DriverTCB*, const char*, int*);
2166     void   (*init)(struct DriverTCB*);
2167     void   (*release)(struct DriverTCB*);
2168     int    (*size)(struct DriverTCB*, int* Line, int *Cols);
2169     int    (*sgmode)(struct DriverTCB*, int setFlag, TTY*);
2170     chtype (*conattr)(struct DriverTCB*);
2171     int    (*hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
2172     int    (*mode)(struct DriverTCB*, int progFlag, int defFlag);
2173     bool   (*rescol)(struct DriverTCB*);
2174     bool   (*rescolors)(struct DriverTCB*);
2175     void   (*color)(struct DriverTCB*, int fore, int color, int(*)(SCREEN*, int));
2176     int    (*doBeepOrFlash)(struct DriverTCB*, int);
2177     void   (*initpair)(struct DriverTCB*, int, int, int);
2178     void   (*initcolor)(struct DriverTCB*, int, int, int, int);
2179     void   (*docolor)(struct DriverTCB*, int, int, int, int(*)(SCREEN*, int));
2180     void   (*initmouse)(struct DriverTCB*);
2181     int    (*testmouse)(struct DriverTCB*, int EVENTLIST_2nd(_nc_eventlist*));
2182     void   (*setfilter)(struct DriverTCB*);
2183     void   (*hwlabel)(struct DriverTCB*, int, char*);
2184     void   (*hwlabelOnOff)(struct DriverTCB*, int);
2185     int    (*update)(struct DriverTCB*);
2186     int    (*defaultcolors)(struct DriverTCB*, int, int);
2187     int    (*print)(struct DriverTCB*, char*, int);
2188     int    (*getsize)(struct DriverTCB*, int*, int*);
2189     int    (*setsize)(struct DriverTCB*, int, int);
2190     void   (*initacs)(struct DriverTCB*, chtype*, chtype*);
2191     void   (*scinit)(SCREEN *);
2192     void   (*scexit)(SCREEN *);
2193     int    (*twait)(struct DriverTCB*, int, int, int* EVENTLIST_2nd(_nc_eventlist*));
2194     int    (*read)(struct DriverTCB*, int*);
2195     int    (*nap)(struct DriverTCB*, int);
2196     int    (*kpad)(struct DriverTCB*, int);
2197     int    (*kyOk)(struct DriverTCB*, int, int);
2198     bool   (*kyExist)(struct DriverTCB*, int);
2199 } TERM_DRIVER;
2200
2201 typedef struct DriverTCB
2202 {
2203     TERMINAL      term;   /* needs to be the first Element !!! */
2204     TERM_HANDLE   inp;    /* The input handle of the Terminal */
2205     TERM_HANDLE   out;    /* The output handle of the Terminal in shell mode */
2206     TERM_HANDLE   hdl;    /* The output handle of the Terminal in prog  mode */
2207     TERM_DRIVER*  drv;    /* The driver for that Terminal */
2208     SCREEN*       csp;    /* The screen that owns that Terminal */
2209     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
2210     void*         prop;   /* Driver dependent property storage to be used by the Driver */
2211     long          magic;
2212 } TERMINAL_CONTROL_BLOCK;
2213
2214 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
2215 #define NCDRV_TINFO      0x01
2216 #define NCDRV_WINCONSOLE 0x02
2217
2218 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
2219 #define InfoOf(sp)   TCBOf(sp)->info
2220 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
2221 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
2222 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
2223 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
2224 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
2225
2226 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
2227 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
2228
2229 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
2230 extern NCURSES_EXPORT(void)     _nc_get_screensize_ex(SCREEN *, TERMINAL *, int *, int *);
2231 #endif /* USE_TERM_DRIVER */
2232
2233 /*
2234  * Entrypoints which are actually provided in the terminal driver, which would
2235  * be an sp-name otherwise.
2236  */
2237 #ifdef USE_TERM_DRIVER
2238 #define TINFO_HAS_KEY           _nc_tinfo_has_key
2239 #define TINFO_DOUPDATE          _nc_tinfo_doupdate
2240 #define TINFO_MVCUR             _nc_tinfo_mvcur
2241 extern NCURSES_EXPORT(int)      TINFO_HAS_KEY(SCREEN*, int);
2242 extern NCURSES_EXPORT(int)      TINFO_DOUPDATE(SCREEN *);
2243 extern NCURSES_EXPORT(int)      TINFO_MVCUR(SCREEN*, int, int, int, int);
2244 #else
2245 #define TINFO_HAS_KEY           NCURSES_SP_NAME(has_key)
2246 #define TINFO_DOUPDATE          NCURSES_SP_NAME(doupdate)
2247 #define TINFO_MVCUR             NCURSES_SP_NAME(mvcur)
2248 #endif
2249
2250 /*
2251  * Entrypoints using an extra parameter with the terminal driver.
2252  */
2253 #ifdef USE_TERM_DRIVER
2254 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, TERMINAL *, int *, int *);
2255 extern NCURSES_EXPORT(int)    _nc_setupterm_ex(TERMINAL **, NCURSES_CONST char *, int , int *, int);
2256 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2257         _nc_get_screensize(sp, tp, lp, cp)
2258 #define TINFO_SET_CURTERM(sp, tp) \
2259         NCURSES_SP_NAME(set_curterm)(sp, tp)
2260 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2261         _nc_setupterm_ex(tpp, name, fd, err, reuse)
2262 #else /* !USE_TERM_DRIVER */
2263 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
2264 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2265         _nc_get_screensize(sp, lp, cp)
2266 #define TINFO_SET_CURTERM(sp, tp) \
2267         set_curterm(tp)
2268 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2269         _nc_setupterm(name, fd, err, reuse)
2270 #endif /* !USE_TERM_DRIVER */
2271
2272 #ifdef USE_TERM_DRIVER
2273 #ifdef __MINGW32__
2274 #include <nc_mingw.h>
2275 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
2276 #endif
2277 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2278 #endif
2279
2280 #ifdef USE_TERM_DRIVER
2281 #define IsTermInfo(sp)       (TCBOf(sp) && ((TCBOf(sp)->drv->isTerminfo)))
2282 #else
2283 #define IsTermInfo(sp)       TRUE
2284 #endif
2285
2286 #define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
2287 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
2288
2289 /*
2290  * Exported entrypoints beyond the published API
2291  */
2292 #if NCURSES_SP_FUNCS
2293 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
2294 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
2295 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
2296 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2297
2298 #if USE_REENTRANT
2299 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2300 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2301 #endif
2302
2303 #if NCURSES_EXT_FUNCS
2304 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2305 #endif
2306
2307 /*
2308  * We put the safe versions of various calls here as they are not published
2309  * part of the API up to now
2310  */
2311 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_get_cur_term) (SCREEN *sp);
2312 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2313 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2314 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2315 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2316 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_curs_set)(SCREEN*,int);
2317 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2318 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2319 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2320 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2321 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2322 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2323 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resetty)(SCREEN*);
2324 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resize_term)(SCREEN*,int,int);
2325 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2326 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_savetty)(SCREEN*);
2327 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_init)(SCREEN*,const char*);
2328 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_restore)(SCREEN*, const char*);
2329 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2330 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2331 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, int, int);
2332 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2333 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tigetnum)(SCREEN*,NCURSES_CONST char*);
2334 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vid_attr)(SCREEN *, attr_t, short, void *);
2335 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vidputs)(SCREEN*,chtype,int(*) (SCREEN*, int));
2336 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, int, int, int, NCURSES_SP_OUTC);
2337 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2338 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2339 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN;
2340 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2341 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2342 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2343 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2344 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2345 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2346 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2347 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2348 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2349 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2350 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2351 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2352 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, int);
2353
2354 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2355
2356 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2357 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2358 #endif
2359
2360 #if USE_WIDEC_SUPPORT
2361 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2362 #endif
2363
2364 #endif /* NCURSES_SP_FUNCS */
2365
2366 #if NCURSES_SP_FUNCS
2367
2368 #define safe_keyname NCURSES_SP_NAME(keyname)
2369 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2370 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2371
2372 #else
2373
2374 #define safe_keyname _nc_keyname
2375 #define safe_unctrl  _nc_unctrl
2376 #define safe_ungetch _nc_ungetch
2377
2378 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2379 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2380 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2381
2382 #endif
2383
2384 #ifdef __cplusplus
2385 }
2386 #endif
2387
2388 /* *INDENT-ON* */
2389
2390 #endif /* CURSES_PRIV_H */