]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 5.6 - patch 20080105
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998-2006,2007 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  ****************************************************************************/
34
35
36 /*
37  * $Id: curses.priv.h,v 1.355 2007/12/29 20:32:54 tom Exp $
38  *
39  *      curses.priv.h
40  *
41  *      Header file for curses library objects which are private to
42  *      the library.
43  *
44  */
45
46 #ifndef CURSES_PRIV_H
47 #define CURSES_PRIV_H 1
48
49 #include <ncurses_dll.h>
50
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54
55 #include <ncurses_cfg.h>
56
57 #if USE_RCS_IDS
58 #define MODULE_ID(id) static const char Ident[] = id;
59 #else
60 #define MODULE_ID(id) /*nothing*/
61 #endif
62
63 #include <stdlib.h>
64 #include <string.h>
65 #include <sys/types.h>
66
67 #if HAVE_UNISTD_H
68 #include <unistd.h>
69 #endif
70
71 #if HAVE_SYS_BSDTYPES_H
72 #include <sys/bsdtypes.h>       /* needed for ISC */
73 #endif
74
75 #if HAVE_LIMITS_H
76 # include <limits.h>
77 #elif HAVE_SYS_PARAM_H
78 # include <sys/param.h>
79 #endif
80
81 #include <assert.h>
82 #include <stdio.h>
83
84 #include <errno.h>
85
86 #ifndef PATH_MAX
87 # if defined(_POSIX_PATH_MAX)
88 #  define PATH_MAX _POSIX_PATH_MAX
89 # elif defined(MAXPATHLEN)
90 #  define PATH_MAX MAXPATHLEN
91 # else
92 #  define PATH_MAX 255  /* the Posix minimum path-size */
93 # endif
94 #endif
95
96 #if DECL_ERRNO
97 extern int errno;
98 #endif
99
100 #include <nc_panel.h>
101
102 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
103 #if HAVE_WORKING_POLL
104 #define USE_FUNC_POLL 1
105 #if HAVE_POLL_H
106 #include <poll.h>
107 #else
108 #include <sys/poll.h>
109 #endif
110 #else
111 #define USE_FUNC_POLL 0
112 #endif
113
114 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
115 #include <signal.h>
116
117 /* Alessandro Rubini's GPM (general-purpose mouse) */
118 #if HAVE_LIBGPM && HAVE_GPM_H
119 #define USE_GPM_SUPPORT 1
120 #else
121 #define USE_GPM_SUPPORT 0
122 #endif
123
124 /* QNX mouse support */
125 #if defined(__QNX__) && !defined(__QNXNTO__)
126 #define USE_QNX_MOUSE 1
127 #else
128 #define USE_QNX_MOUSE 0
129 #endif
130
131 /* EMX mouse support */
132 #ifdef __EMX__
133 #define USE_EMX_MOUSE 1
134 #else
135 #define USE_EMX_MOUSE 0
136 #endif
137
138 #define DEFAULT_MAXCLICK 166
139 #define EV_MAX          8       /* size of mouse circular event queue */
140
141 /*
142  * If we don't have signals to support it, don't add a sigwinch handler.
143  * In any case, resizing is an extended feature.  Use it if we've got it.
144  */
145 #if !NCURSES_EXT_FUNCS
146 #undef HAVE_SIZECHANGE
147 #define HAVE_SIZECHANGE 0
148 #endif
149
150 #if HAVE_SIZECHANGE && defined(SIGWINCH)
151 #define USE_SIZECHANGE 1
152 #else
153 #define USE_SIZECHANGE 0
154 #undef USE_SIGWINCH
155 #define USE_SIGWINCH 0
156 #endif
157
158 /*
159  * If desired, one can configure this, disabling environment variables that
160  * point to custom terminfo/termcap locations.
161  */
162 #ifdef USE_ROOT_ENVIRON
163 #define use_terminfo_vars() 1
164 #else
165 #define use_terminfo_vars() _nc_env_access()
166 extern NCURSES_EXPORT(int) _nc_env_access (void);
167 #endif
168
169 /*
170  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
171  * have neither).
172  */
173 #if USE_OK_BCOPY
174 #define memmove(d,s,n) bcopy(s,d,n)
175 #elif USE_MY_MEMMOVE
176 #define memmove(d,s,n) _nc_memmove(d,s,n)
177 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
178 #endif
179
180 /*
181  * Scroll hints are useless when hashmap is used
182  */
183 #if !USE_SCROLL_HINTS
184 #if !USE_HASHMAP
185 #define USE_SCROLL_HINTS 1
186 #else
187 #define USE_SCROLL_HINTS 0
188 #endif
189 #endif
190
191 #if USE_SCROLL_HINTS
192 #define if_USE_SCROLL_HINTS(stmt) stmt
193 #else
194 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
195 #endif
196
197 /*
198  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
199  * when we're throwing control codes at the screen at high volume.  To see
200  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
201  * probably don't want to define this either due to uncertainties about tab
202  * delays and expansion in raw mode.
203  */
204
205 #define TRIES struct tries
206 typedef TRIES {
207         TRIES    *child;            /* ptr to child.  NULL if none          */
208         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
209         unsigned char    ch;        /* character at this node               */
210         unsigned short   value;     /* code of string so far.  0 if none.   */
211 #undef TRIES
212 } TRIES;
213
214 /*
215  * Common/troublesome character definitions
216  */
217 #define StringOf(ch) {ch, 0}
218
219 #define L_BRACE '{'
220 #define R_BRACE '}'
221 #define S_QUOTE '\''
222 #define D_QUOTE '"'
223
224 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
225
226 /*
227  * Structure for palette tables
228  */
229
230 typedef struct
231 {
232     short red, green, blue;     /* what color_content() returns */
233     short r, g, b;              /* params to init_color() */
234     int init;                   /* true if we called init_color() */
235 }
236 color_t;
237
238 #define MAXCOLUMNS    135
239 #define MAXLINES      66
240 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
241
242 #define ACS_LEN       128
243
244 #define WINDOWLIST struct _win_list
245
246 #if USE_WIDEC_SUPPORT
247 #define _nc_bkgd    _bkgrnd
248 #else
249 #undef _XOPEN_SOURCE_EXTENDED
250 #define _nc_bkgd    _bkgd
251 #define wgetbkgrnd(win, wch)    *wch = win->_bkgd
252 #define wbkgrnd     wbkgd
253 #endif
254
255 #undef NCURSES_OPAQUE
256 #define NCURSES_INTERNALS 1
257 #define NCURSES_OPAQUE 0
258
259 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
260 #include <term.h>
261 #include <term_entry.h>
262 #include <nc_tparm.h>
263
264 #if NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT
265 #define if_EXT_COLORS(stmt)     stmt
266 #define NetPair(value,p)        (value).ext_color = (p), \
267                                 AttrOf(value) &= ALL_BUT_COLOR, \
268                                 AttrOf(value) |= (A_COLOR & COLOR_PAIR((p > 255) ? 255 : p))
269 #define SetPair(value,p)        (value).ext_color = (p)
270 #define GetPair(value)          (value).ext_color
271 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
272 #define GET_WINDOW_PAIR(w)      (w)->_color
273 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
274 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
275 #define VIDATTR(attr, pair)     vid_attr(attr, pair, 0)
276 #else
277 #define if_EXT_COLORS(stmt)     /* nothing */
278 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
279                                 SetAttr(value, AttrOf(value) | (A_COLOR & COLOR_PAIR(p)))
280 #define GetPair(value)          PAIR_NUMBER(AttrOf(value))
281 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
282 #define GET_WINDOW_PAIR(w)      PAIR_NUMBER(WINDOW_ATTRS(w))
283 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
284                                 WINDOW_ATTRS(w) |= (A_COLOR & COLOR_PAIR(p))
285 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
286 #define VIDATTR(attr, pair)     vidattr(attr)
287 #endif
288
289 #define WINDOW_ATTRS(w)         ((w)->_attrs)
290
291 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
292 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
293 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
294
295 #if USE_REENTRANT
296 #define SET_LINES(value) SP->_LINES = value
297 #define SET_COLS(value)  SP->_COLS = value
298 #else
299 #define SET_LINES(value) LINES = value
300 #define SET_COLS(value)  COLS = value
301 #endif
302
303 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
304             __FILE__, __LINE__, \
305             (unsigned long) (pthread_self()), \
306             data.__data.__lock, \
307             data.__data.__count, \
308             data.__data.__owner, \
309             data.__data.__kind, \
310             (data.__data.__nusers > 5) ? " OOPS " : "", \
311             data.__data.__nusers)
312 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
313
314 #ifdef USE_PTHREADS
315 #if USE_REENTRANT
316 #include <pthread.h>
317 #define _nc_lock_global(name)   pthread_mutex_lock(&_nc_globals.mutex_##name)
318 #define _nc_try_global(name)    pthread_mutex_trylock(&_nc_globals.mutex_##name)
319 #define _nc_unlock_global(name) pthread_mutex_unlock(&_nc_globals.mutex_##name)
320
321 extern NCURSES_EXPORT(void) _nc_lock_window(WINDOW *);
322 extern NCURSES_EXPORT(void) _nc_unlock_window(WINDOW *);
323
324 #else
325 #error POSIX threads requires --enable-reentrant option
326 #endif
327 #else
328 #define _nc_lock_global(name)   /* nothing */
329 #define _nc_try_global(name)    0
330 #define _nc_unlock_global(name) /* nothing */
331
332 #define _nc_lock_window(name)   (void) TRUE
333 #define _nc_unlock_window(name) /* nothing */
334
335 #endif
336
337 #define _nc_lock_screen(name)   /* nothing */
338 #define _nc_unlock_screen(name) /* nothing */
339
340 /*
341  * Definitions for color pairs
342  */
343 typedef unsigned colorpair_t;   /* type big enough to store PAIR_OF() */
344 #define C_SHIFT 9               /* we need more bits than there are colors */
345 #define C_MASK                  ((1 << C_SHIFT) - 1)
346 #define PAIR_OF(fg, bg)         ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
347 #define isDefaultColor(c)       ((c) >= COLOR_DEFAULT || (c) < 0)
348
349 #define COLOR_DEFAULT           C_MASK
350
351 #if defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T)
352
353 #undef NCURSES_CH_T             /* this is not a termlib feature */
354 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
355
356 #endif  /* USE_TERMLIB */
357
358 #ifndef USE_TERMLIB
359 struct ldat
360 {
361         NCURSES_CH_T    *text;          /* text of the line */
362         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
363         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
364         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
365 };
366 #endif  /* USE_TERMLIB */
367
368 typedef enum {
369         M_XTERM = -1            /* use xterm's mouse tracking? */
370         ,M_NONE = 0             /* no mouse device */
371 #if USE_GPM_SUPPORT
372         ,M_GPM                  /* use GPM */
373 #endif
374 #if USE_SYSMOUSE
375         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
376 #endif
377 } MouseType;
378
379 /*
380  * Structures for scrolling.
381  */
382
383 typedef struct {
384         unsigned long hashval;
385         int oldcount, newcount;
386         int oldindex, newindex;
387 } HASHMAP;
388
389 /*
390  * Structures for soft labels.
391  */
392
393 struct _SLK;
394
395 #ifndef USE_TERMLIB
396
397 typedef struct
398 {
399         char *ent_text;         /* text for the label */
400         char *form_text;        /* formatted text (left/center/...) */
401         int ent_x;              /* x coordinate of this field */
402         char dirty;             /* this label has changed */
403         char visible;           /* field is visible */
404 } slk_ent;
405
406 typedef struct _SLK {
407         char dirty;             /* all labels have changed */
408         char hidden;            /* soft labels are hidden */
409         WINDOW *win;
410         slk_ent *ent;
411         short  maxlab;          /* number of available labels */
412         short  labcnt;          /* number of allocated labels */
413         short  maxlen;          /* length of labels */
414         NCURSES_CH_T attr;      /* soft label attribute */
415 } SLK;
416
417 #endif  /* USE_TERMLIB */
418
419 typedef struct {
420         WINDOW *win;            /* the window used in the hook      */
421         int     line;           /* lines to take, < 0 => from bottom*/
422         int     (*hook)(WINDOW *, int); /* callback for user        */
423 } ripoff_t;
424
425 #if USE_GPM_SUPPORT
426 #undef buttons                  /* term.h defines this, and gpm uses it! */
427 #include <gpm.h>
428
429 #ifdef HAVE_LIBDL
430 /* link dynamically to GPM */
431 typedef int *TYPE_gpm_fd;
432 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
433 typedef int (*TYPE_Gpm_Close) (void);
434 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
435
436 #define my_gpm_fd       SP->_mouse_gpm_fd
437 #define my_Gpm_Open     SP->_mouse_Gpm_Open
438 #define my_Gpm_Close    SP->_mouse_Gpm_Close
439 #define my_Gpm_GetEvent SP->_mouse_Gpm_GetEvent
440 #else
441 /* link statically to GPM */
442 #define my_gpm_fd       &gpm_fd
443 #define my_Gpm_Open     Gpm_Open
444 #define my_Gpm_Close    Gpm_Close
445 #define my_Gpm_GetEvent Gpm_GetEvent
446 #endif /* HAVE_LIBDL */
447 #endif /* USE_GPM_SUPPORT */
448
449 typedef struct {
450     long sequence;
451     bool last_used;
452     char *fix_sgr0;             /* this holds the filtered sgr0 string */
453     char *last_bufp;            /* help with fix_sgr0 leak */
454     TERMINAL *last_term;
455 } TGETENT_CACHE;
456
457 #define TGETENT_MAX 4
458
459 /*
460  * State of tparm().
461  */
462 #define STACKSIZE 20
463
464 typedef struct {
465         union {
466                 int     num;
467                 char    *str;
468         } data;
469         bool num_type;
470 } STACK_FRAME;
471
472 #define NUM_VARS 26
473
474 typedef struct {
475 #ifdef TRACE
476         const char      *tname;
477 #endif
478         const char      *tparam_base;
479
480         STACK_FRAME     stack[STACKSIZE];
481         int             stack_ptr;
482
483         char            *out_buff;
484         size_t          out_size;
485         size_t          out_used;
486
487         char            *fmt_buff;
488         size_t          fmt_size;
489
490         int             dynamic_var[NUM_VARS];
491         int             static_vars[NUM_VARS];
492 } TPARM_STATE;
493
494 typedef struct {
495     char *text;
496     size_t size;
497 } TRACEBUF;
498
499 /*
500  * The filesystem database normally uses a single-letter for the lower level
501  * of directories.  Use a hexadecimal code for filesystems which do not
502  * preserve mixed-case names.
503  */
504 #if MIXEDCASE_FILENAMES
505 #define LEAF_FMT "%c"
506 #else
507 #define LEAF_FMT "%02x"
508 #endif
509
510 /*
511  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
512  * could at most have 10 digits, and the mask contains no more than 32 bits
513  * with each bit representing less than 15 characters.  Usually the whole
514  * string is less than 80 columns, but this buffer size is an absolute
515  * limit.
516  */
517 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
518 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
519
520 /*
521  * Global data which is not specific to a screen.
522  */
523 typedef struct {
524         SIG_ATOMIC_T    have_sigwinch;
525         SIG_ATOMIC_T    cleanup_nested;
526
527         bool            init_signals;
528         bool            init_screen;
529
530         const char      *comp_sourcename;
531         char            *comp_termtype;
532
533         bool            have_tic_directory;
534         bool            keep_tic_directory;
535         const char      *tic_directory;
536
537         char            *dbi_list;
538         int             dbi_size;
539
540         char            *first_name;
541         char            **keyname_table;
542
543         char            *safeprint_buf;
544         size_t          safeprint_used;
545
546         TGETENT_CACHE   tgetent_cache[TGETENT_MAX];
547         int             tgetent_index;
548         long            tgetent_sequence;
549
550 #if USE_HOME_TERMINFO
551         char            *home_terminfo;
552 #endif
553
554 #if !USE_SAFE_SPRINTF
555         int             safeprint_cols;
556         int             safeprint_rows;
557 #endif
558
559 #ifdef TRACE
560         bool            init_trace;
561         char            trace_fname[PATH_MAX];
562         int             trace_level;
563         FILE            *trace_fp;
564
565         char            *tracearg_buf;
566         size_t          tracearg_used;
567
568         TRACEBUF        *tracebuf_ptr;
569         size_t          tracebuf_used;
570
571         char            tracechr_buf[40];
572
573         char            *tracedmp_buf;
574         size_t          tracedmp_used;
575
576         char            tracemse_buf[TRACEMSE_MAX];
577
578         unsigned char   *tracetry_buf;
579         size_t          tracetry_used;
580
581 #ifndef USE_TERMLIB
582         char            traceatr_color_buf[2][80];
583         int             traceatr_color_sel;
584         int             traceatr_color_last;
585 #endif  /* USE_TERMLIB */
586
587 #endif  /* TRACE */
588
589 #ifdef USE_PTHREADS
590        pthread_mutex_t  mutex_set_SP;
591        pthread_mutex_t  mutex_use_screen;
592        pthread_mutex_t  mutex_use_window;
593        pthread_mutex_t  mutex_windowlist;
594        pthread_mutex_t  mutex_tst_tracef;
595        pthread_mutex_t  mutex_tracef;
596        int              nested_tracef;
597 #endif
598 } NCURSES_GLOBALS;
599
600 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
601
602 #define N_RIPS 5
603
604 /*
605  * Global data which is swept up into a SCREEN when one is created.
606  * It may be modified before the next SCREEN is created.
607  */
608 typedef struct {
609         bool            use_env;
610         bool            filter_mode;
611         attr_t          previous_attr;
612         ripoff_t        rippedoff[N_RIPS];
613         ripoff_t        *rsp;
614         TPARM_STATE     tparm_state;
615         TTY             *saved_tty;     /* savetty/resetty information      */
616 #if BROKEN_LINKER || USE_REENTRANT
617         chtype          *real_acs_map;
618         int             _LINES;
619         int             _COLS;
620 #ifdef TRACE
621         long            _outchars;
622         const char      *_tputs_trace;
623 #endif
624 #endif
625 } NCURSES_PRESCREEN;
626
627 #define ripoff_sp       _nc_prescreen.rsp
628 #define ripoff_stack    _nc_prescreen.rippedoff
629
630 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
631
632 /*
633  * The SCREEN structure.
634  */
635
636 struct screen {
637         int             _ifd;           /* input file ptr for screen        */
638         FILE            *_ofp;          /* output file ptr for screen       */
639         char            *_setbuf;       /* buffered I/O for output          */
640         bool            _filtered;      /* filter() was called              */
641         bool            _buffered;      /* setvbuf uses _setbuf data        */
642         int             _checkfd;       /* filedesc for typeahead check     */
643         TERMINAL        *_term;         /* terminal type information        */
644         TTY             _saved_tty;     /* savetty/resetty information      */
645         NCURSES_SIZE_T  _lines;         /* screen lines                     */
646         NCURSES_SIZE_T  _columns;       /* screen columns                   */
647
648         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
649         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
650
651         WINDOW          *_curscr;       /* current screen                   */
652         WINDOW          *_newscr;       /* virtual screen to be updated to  */
653         WINDOW          *_stdscr;       /* screen's full-window context     */
654
655         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
656         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
657         bool            _tried;         /* keypad mode was initialized      */
658         bool            _keypad_on;     /* keypad mode is currently on      */
659
660         bool            _called_wgetch; /* check for recursion in wgetch()  */
661         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
662         short           _fifohead,      /* head of fifo queue               */
663                         _fifotail,      /* tail of fifo queue               */
664                         _fifopeek,      /* where to peek for next char      */
665                         _fifohold;      /* set if breakout marked           */
666
667         int             _endwin;        /* are we out of window mode?       */
668         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
669         int             _coloron;       /* is color enabled?                */
670         int             _color_defs;    /* are colors modified              */
671         int             _cursor;        /* visibility of the cursor         */
672         int             _cursrow;       /* physical cursor row              */
673         int             _curscol;       /* physical cursor column           */
674         bool            _notty;         /* true if we cannot switch non-tty */
675         int             _nl;            /* True if NL -> CR/NL is on        */
676         int             _raw;           /* True if in raw mode              */
677         int             _cbreak;        /* 1 if in cbreak mode              */
678                                         /* > 1 if in halfdelay mode         */
679         int             _echo;          /* True if echo on                  */
680         int             _use_meta;      /* use the meta key?                */
681         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
682         int             slk_format;     /* selected format for this screen  */
683         /* cursor movement costs; units are 10ths of milliseconds */
684 #if NCURSES_NO_PADDING
685         int             _no_padding;    /* flag to set if padding disabled  */
686 #endif
687         int             _char_padding;  /* cost of character put            */
688         int             _cr_cost;       /* cost of (carriage_return)        */
689         int             _cup_cost;      /* cost of (cursor_address)         */
690         int             _home_cost;     /* cost of (cursor_home)            */
691         int             _ll_cost;       /* cost of (cursor_to_ll)           */
692 #if USE_HARD_TABS
693         int             _ht_cost;       /* cost of (tab)                    */
694         int             _cbt_cost;      /* cost of (backtab)                */
695 #endif /* USE_HARD_TABS */
696         int             _cub1_cost;     /* cost of (cursor_left)            */
697         int             _cuf1_cost;     /* cost of (cursor_right)           */
698         int             _cud1_cost;     /* cost of (cursor_down)            */
699         int             _cuu1_cost;     /* cost of (cursor_up)              */
700         int             _cub_cost;      /* cost of (parm_cursor_left)       */
701         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
702         int             _cud_cost;      /* cost of (parm_cursor_down)       */
703         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
704         int             _hpa_cost;      /* cost of (column_address)         */
705         int             _vpa_cost;      /* cost of (row_address)            */
706         /* used in tty_update.c, must be chars */
707         int             _ed_cost;       /* cost of (clr_eos)                */
708         int             _el_cost;       /* cost of (clr_eol)                */
709         int             _el1_cost;      /* cost of (clr_bol)                */
710         int             _dch1_cost;     /* cost of (delete_character)       */
711         int             _ich1_cost;     /* cost of (insert_character)       */
712         int             _dch_cost;      /* cost of (parm_dch)               */
713         int             _ich_cost;      /* cost of (parm_ich)               */
714         int             _ech_cost;      /* cost of (erase_chars)            */
715         int             _rep_cost;      /* cost of (repeat_char)            */
716         int             _hpa_ch_cost;   /* cost of (column_address)         */
717         int             _cup_ch_cost;   /* cost of (cursor_address)         */
718         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
719         int             _inline_cost;   /* cost of inline-move              */
720         int             _smir_cost;     /* cost of (enter_insert_mode)      */
721         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
722         int             _ip_cost;       /* cost of (insert_padding)         */
723         /* used in lib_mvcur.c */
724         char *          _address_cursor;
725         /* used in tty_update.c */
726         int             _scrolling;     /* 1 if terminal's smart enough to  */
727
728         /* used in lib_color.c */
729         color_t         *_color_table;  /* screen's color palette            */
730         int             _color_count;   /* count of colors in palette        */
731         colorpair_t     *_color_pairs;  /* screen's color pair list          */
732         int             _pair_count;    /* count of color pairs              */
733 #if NCURSES_EXT_FUNCS
734         bool            _default_color; /* use default colors                */
735         bool            _has_sgr_39_49; /* has ECMA default color support    */
736         int             _default_fg;    /* assumed default foreground        */
737         int             _default_bg;    /* assumed default background        */
738 #endif
739         chtype          _ok_attributes; /* valid attributes for terminal     */
740         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
741         chtype          _xmc_triggers;  /* attributes to process if xmc      */
742         chtype *        _acs_map;       /* the real alternate-charset map    */
743         bool *          _screen_acs_map;
744
745
746         /* used in lib_vidattr.c */
747         bool            _use_rmso;      /* true if we may use 'rmso'         */
748         bool            _use_rmul;      /* true if we may use 'rmul'         */
749
750         /*
751          * These data correspond to the state of the idcok() and idlok()
752          * functions.  A caveat is in order here:  the XSI and SVr4
753          * documentation specify that these functions apply to the window which
754          * is given as an argument.  However, ncurses implements this logic
755          * only for the newscr/curscr update process, _not_ per-window.
756          */
757         bool            _nc_sp_idlok;
758         bool            _nc_sp_idcok;
759 #define _nc_idlok SP->_nc_sp_idlok
760 #define _nc_idcok SP->_nc_sp_idcok
761
762         /*
763          * These are the data that support the mouse interface.
764          */
765         bool            _mouse_initialized;
766         MouseType       _mouse_type;
767         int             _maxclick;
768         bool            (*_mouse_event) (SCREEN *);
769         bool            (*_mouse_inline)(SCREEN *);
770         bool            (*_mouse_parse) (int);
771         void            (*_mouse_resume)(SCREEN *);
772         void            (*_mouse_wrap)  (SCREEN *);
773         int             _mouse_fd;      /* file-descriptor, if any */
774         bool            _mouse_active;  /* true if initialized */
775         mmask_t         _mouse_mask;
776         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
777         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
778         MEVENT          *_mouse_eventp; /* next free slot in event queue */
779
780 #if USE_GPM_SUPPORT
781         bool            _mouse_gpm_loaded;
782         bool            _mouse_gpm_found;
783 #ifdef HAVE_LIBDL
784         TYPE_gpm_fd     _mouse_gpm_fd;
785         TYPE_Gpm_Open   _mouse_Gpm_Open;
786         TYPE_Gpm_Close  _mouse_Gpm_Close;
787         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
788 #endif
789         Gpm_Connect     _mouse_gpm_connect;
790 #endif /* USE_GPM_SUPPORT */
791
792 #if USE_EMX_MOUSE
793         int             _emxmouse_wfd;
794         int             _emxmouse_thread;
795         int             _emxmouse_activated;
796         char            _emxmouse_buttons[4];
797 #endif
798
799 #if USE_SYSMOUSE
800         MEVENT          _sysmouse_fifo[FIFO_SIZE];
801         int             _sysmouse_head;
802         int             _sysmouse_tail;
803         int             _sysmouse_char_width;   /* character width */
804         int             _sysmouse_char_height;  /* character height */
805         int             _sysmouse_old_buttons;
806         int             _sysmouse_new_buttons;
807 #endif
808
809         /*
810          * This supports automatic resizing
811          */
812 #if USE_SIZECHANGE
813         int             (*_resize)(int,int);
814 #endif
815
816         /*
817          * These are data that support the proper handling of the panel stack on an
818          * per screen basis.
819          */
820         struct panelhook _panelHook;
821         /*
822          * Linked-list of all windows, to support '_nc_resizeall()' and
823          * '_nc_freeall()'
824          */
825         WINDOWLIST      *_nc_sp_windows;
826 #define _nc_windows SP->_nc_sp_windows
827
828         bool            _sig_winch;
829         SCREEN          *_next_screen;
830
831         /* hashes for old and new lines */
832         unsigned long   *oldhash, *newhash;
833         HASHMAP         *hashtab;
834         int             hashtab_len;
835         int             *_oldnum_list;
836         int             _oldnum_size;
837
838         bool            _cleanup;       /* cleanup after int/quit signal */
839         int             (*_outch)(int); /* output handler if not putc */
840
841         int             _legacy_coding; /* see use_legacy_coding() */
842
843 #if USE_REENTRANT
844         char            _ttytype[NAMESIZE];
845         int             _ESCDELAY;
846         int             _TABSIZE;
847         int             _LINES;
848         int             _COLS;
849 #ifdef TRACE
850         int             _outchars;
851         const char      *_tputs_trace;
852 #endif
853 #endif
854         /*
855          * ncurses/ncursesw are the same up to this point.
856          */
857 #if USE_WIDEC_SUPPORT
858         /* recent versions of 'screen' have partially-working support for
859          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
860          */
861         bool            _screen_acs_fix;
862 #endif
863 };
864
865 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
866 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
867
868         WINDOWLIST {
869         WINDOW  win;    /* first, so WINDOW_EXT() works */
870         WINDOWLIST *next;
871 #ifdef _XOPEN_SOURCE_EXTENDED
872         char addch_work[(MB_LEN_MAX * 9) + 1];
873         unsigned addch_used;    /* number of bytes in addch_work[] */
874         int addch_x;            /* x-position for addch_work[] */
875         int addch_y;            /* y-position for addch_work[] */
876 #endif
877 #ifdef USE_PTHREADS
878         pthread_mutex_t mutex_use_window;
879 #endif
880 };
881
882 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field)
883
884 /* usually in <limits.h> */
885 #ifndef UCHAR_MAX
886 #define UCHAR_MAX 255
887 #endif
888
889 /* The terminfo source is assumed to be 7-bit ASCII */
890 #define is7bits(c)      ((unsigned)(c) < 128)
891
892 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
893 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
894
895 #ifndef min
896 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
897 #endif
898
899 #ifndef max
900 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
901 #endif
902
903 /* usually in <unistd.h> */
904 #ifndef STDIN_FILENO
905 #define STDIN_FILENO 0
906 #endif
907
908 #ifndef STDOUT_FILENO
909 #define STDOUT_FILENO 1
910 #endif
911
912 #ifndef STDERR_FILENO
913 #define STDERR_FILENO 2
914 #endif
915
916 #ifndef EXIT_SUCCESS
917 #define EXIT_SUCCESS 0
918 #endif
919
920 #ifndef EXIT_FAILURE
921 #define EXIT_FAILURE 1
922 #endif
923
924 #ifndef R_OK
925 #define R_OK    4               /* Test for read permission.  */
926 #endif
927 #ifndef W_OK
928 #define W_OK    2               /* Test for write permission.  */
929 #endif
930 #ifndef X_OK
931 #define X_OK    1               /* Test for execute permission.  */
932 #endif
933 #ifndef F_OK
934 #define F_OK    0               /* Test for existence.  */
935 #endif
936
937 #if HAVE_FCNTL_H
938 #include <fcntl.h>              /* may define O_BINARY  */
939 #endif
940
941 #ifndef O_BINARY
942 #define O_BINARY 0
943 #endif
944
945 #ifdef TRACE
946 #if USE_REENTRANT
947 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
948 #else
949 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
950 #endif
951 #else
952 #define COUNT_OUTCHARS(n) /* nothing */
953 #endif
954
955 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
956
957 #define UChar(c)        ((unsigned char)(c))
958 #define ChCharOf(c)     ((c) & (chtype)A_CHARTEXT)
959 #define ChAttrOf(c)     ((c) & (chtype)A_ATTRIBUTES)
960
961 #ifndef MB_LEN_MAX
962 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
963 #endif
964
965 #if USE_WIDEC_SUPPORT /* { */
966 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
967
968 #define init_mb(state)  memset(&state, 0, sizeof(state))
969
970 #if NCURSES_EXT_COLORS
971 #define NulColor        , 0
972 #else
973 #define NulColor        /* nothing */
974 #endif
975
976 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
977 #define CharOf(c)       ((c).chars[0])
978 #define AttrOf(c)       ((c).attr)
979
980 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
981 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
982 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
983
984 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
985 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
986
987 #if CCHARW_MAX == 5
988 #define CharEq(a,b)     (((a).attr == (b).attr) \
989                        && (a).chars[0] == (b).chars[0] \
990                        && (a).chars[1] == (b).chars[1] \
991                        && (a).chars[2] == (b).chars[2] \
992                        && (a).chars[3] == (b).chars[3] \
993                        && (a).chars[4] == (b).chars[4] \
994                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
995 #else
996 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
997 #endif
998
999 #define SetChar(ch,c,a) do {                                                        \
1000                             NCURSES_CH_T *_cp = &ch;                                \
1001                             memset(_cp, 0, sizeof(ch));                             \
1002                             _cp->chars[0] = (c);                                            \
1003                             _cp->attr = (a);                                        \
1004                             if_EXT_COLORS(SetPair(ch, PAIR_NUMBER(a)));             \
1005                         } while (0)
1006 #define CHREF(wch)      (&wch)
1007 #define CHDEREF(wch)    (*wch)
1008 #define ARG_CH_T        NCURSES_CH_T *
1009 #define CARG_CH_T       const NCURSES_CH_T *
1010 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1011                         mbstate_t PUT_st; wchar_t PUTC_ch
1012 #define PUTC_INIT       init_mb (PUT_st)
1013 #define PUTC(ch,b)      do { if(!isWidecExt(ch)) {                                  \
1014                         if (Charable(ch)) {                                         \
1015                             fputc(CharOf(ch), b);                                   \
1016                             COUNT_OUTCHARS(1);                                      \
1017                         } else {                                                    \
1018                             PUTC_INIT;                                              \
1019                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1020                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1021                                 if (PUTC_ch == L'\0')                               \
1022                                     break;                                          \
1023                                 PUTC_n = wcrtomb(PUTC_buf,                          \
1024                                                  (ch).chars[PUTC_i], &PUT_st);      \
1025                                 if (PUTC_n <= 0) {                                  \
1026                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1027                                         putc(PUTC_ch,b);                            \
1028                                     break;                                          \
1029                                 }                                                   \
1030                                 fwrite(PUTC_buf, (unsigned) PUTC_n, 1, b);          \
1031                             }                                                       \
1032                             COUNT_OUTCHARS(PUTC_i);                                 \
1033                         } } } while (0)
1034
1035 #define BLANK           NewChar2(' ', WA_NORMAL)
1036 #define ZEROS           NewChar2('\0', WA_NORMAL)
1037 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1038
1039         /*
1040          * Wide characters cannot be represented in the A_CHARTEXT mask of
1041          * attr_t's but an application might have set a narrow character there.
1042          * But even in that case, it would only be a printable character, or
1043          * zero.  Otherwise we can use those bits to tell if a cell is the
1044          * first or extension part of a wide character.
1045          */
1046 #define WidecExt(ch)    (AttrOf(ch) & A_CHARTEXT)
1047 #define isWidecBase(ch) (WidecExt(ch) == 1)
1048 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1049 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1050                                 AttrOf(dst) |= (ext + 1)
1051
1052 #define if_WIDEC(code)  code
1053 #define Charable(ch)    ((SP != 0 && SP->_legacy_coding)                \
1054                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1055                          || (!isWidecExt(ch) &&                         \
1056                              (ch).chars[1] == L'\0' &&                  \
1057                              _nc_is_charable(CharOf(ch))))
1058
1059 #define L(ch)           L ## ch
1060 #else /* }{ */
1061 #define CharOf(c)       ChCharOf(c)
1062 #define AttrOf(c)       ChAttrOf(c)
1063 #define AddAttr(c,a)    c |= (a)
1064 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1065 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1066 #define NewChar(ch)     (ch)
1067 #define NewChar2(c,a)   ((c) | (a))
1068 #define CharEq(a,b)     ((a) == (b))
1069 #define SetChar(ch,c,a) ch = (c) | (a)
1070 #define CHREF(wch)      wch
1071 #define CHDEREF(wch)    wch
1072 #define ARG_CH_T        NCURSES_CH_T
1073 #define CARG_CH_T       NCURSES_CH_T
1074 #define PUTC_DATA       int data = 0
1075 #define PUTC(ch,b)      do { data = CharOf(ch); putc(data,b); } while (0)
1076
1077 #define BLANK           (' '|A_NORMAL)
1078 #define ZEROS           ('\0'|A_NORMAL)
1079 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1080
1081 #define isWidecExt(ch)  (0)
1082 #define if_WIDEC(code) /* nothing */
1083
1084 #define L(ch)           ch
1085 #endif /* } */
1086
1087 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1088 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1089 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1090
1091 #define BLANK_ATTR      A_NORMAL
1092 #define BLANK_TEXT      L(' ')
1093
1094 #define CHANGED     -1
1095
1096 #define LEGALYX(w, y, x) \
1097               ((w) != 0 && \
1098                 ((x) >= 0 && (x) <= (w)->_maxx && \
1099                  (y) >= 0 && (y) <= (w)->_maxy))
1100
1101 #define CHANGED_CELL(line,col) \
1102         if (line->firstchar == _NOCHANGE) \
1103                 line->firstchar = line->lastchar = col; \
1104         else if ((col) < line->firstchar) \
1105                 line->firstchar = col; \
1106         else if ((col) > line->lastchar) \
1107                 line->lastchar = col
1108
1109 #define CHANGED_RANGE(line,start,end) \
1110         if (line->firstchar == _NOCHANGE \
1111          || line->firstchar > (start)) \
1112                 line->firstchar = start; \
1113         if (line->lastchar == _NOCHANGE \
1114          || line->lastchar < (end)) \
1115                 line->lastchar = end
1116
1117 #define CHANGED_TO_EOL(line,start,end) \
1118         if (line->firstchar == _NOCHANGE \
1119          || line->firstchar > (start)) \
1120                 line->firstchar = start; \
1121         line->lastchar = end
1122
1123 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1124
1125 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1126
1127 /* FreeAndNull() is not a comma-separated expression because some compilers
1128  * do not accept a mixture of void with values.
1129  */
1130 #define FreeAndNull(p)   free(p); p = 0
1131
1132 #include <nc_alloc.h>
1133
1134 /*
1135  * TTY bit definition for converting tabs to spaces.
1136  */
1137 #ifdef TAB3
1138 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1139 #else
1140 # ifdef XTABS
1141 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1142 # else
1143 #  ifdef OXTABS
1144 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1145 #  else
1146 #   define OFLAGS_TABS 0
1147 #  endif
1148 # endif
1149 #endif
1150
1151 /*
1152  * Prefixes for call/return points of library function traces.  We use these to
1153  * instrument the public functions so that the traces can be easily transformed
1154  * into regression scripts.
1155  */
1156 #define T_CALLED(fmt) "called {" fmt
1157 #define T_CREATE(fmt) "create :" fmt
1158 #define T_RETURN(fmt) "return }" fmt
1159
1160 #ifdef TRACE
1161
1162 #if USE_REENTRANT
1163 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1164 #else
1165 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1166 #endif
1167
1168 #define START_TRACE() \
1169         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1170             int t = _nc_getenv_num("NCURSES_TRACE"); \
1171             if (t >= 0) \
1172                 trace((unsigned) t); \
1173         }
1174
1175 /*
1176  * Many of the _tracef() calls use static buffers; lock the trace state before
1177  * trying to fill them.
1178  */
1179 #if USE_REENTRANT
1180 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1181 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1182 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1183 #else
1184 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1185 #define _nc_locked_tracef _tracef
1186 #endif
1187
1188 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1189 #define T(a)            TR(TRACE_CALLS, a)
1190 #define TRACE_RETURN(value,type) return _nc_retrace_##type(value)
1191
1192 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1193 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1194 #define returnBool(code)        TRACE_RETURN(code,bool)
1195 #define returnCPtr(code)        TRACE_RETURN(code,cptr)
1196 #define returnCVoidPtr(code)    TRACE_RETURN(code,cvoid_ptr)
1197 #define returnChar(code)        TRACE_RETURN(code,chtype)
1198 #define returnCode(code)        TRACE_RETURN(code,int)
1199 #define returnPtr(code)         TRACE_RETURN(code,ptr)
1200 #define returnSP(code)          TRACE_RETURN(code,sp)
1201 #define returnVoid              T((T_RETURN(""))); return
1202 #define returnVoidPtr(code)     TRACE_RETURN(code,void_ptr)
1203 #define returnWin(code)         TRACE_RETURN(code,win)
1204
1205 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (NCURSES_BOOL);
1206 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1207 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1208 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1209 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1210 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1211 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1212 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1213 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1214 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1215 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1216 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1217 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1218 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1219 extern NCURSES_EXPORT(void)             _nc_fifo_dump (void);
1220
1221 #if USE_REENTRANT
1222 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1223 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1224 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1225 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1226 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1227 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1228 #else
1229 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1230 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1231 #endif
1232
1233 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1234
1235 #if USE_WIDEC_SUPPORT
1236 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1237 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1238 #endif
1239
1240 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1241 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1242
1243 #else /* !TRACE */
1244
1245 #define START_TRACE() /* nothing */
1246
1247 #define T(a)
1248 #define TR(n, a)
1249 #define TPUTS_TRACE(s)
1250
1251 #define returnAttr(code)        return code
1252 #define returnBits(code)        return code
1253 #define returnBool(code)        return code
1254 #define returnCPtr(code)        return code
1255 #define returnCVoidPtr(code)    return code
1256 #define returnChar(code)        return code
1257 #define returnCode(code)        return code
1258 #define returnPtr(code)         return code
1259 #define returnSP(code)          return code
1260 #define returnVoid              return
1261 #define returnVoidPtr(code)     return code
1262 #define returnWin(code)         return code
1263
1264 #endif /* TRACE/!TRACE */
1265
1266 /*
1267  * Return-codes for tgetent() and friends.
1268  */
1269 #define TGETENT_YES  1          /* entry is found */
1270 #define TGETENT_NO   0          /* entry is not found */
1271 #define TGETENT_ERR -1          /* an error occurred */
1272
1273 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1274 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1275
1276 #define empty_module(name) \
1277 extern  NCURSES_EXPORT(void) name (void); \
1278         NCURSES_EXPORT(void) name (void) { }
1279
1280 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1281 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
1282 #define XMC_CHANGES(c) ((c) & SP->_xmc_suppress)
1283
1284 #define toggle_attr_on(S,at) {\
1285    if (PAIR_NUMBER(at) > 0) {\
1286       (S) = ((S) & ALL_BUT_COLOR) | (at);\
1287    } else {\
1288       (S) |= (at);\
1289    }\
1290    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1291
1292
1293 #define toggle_attr_off(S,at) {\
1294    if (PAIR_NUMBER(at) > 0) {\
1295       (S) &= ~(at|A_COLOR);\
1296    } else {\
1297       (S) &= ~(at);\
1298    }\
1299    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1300
1301 #define DelCharCost(count) \
1302                 ((parm_dch != 0) \
1303                 ? SP->_dch_cost \
1304                 : ((delete_character != 0) \
1305                         ? (SP->_dch1_cost * count) \
1306                         : INFINITY))
1307
1308 #define InsCharCost(count) \
1309                 ((parm_ich != 0) \
1310                 ? SP->_ich_cost \
1311                 : ((enter_insert_mode && exit_insert_mode) \
1312                   ? SP->_smir_cost + SP->_rmir_cost + (SP->_ip_cost * count) \
1313                   : ((insert_character != 0) \
1314                     ? ((SP->_ich1_cost + SP->_ip_cost) * count) \
1315                     : INFINITY)))
1316
1317 #if USE_XMC_SUPPORT
1318 #define UpdateAttrs(c)  if (!SameAttrOf(SCREEN_ATTRS(SP), c)) { \
1319                                 attr_t chg = AttrOf(SCREEN_ATTRS(SP)); \
1320                                 VIDATTR(AttrOf(c), GetPair(c)); \
1321                                 if (magic_cookie_glitch > 0 \
1322                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(SP))))) { \
1323                                         T(("%s @%d before glitch %d,%d", \
1324                                                 __FILE__, __LINE__, \
1325                                                 SP->_cursrow, \
1326                                                 SP->_curscol)); \
1327                                         _nc_do_xmc_glitch(chg); \
1328                                 } \
1329                         }
1330 #else
1331 #define UpdateAttrs(c)  if (!SameAttrOf(SCREEN_ATTRS(SP), c)) \
1332                                 VIDATTR(AttrOf(c), GetPair(c));
1333 #endif
1334
1335 /*
1336  * Macros to make additional parameter to implement wgetch_events()
1337  */
1338 #ifdef NCURSES_WGETCH_EVENTS
1339 #define EVENTLIST_0th(param) param
1340 #define EVENTLIST_1st(param) param
1341 #define EVENTLIST_2nd(param) , param
1342 #else
1343 #define EVENTLIST_0th(param) void
1344 #define EVENTLIST_1st(param) /* nothing */
1345 #define EVENTLIST_2nd(param) /* nothing */
1346 #endif
1347
1348 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1349
1350 #undef  toggle_attr_on
1351 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1352 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1353
1354 #undef  toggle_attr_off
1355 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1356 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1357
1358 #undef  DelCharCost
1359 #define DelCharCost(count) _nc_DelCharCost(count)
1360 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1361
1362 #undef  InsCharCost
1363 #define InsCharCost(count) _nc_InsCharCost(count)
1364 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1365
1366 #undef  UpdateAttrs
1367 #define UpdateAttrs(c) _nc_UpdateAttrs(c)
1368 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (NCURSES_CH_T);
1369
1370 #else
1371
1372 extern NCURSES_EXPORT(void) _nc_expanded (void);
1373
1374 #endif
1375
1376 #if !HAVE_GETCWD
1377 #define getcwd(buf,len) getwd(buf)
1378 #endif
1379
1380 /* charable.c */
1381 #if USE_WIDEC_SUPPORT
1382 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1383 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1384 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1385 #endif
1386
1387 /* comp_captab.c */
1388 typedef struct {
1389         short   nte_name;       /* offset of name to hash on */
1390         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1391         short   nte_index;      /* index of associated variable in its array */
1392         short   nte_link;       /* index in table of next hash, or -1 */
1393 } name_table_data;
1394
1395 typedef struct
1396 {
1397         short   from;
1398         short   to;
1399         short   source;
1400 } alias_table_data;
1401
1402 /* doupdate.c */
1403 #if USE_XMC_SUPPORT
1404 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1405 #endif
1406
1407 /* hardscroll.c */
1408 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1409 extern NCURSES_EXPORT(void) _nc_linedump (void);
1410 #endif
1411
1412 /* lib_acs.c */
1413 extern NCURSES_EXPORT(void) _nc_init_acs (void);        /* corresponds to traditional 'init_acs()' */
1414 extern NCURSES_EXPORT(int) _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1415
1416 /* lib_addch.c */
1417 #if USE_WIDEC_SUPPORT
1418 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1419 #endif
1420
1421 /* lib_addstr.c */
1422 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1423 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1424 #endif
1425
1426 /* lib_color.c */
1427 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1428
1429 /* lib_getch.c */
1430 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, unsigned long *, int EVENTLIST_2nd(_nc_eventlist *));
1431
1432 /* lib_insch.c */
1433 extern NCURSES_EXPORT(int) _nc_insert_ch(WINDOW *, chtype);
1434
1435 /* lib_mvcur.c */
1436 #define INFINITY        1000000 /* cost: too high to use */
1437
1438 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1439 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1440 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1441
1442 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1443
1444 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1445 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1446 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1447
1448 /* lib_mouse.c */
1449 extern NCURSES_EXPORT(int) _nc_has_mouse (void);
1450
1451 /* lib_mvcur.c */
1452 #define INFINITY        1000000 /* cost: too high to use */
1453 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1454
1455 /* lib_setup.c */
1456 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1457 extern NCURSES_EXPORT(int) _nc_unicode_locale(void);
1458 extern NCURSES_EXPORT(int) _nc_locale_breaks_acs(void);
1459 extern NCURSES_EXPORT(int) _nc_setupterm(NCURSES_CONST char *, int, int *, bool);
1460 extern NCURSES_EXPORT(void) _nc_get_screensize(int *, int *);
1461
1462 /* lib_tstp.c */
1463 #if USE_SIGWINCH
1464 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(int);
1465 #else
1466 #define _nc_handle_sigwinch(a) /* nothing */
1467 #endif
1468
1469 /* lib_wacs.c */
1470 #if USE_WIDEC_SUPPORT
1471 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1472 #endif
1473
1474 typedef struct {
1475     char *s_head;       /* beginning of the string (may be null) */
1476     char *s_tail;       /* end of the string (may be null) */
1477     size_t s_size;      /* current remaining size available */
1478     size_t s_init;      /* total size available */
1479 } string_desc;
1480
1481 /* strings.c */
1482 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
1483 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
1484 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
1485 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
1486 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
1487
1488 #if !HAVE_STRSTR
1489 #define strstr _nc_strstr
1490 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1491 #endif
1492
1493 /* safe_sprintf.c */
1494 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1495
1496 /* tries.c */
1497 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
1498 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
1499 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
1500 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
1501
1502 /* elsewhere ... */
1503 extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry(ENTRY *, TERMTYPE *);
1504 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
1505 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1506 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1507 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1508 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1509 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
1510 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1511 extern NCURSES_EXPORT(int) _nc_keypad (bool);
1512 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1513 extern NCURSES_EXPORT(int) _nc_outch (int);
1514 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1515 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, bool, int);
1516 extern NCURSES_EXPORT(int) _nc_timed_wait(int, int, int * EVENTLIST_2nd(_nc_eventlist *));
1517 extern NCURSES_EXPORT(void) _nc_do_color (short, short, bool, int (*)(int));
1518 extern NCURSES_EXPORT(void) _nc_flush (void);
1519 extern NCURSES_EXPORT(void) _nc_free_entry(ENTRY *, TERMTYPE *);
1520 extern NCURSES_EXPORT(void) _nc_freeall (void);
1521 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1522 extern NCURSES_EXPORT(void) _nc_init_keytry (void);
1523 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1524 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
1525 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
1526 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1527 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, bool);
1528 extern NCURSES_EXPORT(void) _nc_signal_handler (bool);
1529 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
1530 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
1531
1532 #if NO_LEAKS
1533 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1534 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1535 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
1536 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
1537 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1538 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1539 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
1540 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1541 #endif
1542
1543 #ifndef USE_TERMLIB
1544 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
1545 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
1546 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, NCURSES_SIZE_T const, NCURSES_SIZE_T const, NCURSES_CH_T);
1547 #endif
1548
1549 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1550 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
1551 #endif
1552
1553 #if USE_SIZECHANGE
1554 extern NCURSES_EXPORT(void) _nc_update_screensize (void);
1555 #endif
1556
1557 #if HAVE_RESIZETERM
1558 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
1559 #else
1560 #define _nc_resize_margins(wp) /* nothing */
1561 #endif
1562
1563 #ifdef NCURSES_WGETCH_EVENTS
1564 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
1565 #else
1566 #define wgetch_events(win, evl) wgetch(win)
1567 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
1568 #endif
1569
1570 /*
1571  * Not everyone has vsscanf(), but we'd like to use it for scanw().
1572  */
1573 #if !HAVE_VSSCANF
1574 extern int vsscanf(const char *str, const char *format, va_list __arg);
1575 #endif
1576
1577 /* scroll indices */
1578 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
1579
1580 #define USE_SETBUF_0 0
1581
1582 #define NC_BUFFERED(flag) _nc_set_buffer(SP->_ofp, flag)
1583
1584 #define NC_OUTPUT ((SP != 0) ? SP->_ofp : stdout)
1585
1586 /*
1587  * On systems with a broken linker, define 'SP' as a function to force the
1588  * linker to pull in the data-only module with 'SP'.
1589  */
1590 #if BROKEN_LINKER
1591 #define SP _nc_screen()
1592 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
1593 extern NCURSES_EXPORT(int) _nc_alloc_screen (void);
1594 extern NCURSES_EXPORT(void) _nc_set_screen (SCREEN *);
1595 #else
1596 /* current screen is private data; avoid possible linking conflicts too */
1597 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
1598 #define _nc_alloc_screen() ((SP = typeCalloc(SCREEN, 1)) != 0)
1599 #define _nc_set_screen(sp) SP = sp
1600 #endif
1601
1602 /*
1603  * We don't want to use the lines or columns capabilities internally, because
1604  * if the application is running multiple screens under X, it's quite possible
1605  * they could all have type xterm but have different sizes!  So...
1606  */
1607 #define screen_lines    SP->_lines
1608 #define screen_columns  SP->_columns
1609
1610 extern NCURSES_EXPORT_VAR(int) _nc_slk_format;  /* != 0 if slk_init() called */
1611 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
1612
1613 /*
1614  * Some constants related to SLK's
1615  */
1616 #define MAX_SKEY_OLD       8    /* count of soft keys */
1617 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
1618 #define MAX_SKEY_PC       12    /* This is what most PC's have */
1619 #define MAX_SKEY_LEN_PC    5
1620
1621 /* Macro to check whether or not we use a standard format */
1622 #define SLK_STDFMT(fmt) (fmt < 3)
1623 /* Macro to determine height of label window */
1624 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
1625
1626 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
1627 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
1628
1629 extern NCURSES_EXPORT(int) _nc_ripoffline (int line, int (*init)(WINDOW *,int));
1630
1631 /*
1632  * Common error messages
1633  */
1634 #define MSG_NO_MEMORY "Out of memory"
1635 #define MSG_NO_INPUTS "Premature EOF"
1636
1637 #ifdef __cplusplus
1638 }
1639 #endif
1640
1641 #endif /* CURSES_PRIV_H */