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