1 /****************************************************************************
2 * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
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 ****************************************************************************/
36 * $Id: curses.priv.h,v 1.314 2006/12/10 00:55:14 tom Exp $
40 * Header file for curses library objects which are private to
45 #ifndef _CURSES_PRIV_H
46 #define _CURSES_PRIV_H 1
48 //// #include <ncurses_dll.h>
54 //// #include <ncurses_cfg.h>
57 #define MODULE_ID(id) static const char Ident[] = id;
59 #define MODULE_ID(id) /*nothing*/
64 #include <sys/types.h>
70 //// #if HAVE_SYS_BSDTYPES_H
71 //// #include <sys/bsdtypes.h> /* needed for ISC */
76 //// #elif HAVE_SYS_PARAM_H
77 //// # include <sys/param.h>
80 //// #include <assert.h>
89 //// #include <nc_panel.h>
91 //// /* Some systems have a broken 'select()', but workable 'poll()'. Use that */
92 //// #if HAVE_WORKING_POLL
93 //// #define USE_FUNC_POLL 1
95 //// #include <poll.h>
97 //// #include <sys/poll.h>
100 //// #define USE_FUNC_POLL 0
103 //// /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
104 //// #include <signal.h>
106 /* Alessandro Rubini's GPM (general-purpose mouse) */
107 #if HAVE_LIBGPM && HAVE_GPM_H
108 #define USE_GPM_SUPPORT 1
110 #define USE_GPM_SUPPORT 0
113 /* QNX mouse support */
114 #if defined(__QNX__) && !defined(__QNXNTO__)
115 #define USE_QNX_MOUSE 1
117 #define USE_QNX_MOUSE 0
120 /* EMX mouse support */
122 #define USE_EMX_MOUSE 1
124 #define USE_EMX_MOUSE 0
127 #define DEFAULT_MAXCLICK 166
128 #define EV_MAX 8 /* size of mouse circular event queue */
131 * If we don't have signals to support it, don't add a sigwinch handler.
132 * In any case, resizing is an extended feature. Use it if we've got it.
134 #if !NCURSES_EXT_FUNCS
135 #undef HAVE_SIZECHANGE
136 #define HAVE_SIZECHANGE 0
139 #if HAVE_SIZECHANGE && defined(SIGWINCH)
140 #define USE_SIZECHANGE 1
142 #define USE_SIZECHANGE 0
144 #define USE_SIGWINCH 0
148 * If desired, one can configure this, disabling environment variables that
149 * point to custom terminfo/termcap locations.
151 #ifdef USE_ROOT_ENVIRON
152 #define use_terminfo_vars() 1
154 #define use_terminfo_vars() _nc_env_access()
155 extern NCURSES_EXPORT(int) _nc_env_access (void);
159 * Not all platforms have memmove; some have an equivalent bcopy. (Some may
163 #define memmove(d,s,n) bcopy(s,d,n)
165 #define memmove(d,s,n) _nc_memmove(d,s,n)
166 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
170 * Scroll hints are useless when hashmap is used
172 //// #if !USE_SCROLL_HINTS
173 //// #if !USE_HASHMAP
174 //// #define USE_SCROLL_HINTS 1
176 //// #define USE_SCROLL_HINTS 0
181 #define if_USE_SCROLL_HINTS(stmt) stmt
183 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
187 * Note: ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
188 * when we're throwing control codes at the screen at high volume. To see
189 * this, re-enable USE_HARD_TABS and run worm for a while. Other systems
190 * probably don't want to define this either due to uncertainties about tab
191 * delays and expansion in raw mode.
195 struct tries
*child
; /* ptr to child. NULL if none */
196 struct tries
*sibling
; /* ptr to sibling. NULL if none */
197 unsigned char ch
; /* character at this node */
198 unsigned short value
; /* code of string so far. 0 if none. */
202 * Common/troublesome character definitions
209 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
212 * Structure for palette tables
217 short red
, green
, blue
; /* what color_content() returns */
218 short r
, g
, b
; /* params to init_color() */
219 int init
; /* true if we called init_color() */
223 #define MAXCOLUMNS 135
225 #define FIFO_SIZE MAXCOLUMNS+2 /* for nocbreak mode input */
229 #define WINDOWLIST struct _win_list
231 #if USE_WIDEC_SUPPORT
232 #define _nc_bkgd _bkgrnd
234 #undef _XOPEN_SOURCE_EXTENDED
235 #define _nc_bkgd _bkgd
236 #define wgetbkgrnd(win, wch) *wch = win->_bkgd
237 #define wbkgrnd wbkgd
240 //// #include <curses.h> /* we'll use -Ipath directive to get the right one! */
241 //// #include <term.h>
242 //// #include <term_entry.h>
243 //// #include <nc_tparm.h>
245 #if NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT
246 #define if_EXT_COLORS(stmt) stmt
247 #define NetPair(value,p) (value).ext_color = (p), \
248 AttrOf(value) &= ALL_BUT_COLOR, \
249 AttrOf(value) |= (A_COLOR & COLOR_PAIR((p > 255) ? 255 : p))
250 #define SetPair(value,p) (value).ext_color = (p)
251 #define GetPair(value) (value).ext_color
252 #define unColor(n) (AttrOf(n) & ALL_BUT_COLOR)
253 #define GET_WINDOW_PAIR(w) (w)->_color
254 #define SET_WINDOW_PAIR(w,p) (w)->_color = (p)
255 #define SameAttrOf(a,b) (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
256 #define VIDATTR(attr, pair) vid_attr(attr, pair, 0)
258 #define if_EXT_COLORS(stmt) /* nothing */
259 #define SetPair(value,p) RemAttr(value, A_COLOR), \
260 SetAttr(value, AttrOf(value) | (A_COLOR & COLOR_PAIR(p)))
261 #define GetPair(value) PAIR_NUMBER(AttrOf(value))
262 #define unColor(n) (AttrOf(n) & ALL_BUT_COLOR)
263 #define GET_WINDOW_PAIR(w) PAIR_NUMBER(WINDOW_ATTRS(w))
264 #define SET_WINDOW_PAIR(w,p) WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
265 WINDOW_ATTRS(w) |= (A_COLOR & COLOR_PAIR(p))
266 #define SameAttrOf(a,b) (AttrOf(a) == AttrOf(b))
267 #define VIDATTR(attr, pair) vidattr(attr)
270 #define WINDOW_ATTRS(w) ((w)->_attrs)
272 #define SCREEN_ATTRS(s) (*((s)->_current_attr))
273 #define GET_SCREEN_PAIR(s) GetPair(SCREEN_ATTRS(s))
274 #define SET_SCREEN_PAIR(s,p) SetPair(SCREEN_ATTRS(s), p)
277 * Definitions for color pairs
279 typedef unsigned colorpair_t
; /* type big enough to store PAIR_OF() */
280 #define C_SHIFT 9 /* we need more bits than there are colors */
281 #define C_MASK ((1 << C_SHIFT) - 1)
282 #define PAIR_OF(fg, bg) ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
283 #define isDefaultColor(c) ((c) >= COLOR_DEFAULT || (c) < 0)
285 #define COLOR_DEFAULT C_MASK
287 #if defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T)
289 #undef NCURSES_CH_T /* this is not a termlib feature */
290 #define NCURSES_CH_T void /* ...but we need a pointer in SCREEN */
292 #endif /* USE_TERMLIB */
297 NCURSES_CH_T
*text
; /* text of the line */
298 NCURSES_SIZE_T firstchar
; /* first changed character in the line */
299 NCURSES_SIZE_T lastchar
; /* last changed character in the line */
300 NCURSES_SIZE_T oldindex
; /* index of the line at last update */
302 #endif /* USE_TERMLIB */
305 M_XTERM
= -1 /* use xterm's mouse tracking? */
306 ,M_NONE
= 0 /* no mouse device */
311 ,M_SYSMOUSE
/* FreeBSD sysmouse on console */
316 * Structures for scrolling.
320 unsigned long hashval
;
321 int oldcount
, newcount
;
322 int oldindex
, newindex
;
326 * Structures for soft labels.
335 char *ent_text
; /* text for the label */
336 char *form_text
; /* formatted text (left/center/...) */
337 int ent_x
; /* x coordinate of this field */
338 char dirty
; /* this label has changed */
339 char visible
; /* field is visible */
342 typedef struct _SLK
{
343 char dirty
; /* all labels have changed */
344 char hidden
; /* soft labels are hidden */
347 short maxlab
; /* number of available labels */
348 short labcnt
; /* number of allocated labels */
349 short maxlen
; /* length of labels */
350 NCURSES_CH_T attr
; /* soft label attribute */
353 #endif /* USE_TERMLIB */
356 int line
; /* lines to take, < 0 => from bottom*/
357 int (*hook
)(WINDOW
*, int); /* callback for user */
358 WINDOW
*w
; /* maybe we need this for cleanup */
362 #undef buttons /* term.h defines this, and gpm uses it! */
366 /* link dynamically to GPM */
367 typedef int *TYPE_gpm_fd
;
368 typedef int (*TYPE_Gpm_Open
) (Gpm_Connect
*, int);
369 typedef int (*TYPE_Gpm_Close
) (void);
370 typedef int (*TYPE_Gpm_GetEvent
) (Gpm_Event
*);
372 #define my_gpm_fd SP->_mouse_gpm_fd
373 #define my_Gpm_Open SP->_mouse_Gpm_Open
374 #define my_Gpm_Close SP->_mouse_Gpm_Close
375 #define my_Gpm_GetEvent SP->_mouse_Gpm_GetEvent
377 /* link statically to GPM */
378 #define my_gpm_fd &gpm_fd
379 #define my_Gpm_Open Gpm_Open
380 #define my_Gpm_Close Gpm_Close
381 #define my_Gpm_GetEvent Gpm_GetEvent
382 #endif /* HAVE_LIBDL */
383 #endif /* USE_GPM_SUPPORT */
386 * The SCREEN structure.
390 int _ifd
; /* input file ptr for screen */
391 FILE *_ofp
; /* output file ptr for screen */
392 char *_setbuf
; /* buffered I/O for output */
393 bool _filtered
; /* filter() was called */
394 bool _buffered
; /* setvbuf uses _setbuf data */
395 int _checkfd
; /* filedesc for typeahead check */
396 //// TERMINAL *_term; /* terminal type information */
397 short _lines
; /* screen lines */
398 short _columns
; /* screen columns */
400 short _lines_avail
; /* lines available for stdscr */
401 short _topstolen
; /* lines stolen from top */
402 ripoff_t _rippedoff
[5]; /* list of lines stolen */
403 int _rip_count
; /* ...and total lines stolen */
405 WINDOW
*_curscr
; /* current screen */
406 WINDOW
*_newscr
; /* virtual screen to be updated to */
407 WINDOW
*_stdscr
; /* screen's full-window context */
409 struct tries
*_keytry
; /* "Try" for use with keypad mode */
410 struct tries
*_key_ok
; /* Disabled keys via keyok(,FALSE) */
411 bool _tried
; /* keypad mode was initialized */
412 bool _keypad_on
; /* keypad mode is currently on */
414 bool _called_wgetch
; /* check for recursion in wgetch() */
415 int _fifo
[FIFO_SIZE
]; /* input push-back buffer */
416 short _fifohead
, /* head of fifo queue */
417 _fifotail
, /* tail of fifo queue */
418 _fifopeek
, /* where to peek for next char */
419 _fifohold
; /* set if breakout marked */
421 int _endwin
; /* are we out of window mode? */
422 NCURSES_CH_T
*_current_attr
; /* holds current attributes set */
423 int _coloron
; /* is color enabled? */
424 int _color_defs
; /* are colors modified */
425 int _cursor
; /* visibility of the cursor */
426 int _cursrow
; /* physical cursor row */
427 int _curscol
; /* physical cursor column */
428 bool _notty
; /* true if we cannot switch non-tty */
429 int _nl
; /* True if NL -> CR/NL is on */
430 int _raw
; /* True if in raw mode */
431 int _cbreak
; /* 1 if in cbreak mode */
432 /* > 1 if in halfdelay mode */
433 int _echo
; /* True if echo on */
434 int _use_meta
; /* use the meta key? */
435 struct _SLK
*_slk
; /* ptr to soft key struct / NULL */
436 int slk_format
; /* selected format for this screen */
437 /* cursor movement costs; units are 10ths of milliseconds */
438 #if NCURSES_NO_PADDING
439 int _no_padding
; /* flag to set if padding disabled */
441 int _char_padding
; /* cost of character put */
442 int _cr_cost
; /* cost of (carriage_return) */
443 int _cup_cost
; /* cost of (cursor_address) */
444 int _home_cost
; /* cost of (cursor_home) */
445 int _ll_cost
; /* cost of (cursor_to_ll) */
447 int _ht_cost
; /* cost of (tab) */
448 int _cbt_cost
; /* cost of (backtab) */
449 #endif /* USE_HARD_TABS */
450 int _cub1_cost
; /* cost of (cursor_left) */
451 int _cuf1_cost
; /* cost of (cursor_right) */
452 int _cud1_cost
; /* cost of (cursor_down) */
453 int _cuu1_cost
; /* cost of (cursor_up) */
454 int _cub_cost
; /* cost of (parm_cursor_left) */
455 int _cuf_cost
; /* cost of (parm_cursor_right) */
456 int _cud_cost
; /* cost of (parm_cursor_down) */
457 int _cuu_cost
; /* cost of (parm_cursor_up) */
458 int _hpa_cost
; /* cost of (column_address) */
459 int _vpa_cost
; /* cost of (row_address) */
460 /* used in tty_update.c, must be chars */
461 int _ed_cost
; /* cost of (clr_eos) */
462 int _el_cost
; /* cost of (clr_eol) */
463 int _el1_cost
; /* cost of (clr_bol) */
464 int _dch1_cost
; /* cost of (delete_character) */
465 int _ich1_cost
; /* cost of (insert_character) */
466 int _dch_cost
; /* cost of (parm_dch) */
467 int _ich_cost
; /* cost of (parm_ich) */
468 int _ech_cost
; /* cost of (erase_chars) */
469 int _rep_cost
; /* cost of (repeat_char) */
470 int _hpa_ch_cost
; /* cost of (column_address) */
471 int _cup_ch_cost
; /* cost of (cursor_address) */
472 int _cuf_ch_cost
; /* cost of (parm_cursor_right) */
473 int _inline_cost
; /* cost of inline-move */
474 int _smir_cost
; /* cost of (enter_insert_mode) */
475 int _rmir_cost
; /* cost of (exit_insert_mode) */
476 int _ip_cost
; /* cost of (insert_padding) */
477 /* used in lib_mvcur.c */
478 char * _address_cursor
;
479 /* used in tty_update.c */
480 int _scrolling
; /* 1 if terminal's smart enough to */
482 /* used in lib_color.c */
483 color_t
*_color_table
; /* screen's color palette */
484 int _color_count
; /* count of colors in palette */
485 colorpair_t
*_color_pairs
; /* screen's color pair list */
486 int _pair_count
; /* count of color pairs */
487 #if NCURSES_EXT_FUNCS
488 bool _default_color
; /* use default colors */
489 bool _has_sgr_39_49
; /* has ECMA default color support */
490 int _default_fg
; /* assumed default foreground */
491 int _default_bg
; /* assumed default background */
493 chtype _ok_attributes
; /* valid attributes for terminal */
494 chtype _xmc_suppress
; /* attributes to suppress if xmc */
495 chtype _xmc_triggers
; /* attributes to process if xmc */
496 chtype
* _acs_map
; /* the real alternate-charset map */
497 bool * _screen_acs_map
;
499 /* used in lib_vidattr.c */
500 bool _use_rmso
; /* true if we may use 'rmso' */
501 bool _use_rmul
; /* true if we may use 'rmul' */
504 * These data correspond to the state of the idcok() and idlok()
505 * functions. A caveat is in order here: the XSI and SVr4
506 * documentation specify that these functions apply to the window which
507 * is given as an argument. However, ncurses implements this logic
508 * only for the newscr/curscr update process, _not_ per-window.
512 #define _nc_idlok SP->_nc_sp_idlok
513 #define _nc_idcok SP->_nc_sp_idcok
515 #ifdef NCURSES_MOUSE_VERSION
517 * These are the data that support the mouse interface.
519 bool _mouse_initialized
;
520 MouseType _mouse_type
;
522 bool (*_mouse_event
) (SCREEN
*);
523 bool (*_mouse_inline
)(SCREEN
*);
524 bool (*_mouse_parse
) (int);
525 void (*_mouse_resume
)(SCREEN
*);
526 void (*_mouse_wrap
) (SCREEN
*);
527 int _mouse_fd
; /* file-descriptor, if any */
528 bool _mouse_active
; /* true if initialized */
530 NCURSES_CONST
char *_mouse_xtermcap
; /* string to enable/disable mouse */
531 MEVENT _mouse_events
[EV_MAX
]; /* hold the last mouse event seen */
532 MEVENT
*_mouse_eventp
; /* next free slot in event queue */
536 bool _mouse_gpm_loaded
;
537 bool _mouse_gpm_found
;
539 TYPE_gpm_fd _mouse_gpm_fd
;
540 TYPE_Gpm_Open _mouse_Gpm_Open
;
541 TYPE_Gpm_Close _mouse_Gpm_Close
;
542 TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent
;
544 Gpm_Connect _mouse_gpm_connect
;
545 #endif /* USE_GPM_SUPPORT */
549 int _emxmouse_thread
;
550 int _emxmouse_activated
;
551 char _emxmouse_buttons
[4];
555 MEVENT _sysmouse_fifo
[FIFO_SIZE
];
558 int _sysmouse_char_width
; /* character width */
559 int _sysmouse_char_height
; /* character height */
560 int _sysmouse_old_buttons
;
561 int _sysmouse_new_buttons
;
565 * This supports automatic resizing
568 int (*_resize
)(int,int);
572 * These are data that support the proper handling of the panel stack on an
575 //// struct panelhook _panelHook;
577 * Linked-list of all windows, to support '_nc_resizeall()' and
580 WINDOWLIST
*_nc_sp_windows
;
581 #define _nc_windows SP->_nc_sp_windows
584 SCREEN
*_next_screen
;
586 /* hashes for old and new lines */
587 unsigned long *oldhash
, *newhash
;
591 bool _cleanup
; /* cleanup after int/quit signal */
592 int (*_outch
)(int); /* output handler if not putc */
594 int _legacy_coding
; /* see use_legacy_coding() */
597 * ncurses/ncursesw are the same up to this point.
599 #if USE_WIDEC_SUPPORT
600 /* recent versions of 'screen' have partially-working support for
601 * UTF-8, but do not permit ACS at the same time (see tty_update.c).
603 bool _screen_acs_fix
;
607 extern NCURSES_EXPORT_VAR(SCREEN
*) _nc_screen_chain
;
610 WINDOW win
; /* first, so WINDOW_EXT() works */
612 #ifdef _XOPEN_SOURCE_EXTENDED
613 char addch_work
[(MB_LEN_MAX
* 9) + 1];
614 unsigned addch_used
; /* number of bytes in addch_work[] */
615 int addch_x
; /* x-position for addch_work[] */
616 int addch_y
; /* y-position for addch_work[] */
620 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field)
622 /* usually in <limits.h> */
624 #define UCHAR_MAX 255
627 /* The terminfo source is assumed to be 7-bit ASCII */
628 #define is7bits(c) ((unsigned)(c) < 128)
630 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
631 #define is8bits(c) ((unsigned)(c) <= UCHAR_MAX)
634 #define min(a,b) ((a) > (b) ? (b) : (a))
638 #define max(a,b) ((a) < (b) ? (b) : (a))
641 /* usually in <unistd.h> */
643 #define STDIN_FILENO 0
646 #ifndef STDOUT_FILENO
647 #define STDOUT_FILENO 1
650 #ifndef STDERR_FILENO
651 #define STDERR_FILENO 2
655 #define EXIT_SUCCESS 0
659 #define EXIT_FAILURE 1
663 #define R_OK 4 /* Test for read permission. */
666 #define W_OK 2 /* Test for write permission. */
669 #define X_OK 1 /* Test for execute permission. */
672 #define F_OK 0 /* Test for existence. */
676 //// #include <fcntl.h> /* may define O_BINARY */
684 #define TRACE_OUTCHARS(n) _nc_outchars += (n);
686 #define TRACE_OUTCHARS(n) /* nothing */
689 #define UChar(c) ((unsigned char)(c))
690 #define ChCharOf(c) ((c) & (chtype)A_CHARTEXT)
691 #define ChAttrOf(c) ((c) & (chtype)A_ATTRIBUTES)
694 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
697 #if USE_WIDEC_SUPPORT /* { */
698 #define isEILSEQ(status) ((status == (size_t)-1) && (errno == EILSEQ))
700 #define init_mb(state) memset(&state, 0, sizeof(state))
702 #if NCURSES_EXT_COLORS
705 #define NulColor /* nothing */
708 #define NulChar 0,0,0,0 /* FIXME: see CCHARW_MAX */
709 #define CharOf(c) ((c).chars[0])
710 #define AttrOf(c) ((c).attr)
711 #define AddAttr(c,a) AttrOf(c) |= ((a) & A_ATTRIBUTES)
712 #define RemAttr(c,a) AttrOf(c) &= ~((a) & A_ATTRIBUTES)
713 #define SetAttr(c,a) AttrOf(c) = ((a) & A_ATTRIBUTES)
714 #define NewChar2(c,a) { a, { c, NulChar } NulColor }
715 #define NewChar(ch) NewChar2(ChCharOf(ch), ChAttrOf(ch))
716 #define CharEq(a,b) (!memcmp(&(a), &(b), sizeof(a)))
717 #define SetChar(ch,c,a) do { \
718 NCURSES_CH_T *_cp = &ch; \
719 memset(_cp, 0, sizeof(ch)); \
720 _cp->chars[0] = (c); \
722 if_EXT_COLORS(SetPair(ch, PAIR_NUMBER(a))); \
724 #define CHREF(wch) (&wch)
725 #define CHDEREF(wch) (*wch)
726 #define ARG_CH_T NCURSES_CH_T *
727 #define CARG_CH_T const NCURSES_CH_T *
728 #define PUTC_DATA char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
729 mbstate_t PUT_st; wchar_t PUTC_ch
730 #define PUTC_INIT init_mb (PUT_st)
731 #define PUTC(ch,b) do { if(!isWidecExt(ch)) { \
732 if (Charable(ch)) { \
733 fputc(CharOf(ch), b); \
737 for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) { \
738 PUTC_ch = (ch).chars[PUTC_i]; \
739 if (PUTC_ch == L'\0') \
741 PUTC_n = wcrtomb(PUTC_buf, \
742 (ch).chars[PUTC_i], &PUT_st); \
744 if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
748 fwrite(PUTC_buf, (unsigned) PUTC_n, 1, b); \
750 TRACE_OUTCHARS(PUTC_i); \
753 #define BLANK { WA_NORMAL, {' '} NulColor }
754 #define ZEROS { WA_NORMAL, {'\0'} NulColor }
755 #define ISBLANK(ch) ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
758 * Wide characters cannot be represented in the A_CHARTEXT mask of
759 * attr_t's but an application might have set a narrow character there.
760 * But even in that case, it would only be a printable character, or
761 * zero. Otherwise we can use those bits to tell if a cell is the
762 * first or extension part of a wide character.
764 #define WidecExt(ch) (AttrOf(ch) & A_CHARTEXT)
765 #define isWidecBase(ch) (WidecExt(ch) == 1)
766 #define isWidecExt(ch) (WidecExt(ch) > 1 && WidecExt(ch) < 32)
767 #define SetWidecExt(dst, ext) AttrOf(dst) &= ~A_CHARTEXT, \
768 AttrOf(dst) |= (ext + 1)
770 #define if_WIDEC(code) code
771 #define Charable(ch) ((SP != 0 && SP->_legacy_coding) \
772 || (AttrOf(ch) & A_ALTCHARSET) \
773 || (!isWidecExt(ch) && \
774 (ch).chars[1] == L'\0' && \
775 _nc_is_charable(CharOf(ch))))
777 #define L(ch) L ## ch
779 #define CharOf(c) ChCharOf(c)
780 #define AttrOf(c) ChAttrOf(c)
781 #define AddAttr(c,a) c |= (a)
782 #define RemAttr(c,a) c &= ~((a) & A_ATTRIBUTES)
783 #define SetAttr(c,a) c = ((c) & ~A_ATTRIBUTES) | (a)
784 #define NewChar(ch) (ch)
785 #define NewChar2(c,a) ((c) | (a))
786 #define CharEq(a,b) ((a) == (b))
787 #define SetChar(ch,c,a) ch = (c) | (a)
788 #define CHREF(wch) wch
789 #define CHDEREF(wch) wch
790 #define ARG_CH_T NCURSES_CH_T
791 #define CARG_CH_T NCURSES_CH_T
792 #define PUTC_DATA int data = 0
793 #define PUTC(ch,b) do { data = CharOf(ch); putc(data,b); } while (0)
795 #define BLANK (' '|A_NORMAL)
796 #define ZEROS ('\0'|A_NORMAL)
797 #define ISBLANK(ch) (CharOf(ch) == ' ')
799 #define isWidecExt(ch) (0)
800 #define if_WIDEC(code) /* nothing */
805 #define AttrOfD(ch) AttrOf(CHDEREF(ch))
806 #define CharOfD(ch) CharOf(CHDEREF(ch))
807 #define SetChar2(wch,ch) SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
809 #define BLANK_ATTR A_NORMAL
810 #define BLANK_TEXT L(' ')
814 #define LEGALYX(w, y, x) \
816 ((x) >= 0 && (x) <= (w)->_maxx && \
817 (y) >= 0 && (y) <= (w)->_maxy))
819 #define CHANGED_CELL(line,col) \
820 if (line->firstchar == _NOCHANGE) \
821 line->firstchar = line->lastchar = col; \
822 else if ((col) < line->firstchar) \
823 line->firstchar = col; \
824 else if ((col) > line->lastchar) \
827 #define CHANGED_RANGE(line,start,end) \
828 if (line->firstchar == _NOCHANGE \
829 || line->firstchar > (start)) \
830 line->firstchar = start; \
831 if (line->lastchar == _NOCHANGE \
832 || line->lastchar < (end)) \
835 #define CHANGED_TO_EOL(line,start,end) \
836 if (line->firstchar == _NOCHANGE \
837 || line->firstchar > (start)) \
838 line->firstchar = start; \
841 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
843 #define FreeIfNeeded(p) if ((p) != 0) free(p)
845 /* FreeAndNull() is not a comma-separated expression because some compilers
846 * do not accept a mixture of void with values.
848 #define FreeAndNull(p) free(p); p = 0
850 //// #include <nc_alloc.h>
853 * TTY bit definition for converting tabs to spaces.
856 # define OFLAGS_TABS TAB3 /* POSIX specifies TAB3 */
859 # define OFLAGS_TABS XTABS /* XTABS is usually the "same" */
862 # define OFLAGS_TABS OXTABS /* the traditional BSD equivalent */
864 # define OFLAGS_TABS 0
870 * Prefixes for call/return points of library function traces. We use these to
871 * instrument the public functions so that the traces can be easily transformed
872 * into regression scripts.
874 #define T_CALLED(fmt) "called {" fmt
875 #define T_CREATE(fmt) "create :" fmt
876 #define T_RETURN(fmt) "return }" fmt
880 #define START_TRACE() \
881 if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
882 int t = _nc_getenv_num("NCURSES_TRACE"); \
884 trace((unsigned) t); \
887 #define TR(n, a) if (_nc_tracing & (n)) _tracef a
888 #define T(a) TR(TRACE_CALLS, a)
889 #define TPUTS_TRACE(s) _nc_tputs_trace = s;
890 #define TRACE_RETURN(value,type) return _nc_retrace_##type(value)
892 #define returnAttr(code) TRACE_RETURN(code,attr_t)
893 #define returnBits(code) TRACE_RETURN(code,unsigned)
894 #define returnBool(code) TRACE_RETURN(code,bool)
895 #define returnCPtr(code) TRACE_RETURN(code,cptr)
896 #define returnCVoidPtr(code) TRACE_RETURN(code,cvoid_ptr)
897 #define returnChar(code) TRACE_RETURN(code,chtype)
898 #define returnCode(code) TRACE_RETURN(code,int)
899 #define returnPtr(code) TRACE_RETURN(code,ptr)
900 #define returnSP(code) TRACE_RETURN(code,sp)
901 #define returnVoid T((T_RETURN(""))); return
902 #define returnVoidPtr(code) TRACE_RETURN(code,void_ptr)
903 #define returnWin(code) TRACE_RETURN(code,win)
905 extern NCURSES_EXPORT(NCURSES_BOOL
) _nc_retrace_bool (NCURSES_BOOL
);
906 extern NCURSES_EXPORT(NCURSES_CONST
void *) _nc_retrace_cvoid_ptr (NCURSES_CONST
void *);
907 extern NCURSES_EXPORT(SCREEN
*) _nc_retrace_sp (SCREEN
*);
908 extern NCURSES_EXPORT(WINDOW
*) _nc_retrace_win (WINDOW
*);
909 extern NCURSES_EXPORT(attr_t
) _nc_retrace_attr_t (attr_t
);
910 extern NCURSES_EXPORT(char *) _nc_retrace_ptr (char *);
911 extern NCURSES_EXPORT(char *) _nc_trace_ttymode(TTY
*tty
);
912 extern NCURSES_EXPORT(char *) _nc_varargs (const char *, va_list);
913 extern NCURSES_EXPORT(chtype
) _nc_retrace_chtype (chtype
);
914 extern NCURSES_EXPORT(const char *) _nc_altcharset_name(attr_t
, chtype
);
915 extern NCURSES_EXPORT(const char *) _nc_retrace_cptr (const char *);
916 extern NCURSES_EXPORT(int) _nc_retrace_int (int);
917 extern NCURSES_EXPORT(unsigned) _nc_retrace_unsigned (unsigned);
918 extern NCURSES_EXPORT(void *) _nc_retrace_void_ptr (void *);
919 extern NCURSES_EXPORT(void) _nc_fifo_dump (void);
920 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace
;
921 extern NCURSES_EXPORT_VAR(long) _nc_outchars
;
922 extern NCURSES_EXPORT_VAR(unsigned) _nc_tracing
;
924 #if USE_WIDEC_SUPPORT
925 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
926 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
929 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T
*, int);
930 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T
*, int);
934 #define START_TRACE() /* nothing */
938 #define TPUTS_TRACE(s)
940 #define returnAttr(code) return code
941 #define returnBits(code) return code
942 #define returnBool(code) return code
943 #define returnCPtr(code) return code
944 #define returnCVoidPtr(code) return code
945 #define returnChar(code) return code
946 #define returnCode(code) return code
947 #define returnPtr(code) return code
948 #define returnSP(code) return code
949 #define returnVoid return
950 #define returnVoidPtr(code) return code
951 #define returnWin(code) return code
953 #endif /* TRACE/!TRACE */
956 * Return-codes for tgetent() and friends.
958 #define TGETENT_YES 1 /* entry is found */
959 #define TGETENT_NO 0 /* entry is not found */
960 #define TGETENT_ERR -1 /* an error occurred */
962 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
963 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
965 #define empty_module(name) \
966 extern NCURSES_EXPORT(void) name (void); \
967 NCURSES_EXPORT(void) name (void) { }
969 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
970 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
971 #define XMC_CHANGES(c) ((c) & SP->_xmc_suppress)
973 #define toggle_attr_on(S,at) {\
974 if (PAIR_NUMBER(at) > 0) {\
975 (S) = ((S) & ALL_BUT_COLOR) | (at);\
979 TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
981 #define toggle_attr_off(S,at) {\
982 if (PAIR_NUMBER(at) > 0) {\
983 (S) &= ~(at|A_COLOR);\
987 TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
989 #define DelCharCost(count) \
992 : ((delete_character != 0) \
993 ? (SP->_dch1_cost * count) \
996 #define InsCharCost(count) \
999 : ((enter_insert_mode && exit_insert_mode) \
1000 ? SP->_smir_cost + SP->_rmir_cost + (SP->_ip_cost * count) \
1001 : ((insert_character != 0) \
1002 ? ((SP->_ich1_cost + SP->_ip_cost) * count) \
1006 #define UpdateAttrs(c) if (!SameAttrOf(SCREEN_ATTRS(SP), c)) { \
1007 attr_t chg = AttrOf(SCREEN_ATTRS(SP)); \
1008 VIDATTR(AttrOf(c), GetPair(c)); \
1009 if (magic_cookie_glitch > 0 \
1010 && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(SP))))) { \
1011 T(("%s @%d before glitch %d,%d", \
1012 __FILE__, __LINE__, \
1015 _nc_do_xmc_glitch(chg); \
1019 #define UpdateAttrs(c) if (!SameAttrOf(SCREEN_ATTRS(SP), c)) \
1020 VIDATTR(AttrOf(c), GetPair(c));
1024 * Macros to make additional parameter to implement wgetch_events()
1026 #ifdef NCURSES_WGETCH_EVENTS
1027 #define EVENTLIST_0th(param) param
1028 #define EVENTLIST_1st(param) param
1029 #define EVENTLIST_2nd(param) , param
1031 #define EVENTLIST_0th(param) void
1032 #define EVENTLIST_1st(param) /* nothing */
1033 #define EVENTLIST_2nd(param) /* nothing */
1036 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1038 #undef toggle_attr_on
1039 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1040 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t
*, attr_t
);
1042 #undef toggle_attr_off
1043 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1044 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t
*, attr_t
);
1047 #define DelCharCost(count) _nc_DelCharCost(count)
1048 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1051 #define InsCharCost(count) _nc_InsCharCost(count)
1052 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1055 #define UpdateAttrs(c) _nc_UpdateAttrs(c)
1056 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (NCURSES_CH_T
);
1060 extern NCURSES_EXPORT(void) _nc_expanded (void);
1065 #define getcwd(buf,len) getwd(buf)
1069 #if USE_WIDEC_SUPPORT
1070 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1071 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1072 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1077 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t
);
1081 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1082 extern NCURSES_EXPORT(void) _nc_linedump (void);
1086 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1087 extern NCURSES_EXPORT(int) _nc_msec_cost (const char *const, int); /* used by 'tack' program */
1090 #if USE_WIDEC_SUPPORT
1091 NCURSES_EXPORT(int) _nc_build_wch(WINDOW
*win
, ARG_CH_T ch
);
1095 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1096 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t
*);
1100 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1103 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW
*, unsigned long *, int EVENTLIST_2nd(_nc_eventlist
*));
1106 extern NCURSES_EXPORT(int) _nc_insert_ch(WINDOW
*, chtype
);
1109 #define INFINITY 1000000 /* cost: too high to use */
1111 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1112 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1113 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1115 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1117 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1118 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1119 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1122 extern NCURSES_EXPORT(int) _nc_has_mouse (void);
1125 #define INFINITY 1000000 /* cost: too high to use */
1126 #define BAUDBYTE 9 /* 9 = 7 bits + 1 parity + 1 stop */
1129 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1130 extern NCURSES_EXPORT(int) _nc_unicode_locale(void);
1131 extern NCURSES_EXPORT(int) _nc_locale_breaks_acs(void);
1132 extern NCURSES_EXPORT(int) _nc_setupterm(NCURSES_CONST
char *, int, int *, bool);
1136 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(int);
1138 #define _nc_handle_sigwinch(a) /* nothing */
1142 #if USE_WIDEC_SUPPORT
1143 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1147 char *s_head
; /* beginning of the string (may be null) */
1148 char *s_tail
; /* end of the string (may be null) */
1149 size_t s_size
; /* current remaining size available */
1150 size_t s_init
; /* total size available */
1154 extern NCURSES_EXPORT(string_desc
*) _nc_str_init (string_desc
*, char *, size_t);
1155 extern NCURSES_EXPORT(string_desc
*) _nc_str_null (string_desc
*, size_t);
1156 extern NCURSES_EXPORT(string_desc
*) _nc_str_copy (string_desc
*, string_desc
*);
1157 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc
*, const char *);
1158 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc
*, const char *);
1161 #define strstr _nc_strstr
1162 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1165 /* safe_sprintf.c */
1166 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1169 extern NCURSES_EXPORT(void) _nc_add_to_try (struct tries
**, const char *, unsigned);
1170 extern NCURSES_EXPORT(char *) _nc_expand_try (struct tries
*, unsigned, int *, size_t);
1171 extern NCURSES_EXPORT(int) _nc_remove_key (struct tries
**, unsigned);
1172 extern NCURSES_EXPORT(int) _nc_remove_string (struct tries
**, const char *);
1175 //// extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry(ENTRY *, TERMTYPE *);
1176 extern NCURSES_EXPORT(WINDOW
*) _nc_makenew (int, int, int, int, int);
1177 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1178 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1179 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1180 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1181 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW
*);
1182 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1183 extern NCURSES_EXPORT(int) _nc_keypad (bool);
1184 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1185 extern NCURSES_EXPORT(int) _nc_outch (int);
1186 //// extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1187 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, bool, int);
1188 extern NCURSES_EXPORT(int) _nc_timed_wait(int, int, int * EVENTLIST_2nd(_nc_eventlist
*));
1189 extern NCURSES_EXPORT(void) _nc_do_color (short, short, bool, int (*)(int));
1190 extern NCURSES_EXPORT(void) _nc_flush (void);
1191 //// extern NCURSES_EXPORT(void) _nc_free_entry(ENTRY *, TERMTYPE *);
1192 extern NCURSES_EXPORT(void) _nc_freeall (void);
1193 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1194 extern NCURSES_EXPORT(void) _nc_init_keytry (void);
1195 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1196 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i
);
1197 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n
, int top
, int bot
);
1198 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1199 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, bool);
1200 extern NCURSES_EXPORT(void) _nc_signal_handler (bool);
1201 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW
*);
1202 extern NCURSES_EXPORT(void) _nc_trace_tries (struct tries
*);
1205 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1206 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1207 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1208 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1209 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1213 extern NCURSES_EXPORT(NCURSES_CH_T
) _nc_render (WINDOW
*, NCURSES_CH_T
);
1214 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW
*, const NCURSES_CH_T
);
1215 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW
*, int const, NCURSES_SIZE_T
const, NCURSES_SIZE_T
const, NCURSES_CH_T
);
1218 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1220 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
1222 #define _nc_wcrtomb(s,wc,ps) wcrtomb(s,wc,ps)
1227 extern NCURSES_EXPORT(void) _nc_update_screensize (void);
1231 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW
*);
1233 #define _nc_resize_margins(wp) /* nothing */
1236 #ifdef NCURSES_WGETCH_EVENTS
1237 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist
*);
1239 #define wgetch_events(win, evl) wgetch(win)
1240 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
1244 * Not everyone has vsscanf(), but we'd like to use it for scanw().
1247 extern int vsscanf(const char *str
, const char *format
, va_list __arg
);
1250 /* scroll indices */
1251 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums
;
1253 #define USE_SETBUF_0 0
1255 #define NC_BUFFERED(flag) _nc_set_buffer(SP->_ofp, flag)
1257 #define NC_OUTPUT ((SP != 0) ? SP->_ofp : stdout)
1260 * On systems with a broken linker, define 'SP' as a function to force the
1261 * linker to pull in the data-only module with 'SP'.
1264 #define SP _nc_screen()
1265 extern NCURSES_EXPORT(SCREEN
*) _nc_screen (void);
1266 extern NCURSES_EXPORT(int) _nc_alloc_screen (void);
1267 extern NCURSES_EXPORT(void) _nc_set_screen (SCREEN
*);
1269 /* current screen is private data; avoid possible linking conflicts too */
1270 extern NCURSES_EXPORT_VAR(SCREEN
*) SP
;
1271 #define _nc_alloc_screen() ((SP = typeCalloc(SCREEN, 1)) != 0)
1272 #define _nc_set_screen(sp) SP = sp
1276 * We don't want to use the lines or columns capabilities internally, because
1277 * if the application is running multiple screens under X, it's quite possible
1278 * they could all have type xterm but have different sizes! So...
1280 #define screen_lines SP->_lines
1281 #define screen_columns SP->_columns
1283 extern NCURSES_EXPORT_VAR(int) _nc_slk_format
; /* != 0 if slk_init() called */
1284 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW
*, int);
1287 * Some constants related to SLK's
1289 #define MAX_SKEY_OLD 8 /* count of soft keys */
1290 #define MAX_SKEY_LEN_OLD 8 /* max length of soft key text */
1291 #define MAX_SKEY_PC 12 /* This is what most PC's have */
1292 #define MAX_SKEY_LEN_PC 5
1294 /* Macro to check whether or not we use a standard format */
1295 #define SLK_STDFMT(fmt) (fmt < 3)
1296 /* Macro to determine height of label window */
1297 #define SLK_LINES(fmt) (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
1299 #define MAX_SKEY(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
1300 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
1302 extern NCURSES_EXPORT(int) _nc_ripoffline (int line
, int (*init
)(WINDOW
*,int));
1305 * Common error messages
1307 #define MSG_NO_MEMORY "Out of memory"
1308 #define MSG_NO_INPUTS "Premature EOF"
1314 #endif /* CURSES_PRIV_H */