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