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