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