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