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