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 ****************************************************************************/
35 /* $Id: curses.h.in,v 1.167 2006/11/26 01:14:54 tom Exp $ */
43 /* This should be defined for the enhanced functionality to be visible.
44 * However, some of the wide-character (enhanced) functionality is missing.
45 * So we do not define it (yet).
46 #define _XOPEN_CURSES 1
49 /* These are defined only in curses.h, and are used for conditional compiles */
50 #define NCURSES_VERSION_MAJOR 5
51 #define NCURSES_VERSION_MINOR 6
52 #define NCURSES_VERSION_PATCH 20061217
54 /* This is defined in more than one ncurses header, for identification */
55 #undef NCURSES_VERSION
56 #define NCURSES_VERSION "5.6"
59 * Identify the mouse encoding version.
61 // #define NCURSES_MOUSE_VERSION 1
64 * Definitions to facilitate DLL's.
66 //// #include <ncursesw/ncurses_dll.h>
68 ////---------------------------------------------------------------------------
69 //// From ncurses_dll.h:
70 ////---------------------------------------------------------------------------
71 /* Take care of non-cygwin platforms */
72 #if !defined(NCURSES_IMPEXP)
73 # define NCURSES_IMPEXP /* nothing */
75 #if !defined(NCURSES_API)
76 # define NCURSES_API /* nothing */
78 #if !defined(NCURSES_EXPORT)
79 # define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API
81 #if !defined(NCURSES_EXPORT_VAR)
82 # define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type
84 ////---------------------------------------------------------------------------
87 * User-definable tweak to disable the include of <stdbool.h>.
89 #ifndef NCURSES_ENABLE_STDBOOL_H
90 #define NCURSES_ENABLE_STDBOOL_H 0 //// XXX
94 * NCURSES_ATTR_T is used to quiet compiler warnings when building ncurses
95 * configured using --disable-macros.
97 #ifdef NCURSES_NOMACROS
98 #ifndef NCURSES_ATTR_T
99 #define NCURSES_ATTR_T attr_t
101 #endif /* NCURSES_NOMACROS */
103 #ifndef NCURSES_ATTR_T
104 #define NCURSES_ATTR_T int
108 * Expands to 'const' if ncurses is configured using --enable-const. Note that
109 * doing so makes it incompatible with other implementations of X/Open Curses.
112 #define NCURSES_CONST const
114 #undef NCURSES_INLINE
115 #define NCURSES_INLINE inline
118 * The internal type used for color values
120 #undef NCURSES_COLOR_T
121 #define NCURSES_COLOR_T short
124 * The internal type used for window dimensions.
126 #undef NCURSES_SIZE_T
127 #define NCURSES_SIZE_T short
130 * Control whether tparm() supports varargs or fixed-parameter list.
132 #undef NCURSES_TPARM_VARARGS
133 #define NCURSES_TPARM_VARARGS 1
136 * NCURSES_CH_T is used in building the library, but not used otherwise in
137 * this header file, since that would make the normal/wide-character versions
138 * of the header incompatible.
141 #define NCURSES_CH_T cchar_t
143 #if 0 && defined(_LP64)
144 typedef unsigned chtype
;
145 typedef unsigned mmask_t
;
147 typedef unsigned long chtype
;
148 typedef unsigned long mmask_t
;
152 //// #include <ncursesw/unctrl.h>
153 #include <stdarg.h> /* we need va_list */
154 //// #define va_list int // FIXME
156 #define _XOPEN_SOURCE_EXTENDED 1 // XXX
157 //// #ifdef _XOPEN_SOURCE_EXTENDED
158 //// #include <stddef.h> /* we want wchar_t */
159 //// #endif /* _XOPEN_SOURCE_EXTENDED */
161 /* XSI and SVr4 specify that curses implements 'bool'. However, C++ may also
162 * implement it. If so, we must use the C++ compiler's type to avoid conflict
163 * with other interfaces.
165 * A further complication is that <stdbool.h> may declare 'bool' to be a
166 * different type, such as an enum which is not necessarily compatible with
167 * C++. If we have <stdbool.h>, make 'bool' a macro, so users may #undef it.
168 * Otherwise, let it remain a typedef to avoid conflicts with other #define's.
169 * In either case, make a typedef for NCURSES_BOOL which can be used if needed
170 * from either C or C++.
179 typedef unsigned char NCURSES_BOOL
;
181 #if defined(__cplusplus) /* __cplusplus, etc. */
183 /* use the C++ compiler's bool type */
184 #define NCURSES_BOOL bool
186 #else /* c89, c99, etc. */
188 #if NCURSES_ENABLE_STDBOOL_H
190 /* use whatever the C compiler decides bool really is */
191 #define NCURSES_BOOL bool
193 /* there is no predefined bool - use our own */
195 #define bool NCURSES_BOOL
198 #endif /* !__cplusplus, etc. */
202 #define NCURSES_CAST(type,value) static_cast<type>(value)
204 #define NCURSES_CAST(type,value) (type)(value)
208 * XSI attributes. In the ncurses implementation, they are identical to the
211 #define WA_ATTRIBUTES A_ATTRIBUTES
212 #define WA_NORMAL A_NORMAL
213 #define WA_STANDOUT A_STANDOUT
214 #define WA_UNDERLINE A_UNDERLINE
215 #define WA_REVERSE A_REVERSE
216 #define WA_BLINK A_BLINK
218 #define WA_BOLD A_BOLD
219 #define WA_ALTCHARSET A_ALTCHARSET
220 #define WA_INVIS A_INVIS
221 #define WA_PROTECT A_PROTECT
222 #define WA_HORIZONTAL A_HORIZONTAL
223 #define WA_LEFT A_LEFT
225 #define WA_RIGHT A_RIGHT
227 #define WA_VERTICAL A_VERTICAL
230 extern NCURSES_EXPORT_VAR(int) COLORS
;
231 extern NCURSES_EXPORT_VAR(int) COLOR_PAIRS
;
233 #define COLOR_BLACK 0
235 #define COLOR_GREEN 2
236 #define COLOR_YELLOW 3
238 #define COLOR_MAGENTA 5
240 #define COLOR_WHITE 7
245 extern NCURSES_EXPORT_VAR(chtype
*) _nc_acs_map(void);
246 #define acs_map (_nc_acs_map())
248 extern NCURSES_EXPORT_VAR(chtype
) acs_map
[];
251 #define NCURSES_ACS(c) (acs_map[NCURSES_CAST(unsigned char,c)])
253 /* VT100 symbols begin here */
254 #define ACS_ULCORNER NCURSES_ACS('l') /* upper left corner */
255 #define ACS_LLCORNER NCURSES_ACS('m') /* lower left corner */
256 #define ACS_URCORNER NCURSES_ACS('k') /* upper right corner */
257 #define ACS_LRCORNER NCURSES_ACS('j') /* lower right corner */
258 #define ACS_LTEE NCURSES_ACS('t') /* tee pointing right */
259 #define ACS_RTEE NCURSES_ACS('u') /* tee pointing left */
260 #define ACS_BTEE NCURSES_ACS('v') /* tee pointing up */
261 #define ACS_TTEE NCURSES_ACS('w') /* tee pointing down */
262 #define ACS_HLINE NCURSES_ACS('q') /* horizontal line */
263 #define ACS_VLINE NCURSES_ACS('x') /* vertical line */
264 #define ACS_PLUS NCURSES_ACS('n') /* large plus or crossover */
265 #define ACS_S1 NCURSES_ACS('o') /* scan line 1 */
266 #define ACS_S9 NCURSES_ACS('s') /* scan line 9 */
267 #define ACS_DIAMOND NCURSES_ACS('`') /* diamond */
268 #define ACS_CKBOARD NCURSES_ACS('a') /* checker board (stipple) */
269 #define ACS_DEGREE NCURSES_ACS('f') /* degree symbol */
270 #define ACS_PLMINUS NCURSES_ACS('g') /* plus/minus */
271 #define ACS_BULLET NCURSES_ACS('~') /* bullet */
272 /* Teletype 5410v1 symbols begin here */
273 #define ACS_LARROW NCURSES_ACS(',') /* arrow pointing left */
274 #define ACS_RARROW NCURSES_ACS('+') /* arrow pointing right */
275 #define ACS_DARROW NCURSES_ACS('.') /* arrow pointing down */
276 #define ACS_UARROW NCURSES_ACS('-') /* arrow pointing up */
277 #define ACS_BOARD NCURSES_ACS('h') /* board of squares */
278 #define ACS_LANTERN NCURSES_ACS('i') /* lantern symbol */
279 #define ACS_BLOCK NCURSES_ACS('0') /* solid square block */
281 * These aren't documented, but a lot of System Vs have them anyway
282 * (you can spot pprryyzz{{||}} in a lot of AT&T terminfo strings).
283 * The ACS_names may not match AT&T's, our source didn't know them.
285 #define ACS_S3 NCURSES_ACS('p') /* scan line 3 */
286 #define ACS_S7 NCURSES_ACS('r') /* scan line 7 */
287 #define ACS_LEQUAL NCURSES_ACS('y') /* less/equal */
288 #define ACS_GEQUAL NCURSES_ACS('z') /* greater/equal */
289 #define ACS_PI NCURSES_ACS('{') /* Pi */
290 #define ACS_NEQUAL NCURSES_ACS('|') /* not equal */
291 #define ACS_STERLING NCURSES_ACS('}') /* UK pound sign */
294 * Line drawing ACS names are of the form ACS_trbl, where t is the top, r
295 * is the right, b is the bottom, and l is the left. t, r, b, and l might
296 * be B (blank), S (single), D (double), or T (thick). The subset defined
297 * here only uses B and S.
299 #define ACS_BSSB ACS_ULCORNER
300 #define ACS_SSBB ACS_LLCORNER
301 #define ACS_BBSS ACS_URCORNER
302 #define ACS_SBBS ACS_LRCORNER
303 #define ACS_SBSS ACS_RTEE
304 #define ACS_SSSB ACS_LTEE
305 #define ACS_SSBS ACS_BTEE
306 #define ACS_BSSS ACS_TTEE
307 #define ACS_BSBS ACS_HLINE
308 #define ACS_SBSB ACS_VLINE
309 #define ACS_SSSS ACS_PLUS
317 /* values for the _flags member */
318 #define _SUBWIN 0x01 /* is this a sub-window? */
319 #define _ENDLINE 0x02 /* is the window flush right? */
320 #define _FULLWIN 0x04 /* is the window full-screen? */
321 #define _SCROLLWIN 0x08 /* bottom edge is at screen bottom? */
322 #define _ISPAD 0x10 /* is this window a pad? */
323 #define _HASMOVED 0x20 /* has cursor moved since last refresh? */
324 #define _WRAPPED 0x40 /* cursor was just wrappped */
327 * this value is used in the firstchar and lastchar fields to mark
333 * this value is used in the oldindex field to mark lines created by insertions
338 typedef struct screen SCREEN
;
339 typedef struct _win_st WINDOW
;
341 typedef chtype attr_t
; /* ...must be at least as wide as chtype */
343 #ifdef _XOPEN_SOURCE_EXTENDED
346 #ifdef mblen /* libutf8.h defines it w/o undefining first */
353 //// #include <wchar.h> /* ...to get mbstate_t, etc. */
354 typedef unsigned long wchar_t; // XXX
355 typedef unsigned long wint_t; // XXX
359 typedef unsigned short wchar_t1
;
363 typedef unsigned int wint_t1
;
370 wchar_t chars
[CCHARW_MAX
];
372 int ext_color
; /* color pair, must be more than 16-bits */
377 #endif /* _XOPEN_SOURCE_EXTENDED */
383 NCURSES_SIZE_T _cury
, _curx
; /* current cursor position */
385 /* window location and size */
386 NCURSES_SIZE_T _maxy
, _maxx
; /* maximums of x and y, NOT window size */
387 NCURSES_SIZE_T _begy
, _begx
; /* screen coords of upper-left-hand corner */
389 short _flags
; /* window state flags */
391 /* attribute tracking */
392 attr_t _attrs
; /* current attribute for non-space character */
393 chtype _bkgd
; /* current background char/attribute pair */
395 /* option values set by user */
396 bool _notimeout
; /* no time out on function-key entry? */
397 bool _clear
; /* consider all data in the window invalid? */
398 bool _leaveok
; /* OK to not reset cursor on exit? */
399 bool _scroll
; /* OK to scroll this window? */
400 bool _idlok
; /* OK to use insert/delete line? */
401 bool _idcok
; /* OK to use insert/delete char? */
402 bool _immed
; /* window in immed mode? (not yet used) */
403 bool _sync
; /* window in sync mode? */
404 bool _use_keypad
; /* process function keys into KEY_ symbols? */
405 int _delay
; /* 0 = nodelay, <0 = blocking, >0 = delay */
407 struct ldat
*_line
; /* the actual line data */
409 /* global screen state */
410 NCURSES_SIZE_T _regtop
; /* top line of scrolling region */
411 NCURSES_SIZE_T _regbottom
; /* bottom line of scrolling region */
413 /* these are used only if this is a sub-window */
414 int _parx
; /* x coordinate of this window in parent */
415 int _pary
; /* y coordinate of this window in parent */
416 WINDOW
*_parent
; /* pointer to parent if a sub-window */
418 /* these are used only if this is a pad */
421 NCURSES_SIZE_T _pad_y
, _pad_x
;
422 NCURSES_SIZE_T _pad_top
, _pad_left
;
423 NCURSES_SIZE_T _pad_bottom
, _pad_right
;
426 NCURSES_SIZE_T _yoffset
; /* real begy is _begy + _yoffset */
428 #ifdef _XOPEN_SOURCE_EXTENDED
429 cchar_t _bkgrnd
; /* current background char/attribute pair */
432 int _color
; /* current color-pair for non-space character */
437 extern NCURSES_EXPORT_VAR(WINDOW
*) stdscr
;
438 extern NCURSES_EXPORT_VAR(WINDOW
*) curscr
;
439 extern NCURSES_EXPORT_VAR(WINDOW
*) newscr
;
441 extern NCURSES_EXPORT_VAR(int) LINES
;
442 extern NCURSES_EXPORT_VAR(int) COLS
;
443 extern NCURSES_EXPORT_VAR(int) TABSIZE
;
446 * This global was an undocumented feature under AIX curses.
448 extern NCURSES_EXPORT_VAR(int) ESCDELAY
; /* ESC expire time in milliseconds */
451 * These functions are extensions - not in XSI Curses.
454 extern NCURSES_EXPORT(bool) is_term_resized (int, int);
455 extern NCURSES_EXPORT(char *) keybound (int, int);
456 extern NCURSES_EXPORT(const char *) curses_version (void);
457 extern NCURSES_EXPORT(int) assume_default_colors (int, int);
458 extern NCURSES_EXPORT(int) define_key (const char *, int);
459 extern NCURSES_EXPORT(int) key_defined (const char *);
460 extern NCURSES_EXPORT(int) keyok (int, bool);
461 extern NCURSES_EXPORT(int) resize_term (int, int);
462 extern NCURSES_EXPORT(int) resizeterm (int, int);
463 extern NCURSES_EXPORT(int) use_default_colors (void);
464 extern NCURSES_EXPORT(int) use_extended_names (bool);
465 extern NCURSES_EXPORT(int) use_legacy_coding (int);
466 extern NCURSES_EXPORT(int) wresize (WINDOW
*, int, int);
467 extern NCURSES_EXPORT(void) nofilter(void);
469 #define curses_version() NCURSES_VERSION
473 * This is an extension to support events...
476 #ifdef NCURSES_WGETCH_EVENTS
477 #if !defined(__BEOS__) /* Fix _nc_timed_wait() on BEOS... */
478 # define NCURSES_EVENT_VERSION 1
479 #endif /* !defined(__BEOS__) */
482 * Bits to set in _nc_event.data.flags
484 # define _NC_EVENT_TIMEOUT_MSEC 1
485 # define _NC_EVENT_FILE 2
486 # define _NC_EVENT_FILE_READABLE 2
487 # if 0 /* Not supported yet... */
488 # define _NC_EVENT_FILE_WRITABLE 4
489 # define _NC_EVENT_FILE_EXCEPTION 8
497 long timeout_msec
; /* _NC_EVENT_TIMEOUT_MSEC */
503 } fev
; /* _NC_EVENT_FILE */
510 int result_flags
; /* _NC_EVENT_TIMEOUT_MSEC or _NC_EVENT_FILE_READABLE */
511 _nc_event
*events
[1];
514 extern NCURSES_EXPORT(int) wgetch_events(WINDOW
*, _nc_eventlist
*); /* experimental */
515 extern NCURSES_EXPORT(int) wgetnstr_events(WINDOW
*,char *,int,_nc_eventlist
*);/* experimental */
517 #endif /* NCURSES_WGETCH_EVENTS */
518 #endif /* NCURSES_EXT_FUNCS */
521 * GCC (and some other compilers) define '__attribute__'; we're using this
522 * macro to alert the compiler to flag inconsistencies in printf/scanf-like
523 * function calls. Just in case '__attribute__' isn't defined, make a dummy.
524 * Old versions of G++ do not accept it anyway, at least not consistently with
527 #if !(defined(__GNUC__) || defined(__GNUG__) || defined(__attribute__))
528 #define __attribute__(p) /* nothing */
532 * We cannot define these in ncurses_cfg.h, since they require parameters to be
533 * passed (that is non-portable). If you happen to be using gcc with warnings
537 * to improve checking of calls to printw(), etc.
539 #ifndef GCC_PRINTFLIKE
540 #if defined(GCC_PRINTF) && !defined(printf)
541 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
543 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
547 #ifndef GCC_SCANFLIKE
548 #if defined(GCC_SCANF) && !defined(scanf)
549 #define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
551 #define GCC_SCANFLIKE(fmt,var) /*nothing*/
556 #define GCC_NORETURN /* nothing */
560 #define GCC_UNUSED /* nothing */
564 * Function prototypes. This is the complete XSI Curses list of required
565 * functions. Those marked `generated' will have sources generated from the
566 * macro definitions later in this file, in order to satisfy XPG4.2
570 extern NCURSES_EXPORT(int) addch (const chtype
); /* generated */
571 extern NCURSES_EXPORT(int) addchnstr (const chtype
*, int); /* generated */
572 extern NCURSES_EXPORT(int) addchstr (const chtype
*); /* generated */
573 extern NCURSES_EXPORT(int) addnstr (const char *, int); /* generated */
574 extern NCURSES_EXPORT(int) addstr (const char *); /* generated */
575 extern NCURSES_EXPORT(int) attroff (NCURSES_ATTR_T
); /* generated */
576 extern NCURSES_EXPORT(int) attron (NCURSES_ATTR_T
); /* generated */
577 extern NCURSES_EXPORT(int) attrset (NCURSES_ATTR_T
); /* generated */
578 extern NCURSES_EXPORT(int) attr_get (attr_t
*, short *, void *); /* generated */
579 extern NCURSES_EXPORT(int) attr_off (attr_t
, void *); /* generated */
580 extern NCURSES_EXPORT(int) attr_on (attr_t
, void *); /* generated */
581 extern NCURSES_EXPORT(int) attr_set (attr_t
, short, void *); /* generated */
582 extern NCURSES_EXPORT(int) baudrate (void); /* implemented */
583 extern NCURSES_EXPORT(int) beep (void); /* implemented */
584 extern NCURSES_EXPORT(int) bkgd (chtype
); /* generated */
585 extern NCURSES_EXPORT(void) bkgdset (chtype
); /* generated */
586 extern NCURSES_EXPORT(int) border (chtype
,chtype
,chtype
,chtype
,chtype
,chtype
,chtype
,chtype
); /* generated */
587 extern NCURSES_EXPORT(int) box (WINDOW
*, chtype
, chtype
); /* generated */
588 extern NCURSES_EXPORT(bool) can_change_color (void); /* implemented */
589 extern NCURSES_EXPORT(int) cbreak (void); /* implemented */
590 extern NCURSES_EXPORT(int) chgat (int, attr_t
, short, const void *); /* generated */
591 extern NCURSES_EXPORT(int) clear (void); /* generated */
592 extern NCURSES_EXPORT(int) clearok (WINDOW
*,bool); /* implemented */
593 extern NCURSES_EXPORT(int) clrtobot (void); /* generated */
594 extern NCURSES_EXPORT(int) clrtoeol (void); /* generated */
595 extern NCURSES_EXPORT(int) color_content (short,short*,short*,short*); /* implemented */
596 extern NCURSES_EXPORT(int) color_set (short,void*); /* generated */
597 extern NCURSES_EXPORT(int) COLOR_PAIR (int); /* generated */
598 extern NCURSES_EXPORT(int) copywin (const WINDOW
*,WINDOW
*,int,int,int,int,int,int,int); /* implemented */
599 extern NCURSES_EXPORT(int) curs_set (int); /* implemented */
600 extern NCURSES_EXPORT(int) def_prog_mode (void); /* implemented */
601 extern NCURSES_EXPORT(int) def_shell_mode (void); /* implemented */
602 extern NCURSES_EXPORT(int) delay_output (int); /* implemented */
603 extern NCURSES_EXPORT(int) delch (void); /* generated */
604 extern NCURSES_EXPORT(void) delscreen (SCREEN
*); /* implemented */
605 extern NCURSES_EXPORT(int) delwin (WINDOW
*); /* implemented */
606 extern NCURSES_EXPORT(int) deleteln (void); /* generated */
607 extern NCURSES_EXPORT(WINDOW
*) derwin (WINDOW
*,int,int,int,int); /* implemented */
608 extern NCURSES_EXPORT(int) doupdate (void); /* implemented */
609 extern NCURSES_EXPORT(WINDOW
*) dupwin (WINDOW
*); /* implemented */
610 extern NCURSES_EXPORT(int) echo (void); /* implemented */
611 extern NCURSES_EXPORT(int) echochar (const chtype
); /* generated */
612 extern NCURSES_EXPORT(int) erase (void); /* generated */
613 extern NCURSES_EXPORT(int) endwin (void); /* implemented */
614 extern NCURSES_EXPORT(char) erasechar (void); /* implemented */
615 extern NCURSES_EXPORT(void) filter (void); /* implemented */
616 extern NCURSES_EXPORT(int) flash (void); /* implemented */
617 extern NCURSES_EXPORT(int) flushinp (void); /* implemented */
618 extern NCURSES_EXPORT(chtype
) getbkgd (WINDOW
*); /* generated */
619 extern NCURSES_EXPORT(int) getch (void); /* generated */
620 extern NCURSES_EXPORT(int) getnstr (char *, int); /* generated */
621 extern NCURSES_EXPORT(int) getstr (char *); /* generated */
622 extern NCURSES_EXPORT(WINDOW
*) getwin (FILE *); /* implemented */
623 extern NCURSES_EXPORT(int) halfdelay (int); /* implemented */
624 extern NCURSES_EXPORT(bool) has_colors (void); /* implemented */
625 extern NCURSES_EXPORT(bool) has_ic (void); /* implemented */
626 extern NCURSES_EXPORT(bool) has_il (void); /* implemented */
627 extern NCURSES_EXPORT(int) hline (chtype
, int); /* generated */
628 extern NCURSES_EXPORT(void) idcok (WINDOW
*, bool); /* implemented */
629 extern NCURSES_EXPORT(int) idlok (WINDOW
*, bool); /* implemented */
630 extern NCURSES_EXPORT(void) immedok (WINDOW
*, bool); /* implemented */
631 extern NCURSES_EXPORT(chtype
) inch (void); /* generated */
632 extern NCURSES_EXPORT(int) inchnstr (chtype
*, int); /* generated */
633 extern NCURSES_EXPORT(int) inchstr (chtype
*); /* generated */
634 extern NCURSES_EXPORT(WINDOW
*) initscr (void); /* implemented */
635 extern NCURSES_EXPORT(int) init_color (short,short,short,short); /* implemented */
636 extern NCURSES_EXPORT(int) init_pair (short,short,short); /* implemented */
637 extern NCURSES_EXPORT(int) innstr (char *, int); /* generated */
638 extern NCURSES_EXPORT(int) insch (chtype
); /* generated */
639 extern NCURSES_EXPORT(int) insdelln (int); /* generated */
640 extern NCURSES_EXPORT(int) insertln (void); /* generated */
641 extern NCURSES_EXPORT(int) insnstr (const char *, int); /* generated */
642 extern NCURSES_EXPORT(int) insstr (const char *); /* generated */
643 extern NCURSES_EXPORT(int) instr (char *); /* generated */
644 extern NCURSES_EXPORT(int) intrflush (WINDOW
*,bool); /* implemented */
645 extern NCURSES_EXPORT(bool) isendwin (void); /* implemented */
646 extern NCURSES_EXPORT(bool) is_linetouched (WINDOW
*,int); /* implemented */
647 extern NCURSES_EXPORT(bool) is_wintouched (WINDOW
*); /* implemented */
648 extern NCURSES_EXPORT(NCURSES_CONST
char *) keyname (int); /* implemented */
649 extern NCURSES_EXPORT(int) keypad (WINDOW
*,bool); /* implemented */
650 extern NCURSES_EXPORT(char) killchar (void); /* implemented */
651 extern NCURSES_EXPORT(int) leaveok (WINDOW
*,bool); /* implemented */
652 extern NCURSES_EXPORT(char *) longname (void); /* implemented */
653 extern NCURSES_EXPORT(int) meta (WINDOW
*,bool); /* implemented */
654 extern NCURSES_EXPORT(int) move (int, int); /* generated */
655 extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype
); /* generated */
656 extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype
*, int); /* generated */
657 extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype
*); /* generated */
658 extern NCURSES_EXPORT(int) mvaddnstr (int, int, const char *, int); /* generated */
659 extern NCURSES_EXPORT(int) mvaddstr (int, int, const char *); /* generated */
660 extern NCURSES_EXPORT(int) mvchgat (int, int, int, attr_t
, short, const void *); /* generated */
661 extern NCURSES_EXPORT(int) mvcur (int,int,int,int); /* implemented */
662 extern NCURSES_EXPORT(int) mvdelch (int, int); /* generated */
663 extern NCURSES_EXPORT(int) mvderwin (WINDOW
*, int, int); /* implemented */
664 extern NCURSES_EXPORT(int) mvgetch (int, int); /* generated */
665 extern NCURSES_EXPORT(int) mvgetnstr (int, int, char *, int); /* generated */
666 extern NCURSES_EXPORT(int) mvgetstr (int, int, char *); /* generated */
667 extern NCURSES_EXPORT(int) mvhline (int, int, chtype
, int); /* generated */
668 extern NCURSES_EXPORT(chtype
) mvinch (int, int); /* generated */
669 extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype
*, int); /* generated */
670 extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype
*); /* generated */
671 extern NCURSES_EXPORT(int) mvinnstr (int, int, char *, int); /* generated */
672 extern NCURSES_EXPORT(int) mvinsch (int, int, chtype
); /* generated */
673 extern NCURSES_EXPORT(int) mvinsnstr (int, int, const char *, int); /* generated */
674 extern NCURSES_EXPORT(int) mvinsstr (int, int, const char *); /* generated */
675 extern NCURSES_EXPORT(int) mvinstr (int, int, char *); /* generated */
676 extern NCURSES_EXPORT(int) mvprintw (int,int, const char *,...) /* implemented */
678 extern NCURSES_EXPORT(int) mvscanw (int,int, NCURSES_CONST
char *,...) /* implemented */
680 extern NCURSES_EXPORT(int) mvvline (int, int, chtype
, int); /* generated */
681 extern NCURSES_EXPORT(int) mvwaddch (WINDOW
*, int, int, const chtype
); /* generated */
682 extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW
*, int, int, const chtype
*, int);/* generated */
683 extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW
*, int, int, const chtype
*); /* generated */
684 extern NCURSES_EXPORT(int) mvwaddnstr (WINDOW
*, int, int, const char *, int); /* generated */
685 extern NCURSES_EXPORT(int) mvwaddstr (WINDOW
*, int, int, const char *); /* generated */
686 extern NCURSES_EXPORT(int) mvwchgat (WINDOW
*, int, int, int, attr_t
, short, const void *);/* generated */
687 extern NCURSES_EXPORT(int) mvwdelch (WINDOW
*, int, int); /* generated */
688 extern NCURSES_EXPORT(int) mvwgetch (WINDOW
*, int, int); /* generated */
689 extern NCURSES_EXPORT(int) mvwgetnstr (WINDOW
*, int, int, char *, int); /* generated */
690 extern NCURSES_EXPORT(int) mvwgetstr (WINDOW
*, int, int, char *); /* generated */
691 extern NCURSES_EXPORT(int) mvwhline (WINDOW
*, int, int, chtype
, int); /* generated */
692 extern NCURSES_EXPORT(int) mvwin (WINDOW
*,int,int); /* implemented */
693 extern NCURSES_EXPORT(chtype
) mvwinch (WINDOW
*, int, int); /* generated */
694 extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW
*, int, int, chtype
*, int); /* generated */
695 extern NCURSES_EXPORT(int) mvwinchstr (WINDOW
*, int, int, chtype
*); /* generated */
696 extern NCURSES_EXPORT(int) mvwinnstr (WINDOW
*, int, int, char *, int); /* generated */
697 extern NCURSES_EXPORT(int) mvwinsch (WINDOW
*, int, int, chtype
); /* generated */
698 extern NCURSES_EXPORT(int) mvwinsnstr (WINDOW
*, int, int, const char *, int); /* generated */
699 extern NCURSES_EXPORT(int) mvwinsstr (WINDOW
*, int, int, const char *); /* generated */
700 extern NCURSES_EXPORT(int) mvwinstr (WINDOW
*, int, int, char *); /* generated */
701 extern NCURSES_EXPORT(int) mvwprintw (WINDOW
*,int,int, const char *,...) /* implemented */
703 extern NCURSES_EXPORT(int) mvwscanw (WINDOW
*,int,int, NCURSES_CONST
char *,...) /* implemented */
705 extern NCURSES_EXPORT(int) mvwvline (WINDOW
*,int, int, chtype
, int); /* generated */
706 extern NCURSES_EXPORT(int) napms (int); /* implemented */
707 extern NCURSES_EXPORT(WINDOW
*) newpad (int,int); /* implemented */
708 extern NCURSES_EXPORT(SCREEN
*) newterm (NCURSES_CONST
char *,FILE *,FILE *); /* implemented */
709 extern NCURSES_EXPORT(WINDOW
*) newwin (int,int,int,int); /* implemented */
710 extern NCURSES_EXPORT(int) nl (void); /* implemented */
711 extern NCURSES_EXPORT(int) nocbreak (void); /* implemented */
712 extern NCURSES_EXPORT(int) nodelay (WINDOW
*,bool); /* implemented */
713 extern NCURSES_EXPORT(int) noecho (void); /* implemented */
714 extern NCURSES_EXPORT(int) nonl (void); /* implemented */
715 extern NCURSES_EXPORT(void) noqiflush (void); /* implemented */
716 extern NCURSES_EXPORT(int) noraw (void); /* implemented */
717 extern NCURSES_EXPORT(int) notimeout (WINDOW
*,bool); /* implemented */
718 extern NCURSES_EXPORT(int) overlay (const WINDOW
*,WINDOW
*); /* implemented */
719 extern NCURSES_EXPORT(int) overwrite (const WINDOW
*,WINDOW
*); /* implemented */
720 extern NCURSES_EXPORT(int) pair_content (short,short*,short*); /* implemented */
721 extern NCURSES_EXPORT(int) PAIR_NUMBER (int); /* generated */
722 extern NCURSES_EXPORT(int) pechochar (WINDOW
*, const chtype
); /* implemented */
723 extern NCURSES_EXPORT(int) pnoutrefresh (WINDOW
*,int,int,int,int,int,int);/* implemented */
724 extern NCURSES_EXPORT(int) prefresh (WINDOW
*,int,int,int,int,int,int); /* implemented */
725 extern NCURSES_EXPORT(int) printw (const char *,...) /* implemented */
727 extern NCURSES_EXPORT(int) putwin (WINDOW
*, FILE *); /* implemented */
728 extern NCURSES_EXPORT(void) qiflush (void); /* implemented */
729 extern NCURSES_EXPORT(int) raw (void); /* implemented */
730 extern NCURSES_EXPORT(int) redrawwin (WINDOW
*); /* generated */
731 extern NCURSES_EXPORT(int) refresh (void); /* generated */
732 extern NCURSES_EXPORT(int) resetty (void); /* implemented */
733 extern NCURSES_EXPORT(int) reset_prog_mode (void); /* implemented */
734 extern NCURSES_EXPORT(int) reset_shell_mode (void); /* implemented */
735 extern NCURSES_EXPORT(int) ripoffline (int, int (*)(WINDOW
*, int)); /* implemented */
736 extern NCURSES_EXPORT(int) savetty (void); /* implemented */
737 extern NCURSES_EXPORT(int) scanw (NCURSES_CONST
char *,...) /* implemented */
739 extern NCURSES_EXPORT(int) scr_dump (const char *); /* implemented */
740 extern NCURSES_EXPORT(int) scr_init (const char *); /* implemented */
741 extern NCURSES_EXPORT(int) scrl (int); /* generated */
742 extern NCURSES_EXPORT(int) scroll (WINDOW
*); /* generated */
743 extern NCURSES_EXPORT(int) scrollok (WINDOW
*,bool); /* implemented */
744 extern NCURSES_EXPORT(int) scr_restore (const char *); /* implemented */
745 extern NCURSES_EXPORT(int) scr_set (const char *); /* implemented */
746 extern NCURSES_EXPORT(int) setscrreg (int,int); /* generated */
747 extern NCURSES_EXPORT(SCREEN
*) set_term (SCREEN
*); /* implemented */
748 extern NCURSES_EXPORT(int) slk_attroff (const chtype
); /* implemented */
749 extern NCURSES_EXPORT(int) slk_attr_off (const attr_t
, void *); /* generated:WIDEC */
750 extern NCURSES_EXPORT(int) slk_attron (const chtype
); /* implemented */
751 extern NCURSES_EXPORT(int) slk_attr_on (attr_t
,void*); /* generated:WIDEC */
752 extern NCURSES_EXPORT(int) slk_attrset (const chtype
); /* implemented */
753 extern NCURSES_EXPORT(attr_t
) slk_attr (void); /* implemented */
754 extern NCURSES_EXPORT(int) slk_attr_set (const attr_t
,short,void*); /* implemented */
755 extern NCURSES_EXPORT(int) slk_clear (void); /* implemented */
756 extern NCURSES_EXPORT(int) slk_color (short); /* implemented */
757 extern NCURSES_EXPORT(int) slk_init (int); /* implemented */
758 extern NCURSES_EXPORT(char *) slk_label (int); /* implemented */
759 extern NCURSES_EXPORT(int) slk_noutrefresh (void); /* implemented */
760 extern NCURSES_EXPORT(int) slk_refresh (void); /* implemented */
761 extern NCURSES_EXPORT(int) slk_restore (void); /* implemented */
762 extern NCURSES_EXPORT(int) slk_set (int,const char *,int); /* implemented */
763 extern NCURSES_EXPORT(int) slk_touch (void); /* implemented */
764 extern NCURSES_EXPORT(int) standout (void); /* generated */
765 extern NCURSES_EXPORT(int) standend (void); /* generated */
766 extern NCURSES_EXPORT(int) start_color (void); /* implemented */
767 extern NCURSES_EXPORT(WINDOW
*) subpad (WINDOW
*, int, int, int, int); /* implemented */
768 extern NCURSES_EXPORT(WINDOW
*) subwin (WINDOW
*,int,int,int,int); /* implemented */
769 extern NCURSES_EXPORT(int) syncok (WINDOW
*, bool); /* implemented */
770 extern NCURSES_EXPORT(chtype
) termattrs (void); /* implemented */
771 extern NCURSES_EXPORT(char *) termname (void); /* implemented */
772 extern NCURSES_EXPORT(void) timeout (int); /* generated */
773 extern NCURSES_EXPORT(int) touchline (WINDOW
*, int, int); /* generated */
774 extern NCURSES_EXPORT(int) touchwin (WINDOW
*); /* generated */
775 extern NCURSES_EXPORT(int) typeahead (int); /* implemented */
776 extern NCURSES_EXPORT(int) ungetch (int); /* implemented */
777 extern NCURSES_EXPORT(int) untouchwin (WINDOW
*); /* generated */
778 extern NCURSES_EXPORT(void) use_env (bool); /* implemented */
779 extern NCURSES_EXPORT(int) vidattr (chtype
); /* implemented */
780 extern NCURSES_EXPORT(int) vidputs (chtype
, int (*)(int)); /* implemented */
781 extern NCURSES_EXPORT(int) vline (chtype
, int); /* generated */
782 extern NCURSES_EXPORT(int) vwprintw (WINDOW
*, const char *,va_list); /* implemented */
783 extern NCURSES_EXPORT(int) vw_printw (WINDOW
*, const char *,va_list); /* generated */
784 extern NCURSES_EXPORT(int) vwscanw (WINDOW
*, NCURSES_CONST
char *,va_list); /* implemented */
785 extern NCURSES_EXPORT(int) vw_scanw (WINDOW
*, NCURSES_CONST
char *,va_list); /* generated */
786 extern NCURSES_EXPORT(int) waddch (WINDOW
*, const chtype
); /* implemented */
787 extern NCURSES_EXPORT(int) waddchnstr (WINDOW
*,const chtype
*,int); /* implemented */
788 extern NCURSES_EXPORT(int) waddchstr (WINDOW
*,const chtype
*); /* generated */
789 extern NCURSES_EXPORT(int) waddnstr (WINDOW
*,const char *,int); /* implemented */
790 extern NCURSES_EXPORT(int) waddstr (WINDOW
*,const char *); /* generated */
791 extern NCURSES_EXPORT(int) wattron (WINDOW
*, int); /* generated */
792 extern NCURSES_EXPORT(int) wattroff (WINDOW
*, int); /* generated */
793 extern NCURSES_EXPORT(int) wattrset (WINDOW
*, int); /* generated */
794 extern NCURSES_EXPORT(int) wattr_get (WINDOW
*, attr_t
*, short *, void *); /* generated */
795 extern NCURSES_EXPORT(int) wattr_on (WINDOW
*, attr_t
, void *); /* implemented */
796 extern NCURSES_EXPORT(int) wattr_off (WINDOW
*, attr_t
, void *); /* implemented */
797 extern NCURSES_EXPORT(int) wattr_set (WINDOW
*, attr_t
, short, void *); /* generated */
798 extern NCURSES_EXPORT(int) wbkgd (WINDOW
*, chtype
); /* implemented */
799 extern NCURSES_EXPORT(void) wbkgdset (WINDOW
*,chtype
); /* implemented */
800 extern NCURSES_EXPORT(int) wborder (WINDOW
*,chtype
,chtype
,chtype
,chtype
,chtype
,chtype
,chtype
,chtype
); /* implemented */
801 extern NCURSES_EXPORT(int) wchgat (WINDOW
*, int, attr_t
, short, const void *);/* implemented */
802 extern NCURSES_EXPORT(int) wclear (WINDOW
*); /* implemented */
803 extern NCURSES_EXPORT(int) wclrtobot (WINDOW
*); /* implemented */
804 extern NCURSES_EXPORT(int) wclrtoeol (WINDOW
*); /* implemented */
805 extern NCURSES_EXPORT(int) wcolor_set (WINDOW
*,short,void*); /* implemented */
806 extern NCURSES_EXPORT(void) wcursyncup (WINDOW
*); /* implemented */
807 extern NCURSES_EXPORT(int) wdelch (WINDOW
*); /* implemented */
808 extern NCURSES_EXPORT(int) wdeleteln (WINDOW
*); /* generated */
809 extern NCURSES_EXPORT(int) wechochar (WINDOW
*, const chtype
); /* implemented */
810 extern NCURSES_EXPORT(int) werase (WINDOW
*); /* implemented */
811 extern NCURSES_EXPORT(int) wgetch (WINDOW
*); /* implemented */
812 extern NCURSES_EXPORT(int) wgetnstr (WINDOW
*,char *,int); /* implemented */
813 extern NCURSES_EXPORT(int) wgetstr (WINDOW
*, char *); /* generated */
814 extern NCURSES_EXPORT(int) whline (WINDOW
*, chtype
, int); /* implemented */
815 extern NCURSES_EXPORT(chtype
) winch (WINDOW
*); /* implemented */
816 extern NCURSES_EXPORT(int) winchnstr (WINDOW
*, chtype
*, int); /* implemented */
817 extern NCURSES_EXPORT(int) winchstr (WINDOW
*, chtype
*); /* generated */
818 extern NCURSES_EXPORT(int) winnstr (WINDOW
*, char *, int); /* implemented */
819 extern NCURSES_EXPORT(int) winsch (WINDOW
*, chtype
); /* implemented */
820 extern NCURSES_EXPORT(int) winsdelln (WINDOW
*,int); /* implemented */
821 extern NCURSES_EXPORT(int) winsertln (WINDOW
*); /* generated */
822 extern NCURSES_EXPORT(int) winsnstr (WINDOW
*, const char *,int); /* implemented */
823 extern NCURSES_EXPORT(int) winsstr (WINDOW
*, const char *); /* generated */
824 extern NCURSES_EXPORT(int) winstr (WINDOW
*, char *); /* generated */
825 extern NCURSES_EXPORT(int) wmove (WINDOW
*,int,int); /* implemented */
826 extern NCURSES_EXPORT(int) wnoutrefresh (WINDOW
*); /* implemented */
827 extern NCURSES_EXPORT(int) wprintw (WINDOW
*, const char *,...) /* implemented */
829 extern NCURSES_EXPORT(int) wredrawln (WINDOW
*,int,int); /* implemented */
830 extern NCURSES_EXPORT(int) wrefresh (WINDOW
*); /* implemented */
831 extern NCURSES_EXPORT(int) wscanw (WINDOW
*, NCURSES_CONST
char *,...) /* implemented */
833 extern NCURSES_EXPORT(int) wscrl (WINDOW
*,int); /* implemented */
834 extern NCURSES_EXPORT(int) wsetscrreg (WINDOW
*,int,int); /* implemented */
835 extern NCURSES_EXPORT(int) wstandout (WINDOW
*); /* generated */
836 extern NCURSES_EXPORT(int) wstandend (WINDOW
*); /* generated */
837 extern NCURSES_EXPORT(void) wsyncdown (WINDOW
*); /* implemented */
838 extern NCURSES_EXPORT(void) wsyncup (WINDOW
*); /* implemented */
839 extern NCURSES_EXPORT(void) wtimeout (WINDOW
*,int); /* implemented */
840 extern NCURSES_EXPORT(int) wtouchln (WINDOW
*,int,int,int); /* implemented */
841 extern NCURSES_EXPORT(int) wvline (WINDOW
*,chtype
,int); /* implemented */
844 * These are also declared in <ncursesw/term.h>:
846 extern NCURSES_EXPORT(int) tigetflag (NCURSES_CONST
char *); /* implemented */
847 extern NCURSES_EXPORT(int) tigetnum (NCURSES_CONST
char *); /* implemented */
848 extern NCURSES_EXPORT(char *) tigetstr (NCURSES_CONST
char *); /* implemented */
849 extern NCURSES_EXPORT(int) putp (const char *); /* implemented */
851 #if NCURSES_TPARM_VARARGS
852 extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST
char *, ...); /* implemented */
854 extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST
char *, long,long,long,long,long,long,long,long,long); /* implemented */
855 extern NCURSES_EXPORT(char *) tparm_varargs (NCURSES_CONST
char *, ...); /* implemented */
858 extern NCURSES_EXPORT_VAR(char) ttytype
[]; /* needed for backward compatibility */
861 * These functions are not in X/Open, but we use them in macro definitions:
863 extern NCURSES_EXPORT(int) getcurx (const WINDOW
*); /* generated */
864 extern NCURSES_EXPORT(int) getcury (const WINDOW
*); /* generated */
865 extern NCURSES_EXPORT(int) getbegx (const WINDOW
*); /* generated */
866 extern NCURSES_EXPORT(int) getbegy (const WINDOW
*); /* generated */
867 extern NCURSES_EXPORT(int) getmaxx (const WINDOW
*); /* generated */
868 extern NCURSES_EXPORT(int) getmaxy (const WINDOW
*); /* generated */
869 extern NCURSES_EXPORT(int) getparx (const WINDOW
*); /* generated */
870 extern NCURSES_EXPORT(int) getpary (const WINDOW
*); /* generated */
873 * vid_attr() was implemented originally based on a draft of XSI curses.
875 #ifndef _XOPEN_SOURCE_EXTENDED
876 #define vid_attr(a,pair,opts) vidattr(a)
881 #define NCURSES_ATTR_SHIFT 8
882 #define NCURSES_BITS(mask,shift) ((mask) << ((shift) + NCURSES_ATTR_SHIFT))
884 #define A_NORMAL (1UL - 1UL)
885 #define A_ATTRIBUTES NCURSES_BITS(~(1UL - 1UL),0)
886 #define A_CHARTEXT (NCURSES_BITS(1UL,0) - 1UL)
887 #define A_COLOR NCURSES_BITS(((1UL) << 8) - 1UL,0)
888 #define A_STANDOUT NCURSES_BITS(1UL,8)
889 #define A_UNDERLINE NCURSES_BITS(1UL,9)
890 #define A_REVERSE NCURSES_BITS(1UL,10)
891 #define A_BLINK NCURSES_BITS(1UL,11)
892 #define A_DIM NCURSES_BITS(1UL,12)
893 #define A_BOLD NCURSES_BITS(1UL,13)
894 #define A_ALTCHARSET NCURSES_BITS(1UL,14)
895 #define A_INVIS NCURSES_BITS(1UL,15)
896 #define A_PROTECT NCURSES_BITS(1UL,16)
897 #define A_HORIZONTAL NCURSES_BITS(1UL,17)
898 #define A_LEFT NCURSES_BITS(1UL,18)
899 #define A_LOW NCURSES_BITS(1UL,19)
900 #define A_RIGHT NCURSES_BITS(1UL,20)
901 #define A_TOP NCURSES_BITS(1UL,21)
902 #define A_VERTICAL NCURSES_BITS(1UL,22)
905 * Most of the pseudo functions are macros that either provide compatibility
906 * with older versions of curses, or provide inline functionality to improve
911 * These pseudo functions are always implemented as macros:
914 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win))
915 #define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win))
916 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win))
917 #define getparyx(win,y,x) (y = getpary(win), x = getparx(win))
919 #define getsyx(y,x) do { if(newscr->_leaveok) (y)=(x)=-1; \
920 else getyx(newscr,(y),(x)); \
922 #define setsyx(y,x) do { if((y)==-1 && (x)==-1) newscr->_leaveok=TRUE; \
923 else {newscr->_leaveok=FALSE;wmove(newscr,(y),(x));} \
926 #ifndef NCURSES_NOMACROS
929 * These miscellaneous pseudo functions are provided for compatibility:
932 #define wgetstr(w, s) wgetnstr(w, s, -1)
933 #define getnstr(s, n) wgetnstr(stdscr, s, n)
935 #define setterm(term) setupterm(term, 1, (int *)0)
937 #define fixterm() reset_prog_mode()
938 #define resetterm() reset_shell_mode()
939 #define saveterm() def_prog_mode()
940 #define crmode() cbreak()
941 #define nocrmode() nocbreak()
944 /* It seems older SYSV curses versions define these */
945 #define getattrs(win) ((win)?(win)->_attrs:A_NORMAL)
946 #define getcurx(win) ((win)?(win)->_curx:ERR)
947 #define getcury(win) ((win)?(win)->_cury:ERR)
948 #define getbegx(win) ((win)?(win)->_begx:ERR)
949 #define getbegy(win) ((win)?(win)->_begy:ERR)
950 #define getmaxx(win) ((win)?((win)->_maxx + 1):ERR)
951 #define getmaxy(win) ((win)?((win)->_maxy + 1):ERR)
952 #define getparx(win) ((win)?(win)->_parx:ERR)
953 #define getpary(win) ((win)?(win)->_pary:ERR)
955 #define wstandout(win) (wattrset(win,A_STANDOUT))
956 #define wstandend(win) (wattrset(win,A_NORMAL))
958 #define wattron(win,at) wattr_on(win, NCURSES_CAST(attr_t, at), NULL)
959 #define wattroff(win,at) wattr_off(win, NCURSES_CAST(attr_t, at), NULL)
961 #if defined(_XOPEN_SOURCE_EXTENDED) && 0
962 #define wattrset(win,at) ((win)->_color = PAIR_NUMBER(at), \
963 (win)->_attrs = (at))
965 #define wattrset(win,at) ((win)->_attrs = (at))
968 #define scroll(win) wscrl(win,1)
970 #define touchwin(win) wtouchln((win), 0, getmaxy(win), 1)
971 #define touchline(win, s, c) wtouchln((win), s, c, 1)
972 #define untouchwin(win) wtouchln((win), 0, getmaxy(win), 0)
974 #define box(win, v, h) wborder(win, v, v, h, h, 0, 0, 0, 0)
975 #define border(ls, rs, ts, bs, tl, tr, bl, br) wborder(stdscr, ls, rs, ts, bs, tl, tr, bl, br)
976 #define hline(ch, n) whline(stdscr, ch, n)
977 #define vline(ch, n) wvline(stdscr, ch, n)
979 #define winstr(w, s) winnstr(w, s, -1)
980 #define winchstr(w, s) winchnstr(w, s, -1)
981 #define winsstr(w, s) winsnstr(w, s, -1)
983 #define redrawwin(win) wredrawln(win, 0, (win)->_maxy+1)
984 #define waddstr(win,str) waddnstr(win,str,-1)
985 #define waddchstr(win,str) waddchnstr(win,str,-1)
988 * These apply to the first 256 color pairs.
990 #define COLOR_PAIR(n) NCURSES_BITS(n, 0)
991 #define PAIR_NUMBER(a) (NCURSES_CAST(int,(((a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
994 * pseudo functions for standard screen
997 #define addch(ch) waddch(stdscr,ch)
998 #define addchnstr(str,n) waddchnstr(stdscr,str,n)
999 #define addchstr(str) waddchstr(stdscr,str)
1000 #define addnstr(str,n) waddnstr(stdscr,str,n)
1001 #define addstr(str) waddnstr(stdscr,str,-1)
1002 #define attroff(at) wattroff(stdscr,at)
1003 #define attron(at) wattron(stdscr,at)
1004 #define attrset(at) wattrset(stdscr,at)
1005 #define attr_get(ap,cp,o) wattr_get(stdscr,ap,cp,o)
1006 #define attr_off(a,o) wattr_off(stdscr,a,o)
1007 #define attr_on(a,o) wattr_on(stdscr,a,o)
1008 #define attr_set(a,c,o) wattr_set(stdscr,a,c,o)
1009 #define bkgd(ch) wbkgd(stdscr,ch)
1010 #define bkgdset(ch) wbkgdset(stdscr,ch)
1011 #define chgat(n,a,c,o) wchgat(stdscr,n,a,c,o)
1012 #define clear() wclear(stdscr)
1013 #define clrtobot() wclrtobot(stdscr)
1014 #define clrtoeol() wclrtoeol(stdscr)
1015 #define color_set(c,o) wcolor_set(stdscr,c,o)
1016 #define delch() wdelch(stdscr)
1017 #define deleteln() winsdelln(stdscr,-1)
1018 #define echochar(c) wechochar(stdscr,c)
1019 #define erase() werase(stdscr)
1020 #define getch() wgetch(stdscr)
1021 #define getstr(str) wgetstr(stdscr,str)
1022 #define inch() winch(stdscr)
1023 #define inchnstr(s,n) winchnstr(stdscr,s,n)
1024 #define inchstr(s) winchstr(stdscr,s)
1025 #define innstr(s,n) winnstr(stdscr,s,n)
1026 #define insch(c) winsch(stdscr,c)
1027 #define insdelln(n) winsdelln(stdscr,n)
1028 #define insertln() winsdelln(stdscr,1)
1029 #define insnstr(s,n) winsnstr(stdscr,s,n)
1030 #define insstr(s) winsstr(stdscr,s)
1031 #define instr(s) winstr(stdscr,s)
1032 #define move(y,x) wmove(stdscr,y,x)
1033 #define refresh() wrefresh(stdscr)
1034 #define scrl(n) wscrl(stdscr,n)
1035 #define setscrreg(t,b) wsetscrreg(stdscr,t,b)
1036 #define standend() wstandend(stdscr)
1037 #define standout() wstandout(stdscr)
1038 #define timeout(delay) wtimeout(stdscr,delay)
1039 #define wdeleteln(win) winsdelln(win,-1)
1040 #define winsertln(win) winsdelln(win,1)
1046 #define mvwaddch(win,y,x,ch) (wmove(win,y,x) == ERR ? ERR : waddch(win,ch))
1047 #define mvwaddchnstr(win,y,x,str,n) (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,n))
1048 #define mvwaddchstr(win,y,x,str) (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,-1))
1049 #define mvwaddnstr(win,y,x,str,n) (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,n))
1050 #define mvwaddstr(win,y,x,str) (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,-1))
1051 #define mvwdelch(win,y,x) (wmove(win,y,x) == ERR ? ERR : wdelch(win))
1052 #define mvwchgat(win,y,x,n,a,c,o) (wmove(win,y,x) == ERR ? ERR : wchgat(win,n,a,c,o))
1053 #define mvwgetch(win,y,x) (wmove(win,y,x) == ERR ? ERR : wgetch(win))
1054 #define mvwgetnstr(win,y,x,str,n) (wmove(win,y,x) == ERR ? ERR : wgetnstr(win,str,n))
1055 #define mvwgetstr(win,y,x,str) (wmove(win,y,x) == ERR ? ERR : wgetstr(win,str))
1056 #define mvwhline(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : whline(win,c,n))
1057 #define mvwinch(win,y,x) (wmove(win,y,x) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
1058 #define mvwinchnstr(win,y,x,s,n) (wmove(win,y,x) == ERR ? ERR : winchnstr(win,s,n))
1059 #define mvwinchstr(win,y,x,s) (wmove(win,y,x) == ERR ? ERR : winchstr(win,s))
1060 #define mvwinnstr(win,y,x,s,n) (wmove(win,y,x) == ERR ? ERR : winnstr(win,s,n))
1061 #define mvwinsch(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : winsch(win,c))
1062 #define mvwinsnstr(win,y,x,s,n) (wmove(win,y,x) == ERR ? ERR : winsnstr(win,s,n))
1063 #define mvwinsstr(win,y,x,s) (wmove(win,y,x) == ERR ? ERR : winsstr(win,s))
1064 #define mvwinstr(win,y,x,s) (wmove(win,y,x) == ERR ? ERR : winstr(win,s))
1065 #define mvwvline(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : wvline(win,c,n))
1067 #define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
1068 #define mvaddchnstr(y,x,str,n) mvwaddchnstr(stdscr,y,x,str,n)
1069 #define mvaddchstr(y,x,str) mvwaddchstr(stdscr,y,x,str)
1070 #define mvaddnstr(y,x,str,n) mvwaddnstr(stdscr,y,x,str,n)
1071 #define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
1072 #define mvchgat(y,x,n,a,c,o) mvwchgat(stdscr,y,x,n,a,c,o)
1073 #define mvdelch(y,x) mvwdelch(stdscr,y,x)
1074 #define mvgetch(y,x) mvwgetch(stdscr,y,x)
1075 #define mvgetnstr(y,x,str,n) mvwgetnstr(stdscr,y,x,str,n)
1076 #define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
1077 #define mvhline(y,x,c,n) mvwhline(stdscr,y,x,c,n)
1078 #define mvinch(y,x) mvwinch(stdscr,y,x)
1079 #define mvinchnstr(y,x,s,n) mvwinchnstr(stdscr,y,x,s,n)
1080 #define mvinchstr(y,x,s) mvwinchstr(stdscr,y,x,s)
1081 #define mvinnstr(y,x,s,n) mvwinnstr(stdscr,y,x,s,n)
1082 #define mvinsch(y,x,c) mvwinsch(stdscr,y,x,c)
1083 #define mvinsnstr(y,x,s,n) mvwinsnstr(stdscr,y,x,s,n)
1084 #define mvinsstr(y,x,s) mvwinsstr(stdscr,y,x,s)
1085 #define mvinstr(y,x,s) mvwinstr(stdscr,y,x,s)
1086 #define mvvline(y,x,c,n) mvwvline(stdscr,y,x,c,n)
1089 * Some wide-character functions can be implemented without the extensions.
1091 #define getbkgd(win) ((win)->_bkgd)
1093 #define slk_attr_off(a,v) ((v) ? ERR : slk_attroff(a))
1094 #define slk_attr_on(a,v) ((v) ? ERR : slk_attron(a))
1096 #if defined(_XOPEN_SOURCE_EXTENDED) && 0
1097 #define wattr_set(win,a,p,opts) ((win)->_attrs = ((a) & ~A_COLOR), \
1098 (win)->_color = (p), \
1100 #define wattr_get(win,a,p,opts) ((void)((a) != 0 && (*(a) = (win)->_attrs)), \
1101 (void)((p) != 0 && (*(p) = (win)->_color)), \
1104 #define wattr_set(win,a,p,opts) ((win)->_attrs = (((a) & ~A_COLOR) | COLOR_PAIR(p)), OK)
1105 #define wattr_get(win,a,p,opts) ((void)((a) != 0 && (*(a) = (win)->_attrs)), \
1106 (void)((p) != 0 && (*(p) = PAIR_NUMBER((win)->_attrs))), \
1111 * XSI curses deprecates SVr4 vwprintw/vwscanw, which are supposed to use
1112 * varargs.h. It adds new calls vw_printw/vw_scanw, which are supposed to
1113 * use POSIX stdarg.h. The ncurses versions of vwprintw/vwscanw already
1114 * use stdarg.h, so...
1116 #define vw_printw vwprintw
1117 #define vw_scanw vwscanw
1120 * Export fallback function for use in C++ binding.
1123 #define vsscanf(a,b,c) _nc_vsscanf(a,b,c)
1124 NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list);
1127 #endif /* NCURSES_NOMACROS */
1130 * Pseudo-character tokens outside ASCII range. The curses wgetch() function
1131 * will return any given one of these only if the corresponding k- capability
1132 * is defined in your terminal's terminfo entry.
1134 * Some keys (KEY_A1, etc) are arranged like this:
1139 * A few key codes do not depend upon the terminfo entry.
1141 #define KEY_CODE_YES 0400 /* A wchar_t contains a key code */
1142 #define KEY_MIN 0401 /* Minimum curses key */
1143 #define KEY_BREAK 0401 /* Break key (unreliable) */
1144 #define KEY_SRESET 0530 /* Soft (partial) reset (unreliable) */
1145 #define KEY_RESET 0531 /* Reset or hard reset (unreliable) */
1147 * These definitions were generated by /home/user/ncurses-5.6/include/MKkey_defs.sh /home/user/ncurses-5.6/include/Caps
1149 #define KEY_DOWN 0402 /* down-arrow key */
1150 #define KEY_UP 0403 /* up-arrow key */
1151 #define KEY_LEFT 0404 /* left-arrow key */
1152 #define KEY_RIGHT 0405 /* right-arrow key */
1153 #define KEY_HOME 0406 /* home key */
1154 #define KEY_BACKSPACE 0407 /* backspace key */
1155 #define KEY_F0 0410 /* Function keys. Space for 64 */
1156 #define KEY_F(n) (KEY_F0+(n)) /* Value of function key n */
1157 #define KEY_DL 0510 /* delete-line key */
1158 #define KEY_IL 0511 /* insert-line key */
1159 #define KEY_DC 0512 /* delete-character key */
1160 #define KEY_IC 0513 /* insert-character key */
1161 #define KEY_EIC 0514 /* sent by rmir or smir in insert mode */
1162 #define KEY_CLEAR 0515 /* clear-screen or erase key */
1163 #define KEY_EOS 0516 /* clear-to-end-of-screen key */
1164 #define KEY_EOL 0517 /* clear-to-end-of-line key */
1165 #define KEY_SF 0520 /* scroll-forward key */
1166 #define KEY_SR 0521 /* scroll-backward key */
1167 #define KEY_NPAGE 0522 /* next-page key */
1168 #define KEY_PPAGE 0523 /* previous-page key */
1169 #define KEY_STAB 0524 /* set-tab key */
1170 #define KEY_CTAB 0525 /* clear-tab key */
1171 #define KEY_CATAB 0526 /* clear-all-tabs key */
1172 #define KEY_ENTER 0527 /* enter/send key */
1173 #define KEY_PRINT 0532 /* print key */
1174 #define KEY_LL 0533 /* lower-left key (home down) */
1175 #define KEY_A1 0534 /* upper left of keypad */
1176 #define KEY_A3 0535 /* upper right of keypad */
1177 #define KEY_B2 0536 /* center of keypad */
1178 #define KEY_C1 0537 /* lower left of keypad */
1179 #define KEY_C3 0540 /* lower right of keypad */
1180 #define KEY_BTAB 0541 /* back-tab key */
1181 #define KEY_BEG 0542 /* begin key */
1182 #define KEY_CANCEL 0543 /* cancel key */
1183 #define KEY_CLOSE 0544 /* close key */
1184 #define KEY_COMMAND 0545 /* command key */
1185 #define KEY_COPY 0546 /* copy key */
1186 #define KEY_CREATE 0547 /* create key */
1187 #define KEY_END 0550 /* end key */
1188 #define KEY_EXIT 0551 /* exit key */
1189 #define KEY_FIND 0552 /* find key */
1190 #define KEY_HELP 0553 /* help key */
1191 #define KEY_MARK 0554 /* mark key */
1192 #define KEY_MESSAGE 0555 /* message key */
1193 #define KEY_MOVE 0556 /* move key */
1194 #define KEY_NEXT 0557 /* next key */
1195 #define KEY_OPEN 0560 /* open key */
1196 #define KEY_OPTIONS 0561 /* options key */
1197 #define KEY_PREVIOUS 0562 /* previous key */
1198 #define KEY_REDO 0563 /* redo key */
1199 #define KEY_REFERENCE 0564 /* reference key */
1200 #define KEY_REFRESH 0565 /* refresh key */
1201 #define KEY_REPLACE 0566 /* replace key */
1202 #define KEY_RESTART 0567 /* restart key */
1203 #define KEY_RESUME 0570 /* resume key */
1204 #define KEY_SAVE 0571 /* save key */
1205 #define KEY_SBEG 0572 /* shifted begin key */
1206 #define KEY_SCANCEL 0573 /* shifted cancel key */
1207 #define KEY_SCOMMAND 0574 /* shifted command key */
1208 #define KEY_SCOPY 0575 /* shifted copy key */
1209 #define KEY_SCREATE 0576 /* shifted create key */
1210 #define KEY_SDC 0577 /* shifted delete-character key */
1211 #define KEY_SDL 0600 /* shifted delete-line key */
1212 #define KEY_SELECT 0601 /* select key */
1213 #define KEY_SEND 0602 /* shifted end key */
1214 #define KEY_SEOL 0603 /* shifted clear-to-end-of-line key */
1215 #define KEY_SEXIT 0604 /* shifted exit key */
1216 #define KEY_SFIND 0605 /* shifted find key */
1217 #define KEY_SHELP 0606 /* shifted help key */
1218 #define KEY_SHOME 0607 /* shifted home key */
1219 #define KEY_SIC 0610 /* shifted insert-character key */
1220 #define KEY_SLEFT 0611 /* shifted left-arrow key */
1221 #define KEY_SMESSAGE 0612 /* shifted message key */
1222 #define KEY_SMOVE 0613 /* shifted move key */
1223 #define KEY_SNEXT 0614 /* shifted next key */
1224 #define KEY_SOPTIONS 0615 /* shifted options key */
1225 #define KEY_SPREVIOUS 0616 /* shifted previous key */
1226 #define KEY_SPRINT 0617 /* shifted print key */
1227 #define KEY_SREDO 0620 /* shifted redo key */
1228 #define KEY_SREPLACE 0621 /* shifted replace key */
1229 #define KEY_SRIGHT 0622 /* shifted right-arrow key */
1230 #define KEY_SRSUME 0623 /* shifted resume key */
1231 #define KEY_SSAVE 0624 /* shifted save key */
1232 #define KEY_SSUSPEND 0625 /* shifted suspend key */
1233 #define KEY_SUNDO 0626 /* shifted undo key */
1234 #define KEY_SUSPEND 0627 /* suspend key */
1235 #define KEY_UNDO 0630 /* undo key */
1236 #define KEY_MOUSE 0631 /* Mouse event has occurred */
1237 #define KEY_RESIZE 0632 /* Terminal resize event */
1238 #define KEY_EVENT 0633 /* We were interrupted by an event */
1240 #define KEY_MAX 0777 /* Maximum key value is 0633 */
1242 * This file is part of ncurses, designed to be appended after curses.h.in
1243 * (see that file for the relevant copyright).
1245 #ifdef _XOPEN_SOURCE_EXTENDED
1247 /* $Id: curses.wide,v 1.32 2006/05/27 19:44:23 tom Exp $ */
1249 extern NCURSES_EXPORT_VAR(cchar_t
*) _nc_wacs
;
1251 #define NCURSES_WACS(c) (&_nc_wacs[(unsigned char)c])
1253 #define WACS_BSSB NCURSES_WACS('l')
1254 #define WACS_SSBB NCURSES_WACS('m')
1255 #define WACS_BBSS NCURSES_WACS('k')
1256 #define WACS_SBBS NCURSES_WACS('j')
1257 #define WACS_SBSS NCURSES_WACS('u')
1258 #define WACS_SSSB NCURSES_WACS('t')
1259 #define WACS_SSBS NCURSES_WACS('v')
1260 #define WACS_BSSS NCURSES_WACS('w')
1261 #define WACS_BSBS NCURSES_WACS('q')
1262 #define WACS_SBSB NCURSES_WACS('x')
1263 #define WACS_SSSS NCURSES_WACS('n')
1265 #define WACS_ULCORNER WACS_BSSB
1266 #define WACS_LLCORNER WACS_SSBB
1267 #define WACS_URCORNER WACS_BBSS
1268 #define WACS_LRCORNER WACS_SBBS
1269 #define WACS_RTEE WACS_SBSS
1270 #define WACS_LTEE WACS_SSSB
1271 #define WACS_BTEE WACS_SSBS
1272 #define WACS_TTEE WACS_BSSS
1273 #define WACS_HLINE WACS_BSBS
1274 #define WACS_VLINE WACS_SBSB
1275 #define WACS_PLUS WACS_SSSS
1277 #define WACS_S1 NCURSES_WACS('o') /* scan line 1 */
1278 #define WACS_S9 NCURSES_WACS('s') /* scan line 9 */
1279 #define WACS_DIAMOND NCURSES_WACS('`') /* diamond */
1280 #define WACS_CKBOARD NCURSES_WACS('a') /* checker board */
1281 #define WACS_DEGREE NCURSES_WACS('f') /* degree symbol */
1282 #define WACS_PLMINUS NCURSES_WACS('g') /* plus/minus */
1283 #define WACS_BULLET NCURSES_WACS('~') /* bullet */
1285 /* Teletype 5410v1 symbols */
1286 #define WACS_LARROW NCURSES_WACS(',') /* arrow left */
1287 #define WACS_RARROW NCURSES_WACS('+') /* arrow right */
1288 #define WACS_DARROW NCURSES_WACS('.') /* arrow down */
1289 #define WACS_UARROW NCURSES_WACS('-') /* arrow up */
1290 #define WACS_BOARD NCURSES_WACS('h') /* board of squares */
1291 #define WACS_LANTERN NCURSES_WACS('i') /* lantern symbol */
1292 #define WACS_BLOCK NCURSES_WACS('0') /* solid square block */
1294 /* ncurses extensions */
1295 #define WACS_S3 NCURSES_WACS('p') /* scan line 3 */
1296 #define WACS_S7 NCURSES_WACS('r') /* scan line 7 */
1297 #define WACS_LEQUAL NCURSES_WACS('y') /* less/equal */
1298 #define WACS_GEQUAL NCURSES_WACS('z') /* greater/equal */
1299 #define WACS_PI NCURSES_WACS('{') /* Pi */
1300 #define WACS_NEQUAL NCURSES_WACS('|') /* not equal */
1301 #define WACS_STERLING NCURSES_WACS('}') /* UK pound sign */
1304 * Function prototypes for wide-character operations.
1306 * "generated" comments should include ":WIDEC" to make the corresponding
1307 * functions ifdef'd in lib_gen.c
1309 * "implemented" comments do not need this marker.
1312 extern NCURSES_EXPORT(int) add_wch (const cchar_t
*); /* generated:WIDEC */
1313 extern NCURSES_EXPORT(int) add_wchnstr (const cchar_t
*, int); /* generated:WIDEC */
1314 extern NCURSES_EXPORT(int) add_wchstr (const cchar_t
*); /* generated:WIDEC */
1315 extern NCURSES_EXPORT(int) addnwstr (const wchar_t *, int); /* generated:WIDEC */
1316 extern NCURSES_EXPORT(int) addwstr (const wchar_t *); /* generated:WIDEC */
1317 extern NCURSES_EXPORT(int) bkgrnd (const cchar_t
*); /* generated:WIDEC */
1318 extern NCURSES_EXPORT(void) bkgrndset (const cchar_t
*); /* generated:WIDEC */
1319 extern NCURSES_EXPORT(int) border_set (const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*); /* generated:WIDEC */
1320 extern NCURSES_EXPORT(int) box_set (WINDOW
*, const cchar_t
*, const cchar_t
*); /* generated:WIDEC */
1321 extern NCURSES_EXPORT(int) echo_wchar (const cchar_t
*); /* generated:WIDEC */
1322 extern NCURSES_EXPORT(int) erasewchar (wchar_t*); /* implemented */
1323 extern NCURSES_EXPORT(int) get_wch (wint_t *); /* generated:WIDEC */
1324 extern NCURSES_EXPORT(int) get_wstr (wint_t *); /* generated:WIDEC */
1325 extern NCURSES_EXPORT(int) getbkgrnd (cchar_t
*); /* generated:WIDEC */
1326 extern NCURSES_EXPORT(int) getcchar (const cchar_t
*, wchar_t*, attr_t
*, short*, void*); /* implemented */
1327 extern NCURSES_EXPORT(int) getn_wstr (wint_t *, int); /* generated:WIDEC */
1328 extern NCURSES_EXPORT(int) hline_set (const cchar_t
*, int); /* generated:WIDEC */
1329 extern NCURSES_EXPORT(int) in_wch (cchar_t
*); /* generated:WIDEC */
1330 extern NCURSES_EXPORT(int) in_wchnstr (cchar_t
*, int); /* generated:WIDEC */
1331 extern NCURSES_EXPORT(int) in_wchstr (cchar_t
*); /* generated:WIDEC */
1332 extern NCURSES_EXPORT(int) innwstr (wchar_t *, int); /* generated:WIDEC */
1333 extern NCURSES_EXPORT(int) ins_nwstr (const wchar_t *, int); /* generated:WIDEC */
1334 extern NCURSES_EXPORT(int) ins_wch (const cchar_t
*); /* generated:WIDEC */
1335 extern NCURSES_EXPORT(int) ins_wstr (const wchar_t *); /* generated:WIDEC */
1336 extern NCURSES_EXPORT(int) inwstr (wchar_t *); /* generated:WIDEC */
1337 extern NCURSES_EXPORT(NCURSES_CONST
char*) key_name (wchar_t); /* implemented */
1338 extern NCURSES_EXPORT(int) killwchar (wchar_t *); /* implemented */
1339 extern NCURSES_EXPORT(int) mvadd_wch (int, int, const cchar_t
*); /* generated:WIDEC */
1340 extern NCURSES_EXPORT(int) mvadd_wchnstr (int, int, const cchar_t
*, int);/* generated:WIDEC */
1341 extern NCURSES_EXPORT(int) mvadd_wchstr (int, int, const cchar_t
*); /* generated:WIDEC */
1342 extern NCURSES_EXPORT(int) mvaddnwstr (int, int, const wchar_t *, int); /* generated:WIDEC */
1343 extern NCURSES_EXPORT(int) mvaddwstr (int, int, const wchar_t *); /* generated:WIDEC */
1344 extern NCURSES_EXPORT(int) mvget_wch (int, int, wint_t *); /* generated:WIDEC */
1345 extern NCURSES_EXPORT(int) mvget_wstr (int, int, wint_t *); /* generated:WIDEC */
1346 extern NCURSES_EXPORT(int) mvgetn_wstr (int, int, wint_t *, int); /* generated:WIDEC */
1347 extern NCURSES_EXPORT(int) mvhline_set (int, int, const cchar_t
*, int); /* generated:WIDEC */
1348 extern NCURSES_EXPORT(int) mvin_wch (int, int, cchar_t
*); /* generated:WIDEC */
1349 extern NCURSES_EXPORT(int) mvin_wchnstr (int, int, cchar_t
*, int); /* generated:WIDEC */
1350 extern NCURSES_EXPORT(int) mvin_wchstr (int, int, cchar_t
*); /* generated:WIDEC */
1351 extern NCURSES_EXPORT(int) mvinnwstr (int, int, wchar_t *, int); /* generated:WIDEC */
1352 extern NCURSES_EXPORT(int) mvins_nwstr (int, int, const wchar_t *, int); /* generated:WIDEC */
1353 extern NCURSES_EXPORT(int) mvins_wch (int, int, const cchar_t
*); /* generated:WIDEC */
1354 extern NCURSES_EXPORT(int) mvins_wstr (int, int, const wchar_t *); /* generated:WIDEC */
1355 extern NCURSES_EXPORT(int) mvinwstr (int, int, wchar_t *); /* generated:WIDEC */
1356 extern NCURSES_EXPORT(int) mvvline_set (int, int, const cchar_t
*, int); /* generated:WIDEC */
1357 extern NCURSES_EXPORT(int) mvwadd_wch (WINDOW
*, int, int, const cchar_t
*); /* generated:WIDEC */
1358 extern NCURSES_EXPORT(int) mvwadd_wchnstr (WINDOW
*, int, int, const cchar_t
*, int); /* generated:WIDEC */
1359 extern NCURSES_EXPORT(int) mvwadd_wchstr (WINDOW
*, int, int, const cchar_t
*); /* generated:WIDEC */
1360 extern NCURSES_EXPORT(int) mvwaddnwstr (WINDOW
*, int, int, const wchar_t *, int);/* generated:WIDEC */
1361 extern NCURSES_EXPORT(int) mvwaddwstr (WINDOW
*, int, int, const wchar_t *); /* generated:WIDEC */
1362 extern NCURSES_EXPORT(int) mvwget_wch (WINDOW
*, int, int, wint_t *); /* generated:WIDEC */
1363 extern NCURSES_EXPORT(int) mvwget_wstr (WINDOW
*, int, int, wint_t *); /* generated:WIDEC */
1364 extern NCURSES_EXPORT(int) mvwgetn_wstr (WINDOW
*, int, int, wint_t *, int);/* generated:WIDEC */
1365 extern NCURSES_EXPORT(int) mvwhline_set (WINDOW
*, int, int, const cchar_t
*, int);/* generated:WIDEC */
1366 extern NCURSES_EXPORT(int) mvwin_wch (WINDOW
*, int, int, cchar_t
*); /* generated:WIDEC */
1367 extern NCURSES_EXPORT(int) mvwin_wchnstr (WINDOW
*, int,int, cchar_t
*,int); /* generated:WIDEC */
1368 extern NCURSES_EXPORT(int) mvwin_wchstr (WINDOW
*, int, int, cchar_t
*); /* generated:WIDEC */
1369 extern NCURSES_EXPORT(int) mvwinnwstr (WINDOW
*, int, int, wchar_t *, int); /* generated:WIDEC */
1370 extern NCURSES_EXPORT(int) mvwins_nwstr (WINDOW
*, int,int, const wchar_t *,int); /* generated:WIDEC */
1371 extern NCURSES_EXPORT(int) mvwins_wch (WINDOW
*, int, int, const cchar_t
*); /* generated:WIDEC */
1372 extern NCURSES_EXPORT(int) mvwins_wstr (WINDOW
*, int, int, const wchar_t *); /* generated:WIDEC */
1373 extern NCURSES_EXPORT(int) mvwinwstr (WINDOW
*, int, int, wchar_t *); /* generated:WIDEC */
1374 extern NCURSES_EXPORT(int) mvwvline_set (WINDOW
*, int,int, const cchar_t
*,int); /* generated:WIDEC */
1375 extern NCURSES_EXPORT(int) pecho_wchar (WINDOW
*, const cchar_t
*); /* implemented */
1376 extern NCURSES_EXPORT(int) setcchar (cchar_t
*, const wchar_t *, const attr_t
, short, const void *); /* implemented */
1377 extern NCURSES_EXPORT(int) slk_wset (int, const wchar_t *, int); /* implemented */
1378 extern NCURSES_EXPORT(attr_t
) term_attrs (void); /* implemented */
1379 extern NCURSES_EXPORT(int) unget_wch (const wchar_t); /* implemented */
1380 extern NCURSES_EXPORT(int) vid_attr (attr_t
, short, void *); /* implemented */
1381 extern NCURSES_EXPORT(int) vid_puts (attr_t
, short, void *, int (*)(int)); /* implemented */
1382 extern NCURSES_EXPORT(int) vline_set (const cchar_t
*, int); /* generated:WIDEC */
1383 extern NCURSES_EXPORT(int) wadd_wch (WINDOW
*,const cchar_t
*); /* implemented */
1384 extern NCURSES_EXPORT(int) wadd_wchnstr (WINDOW
*,const cchar_t
*,int); /* implemented */
1385 extern NCURSES_EXPORT(int) wadd_wchstr (WINDOW
*,const cchar_t
*); /* generated:WIDEC */
1386 extern NCURSES_EXPORT(int) waddnwstr (WINDOW
*,const wchar_t *,int); /* implemented */
1387 extern NCURSES_EXPORT(int) waddwstr (WINDOW
*,const wchar_t *); /* generated:WIDEC */
1388 extern NCURSES_EXPORT(int) wbkgrnd (WINDOW
*,const cchar_t
*); /* implemented */
1389 extern NCURSES_EXPORT(void) wbkgrndset (WINDOW
*,const cchar_t
*); /* implemented */
1390 extern NCURSES_EXPORT(int) wborder_set (WINDOW
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*,const cchar_t
*); /* implemented */
1391 extern NCURSES_EXPORT(int) wecho_wchar (WINDOW
*, const cchar_t
*); /* implemented */
1392 extern NCURSES_EXPORT(int) wget_wch (WINDOW
*, wint_t *); /* implemented */
1393 extern NCURSES_EXPORT(int) wget_wstr (WINDOW
*, wint_t *); /* generated:WIDEC */
1394 extern NCURSES_EXPORT(int) wgetbkgrnd (WINDOW
*, cchar_t
*); /* generated:WIDEC */
1395 extern NCURSES_EXPORT(int) wgetn_wstr (WINDOW
*,wint_t *, int); /* implemented */
1396 extern NCURSES_EXPORT(int) whline_set (WINDOW
*, const cchar_t
*, int); /* implemented */
1397 extern NCURSES_EXPORT(int) win_wch (WINDOW
*, cchar_t
*); /* implemented */
1398 extern NCURSES_EXPORT(int) win_wchnstr (WINDOW
*, cchar_t
*, int); /* implemented */
1399 extern NCURSES_EXPORT(int) win_wchstr (WINDOW
*, cchar_t
*); /* generated:WIDEC */
1400 extern NCURSES_EXPORT(int) winnwstr (WINDOW
*, wchar_t *, int); /* implemented */
1401 extern NCURSES_EXPORT(int) wins_nwstr (WINDOW
*, const wchar_t *, int); /* implemented */
1402 extern NCURSES_EXPORT(int) wins_wch (WINDOW
*, const cchar_t
*); /* implemented */
1403 extern NCURSES_EXPORT(int) wins_wstr (WINDOW
*, const wchar_t *); /* generated:WIDEC */
1404 extern NCURSES_EXPORT(int) winwstr (WINDOW
*, wchar_t *); /* implemented */
1405 extern NCURSES_EXPORT(wchar_t*) wunctrl (cchar_t
*); /* implemented */
1406 extern NCURSES_EXPORT(int) wvline_set (WINDOW
*, const cchar_t
*, int); /* implemented */
1408 #ifndef NCURSES_NOMACROS
1411 * XSI curses macros for XPG4 conformance.
1413 #define add_wch(c) wadd_wch(stdscr,c)
1414 #define add_wchnstr(str,n) wadd_wchnstr(stdscr,str,n)
1415 #define add_wchstr(str) wadd_wchstr(stdscr,str)
1416 #define addnwstr(wstr,n) waddnwstr(stdscr,wstr,n)
1417 #define addwstr(wstr) waddwstr(stdscr,wstr)
1418 #define bkgrnd(c) wbkgrnd(stdscr,c)
1419 #define bkgrndset(c) wbkgrndset(stdscr,c)
1420 #define border_set(l,r,t,b,tl,tr,bl,br) wborder_set(stdscr,l,r,t,b,tl,tr,bl,br)
1421 #define box_set(w,v,h) wborder_set(w,v,v,h,h,0,0,0,0)
1422 #define echo_wchar(c) wecho_wchar(stdscr,c)
1423 #define get_wch(c) wget_wch(stdscr,c)
1424 #define get_wstr(t) wget_wstr(stdscr,t)
1425 #define getbkgrnd(wch) wgetbkgrnd(stdscr,wch)
1426 #define getn_wstr(t,n) wgetn_wstr(stdscr,t,n)
1427 #define hline_set(c,n) whline_set(stdscr,c,n)
1428 #define in_wch(c) win_wch(stdscr,c)
1429 #define in_wchnstr(c,n) win_wchnstr(stdscr,c,n)
1430 #define in_wchstr(c) win_wchstr(stdscr,c)
1431 #define innwstr(c,n) winnwstr(stdscr,c,n)
1432 #define ins_nwstr(t,n) wins_nwstr(stdscr,t,n)
1433 #define ins_wch(c) wins_wch(stdscr,c)
1434 #define ins_wstr(t) wins_wstr(stdscr,t)
1435 #define inwstr(c) winwstr(stdscr,c)
1436 #define vline_set(c,n) wvline_set(stdscr,c,n)
1437 #define wadd_wchstr(win,str) wadd_wchnstr(win,str,-1)
1438 #define waddwstr(win,wstr) waddnwstr(win,wstr,-1)
1439 #define wget_wstr(w,t) wgetn_wstr(w,t,-1)
1440 //// #define wgetbkgrnd(win,wch) (*wch = win->_bkgrnd, OK)
1441 #define win_wchstr(w,c) win_wchnstr(w,c,-1)
1442 #define wins_wstr(w,t) wins_nwstr(w,t,-1)
1444 #define mvadd_wch(y,x,c) mvwadd_wch(stdscr,y,x,c)
1445 #define mvadd_wchnstr(y,x,s,n) mvwadd_wchnstr(stdscr,y,x,s,n)
1446 #define mvadd_wchstr(y,x,s) mvwadd_wchstr(stdscr,y,x,s)
1447 #define mvaddnwstr(y,x,wstr,n) mvwaddnwstr(stdscr,y,x,wstr,n)
1448 #define mvaddwstr(y,x,wstr) mvwaddwstr(stdscr,y,x,wstr)
1449 #define mvget_wch(y,x,c) mvwget_wch(stdscr,y,x,c)
1450 #define mvget_wstr(y,x,t) mvwget_wstr(stdscr,y,x,t)
1451 #define mvgetn_wstr(y,x,t,n) mvwgetn_wstr(stdscr,y,x,t,n)
1452 #define mvhline_set(y,x,c,n) mvwhline_set(stdscr,y,x,c,n)
1453 #define mvin_wch(y,x,c) mvwin_wch(stdscr,y,x,c)
1454 #define mvin_wchnstr(y,x,c,n) mvwin_wchnstr(stdscr,y,x,c,n)
1455 #define mvin_wchstr(y,x,c) mvwin_wchstr(stdscr,y,x,c)
1456 #define mvinnwstr(y,x,c,n) mvwinnwstr(stdscr,y,x,c,n)
1457 #define mvins_nwstr(y,x,t,n) mvwins_nwstr(stdscr,y,x,t,n)
1458 #define mvins_wch(y,x,c) mvwins_wch(stdscr,y,x,c)
1459 #define mvins_wstr(y,x,t) mvwins_wstr(stdscr,y,x,t)
1460 #define mvinwstr(y,x,c) mvwinwstr(stdscr,y,x,c)
1461 #define mvvline_set(y,x,c,n) mvwvline_set(stdscr,y,x,c,n)
1463 #define mvwadd_wch(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : wadd_wch(win,c))
1464 #define mvwadd_wchnstr(win,y,x,s,n) (wmove(win,y,x) == ERR ? ERR : wadd_wchnstr(win,s,n))
1465 #define mvwadd_wchstr(win,y,x,s) (wmove(win,y,x) == ERR ? ERR : wadd_wchstr(win,s))
1466 #define mvwaddnwstr(win,y,x,wstr,n) (wmove(win,y,x) == ERR ? ERR : waddnwstr(win,wstr,n))
1467 #define mvwaddwstr(win,y,x,wstr) (wmove(win,y,x) == ERR ? ERR : waddwstr(win,wstr))
1468 #define mvwget_wch(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : wget_wch(win,c))
1469 #define mvwget_wstr(win,y,x,t) (wmove(win,y,x) == ERR ? ERR : wget_wstr(win,t))
1470 #define mvwgetn_wstr(win,y,x,t,n) (wmove(win,y,x) == ERR ? ERR : wgetn_wstr(win,t,n))
1471 #define mvwhline_set(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : whline_set(win,c,n))
1472 #define mvwin_wch(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : win_wch(win,c))
1473 #define mvwin_wchnstr(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : win_wchnstr(win,c,n))
1474 #define mvwin_wchstr(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : win_wchstr(win,c))
1475 #define mvwinnwstr(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : winnwstr(win,c,n))
1476 #define mvwins_nwstr(win,y,x,t,n) (wmove(win,y,x) == ERR ? ERR : wins_nwstr(win,t,n))
1477 #define mvwins_wch(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : wins_wch(win,c))
1478 #define mvwins_wstr(win,y,x,t) (wmove(win,y,x) == ERR ? ERR : wins_wstr(win,t))
1479 #define mvwinwstr(win,y,x,c) (wmove(win,y,x) == ERR ? ERR : winwstr(win,c))
1480 #define mvwvline_set(win,y,x,c,n) (wmove(win,y,x) == ERR ? ERR : wvline_set(win,c,n))
1482 #endif /* NCURSES_NOMACROS */
1484 #if defined(TRACE) || defined(NCURSES_TEST)
1485 extern NCURSES_EXPORT(const char *) _nc_viswbuf(const wchar_t *);
1486 extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
1489 #endif /* _XOPEN_SOURCE_EXTENDED */
1491 * This file is part of ncurses, designed to be appended after curses.h.in
1492 * (see that file for the relevant copyright).
1494 /* $Id: curses.tail,v 1.14 2006/05/27 16:28:29 tom Exp $ */
1496 /* mouse interface */
1498 #ifdef NCURSES_MOUSE_VERSION
1499 #if NCURSES_MOUSE_VERSION > 1
1500 #define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 5))
1502 #define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 6))
1505 #define NCURSES_BUTTON_RELEASED 001L
1506 #define NCURSES_BUTTON_PRESSED 002L
1507 #define NCURSES_BUTTON_CLICKED 004L
1508 #define NCURSES_DOUBLE_CLICKED 010L
1509 #define NCURSES_TRIPLE_CLICKED 020L
1510 #define NCURSES_RESERVED_EVENT 040L
1513 #define BUTTON1_RELEASED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_RELEASED)
1514 #define BUTTON1_PRESSED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_PRESSED)
1515 #define BUTTON1_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_CLICKED)
1516 #define BUTTON1_DOUBLE_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_DOUBLE_CLICKED)
1517 #define BUTTON1_TRIPLE_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_TRIPLE_CLICKED)
1519 #define BUTTON2_RELEASED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_RELEASED)
1520 #define BUTTON2_PRESSED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_PRESSED)
1521 #define BUTTON2_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_CLICKED)
1522 #define BUTTON2_DOUBLE_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_DOUBLE_CLICKED)
1523 #define BUTTON2_TRIPLE_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_TRIPLE_CLICKED)
1525 #define BUTTON3_RELEASED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_RELEASED)
1526 #define BUTTON3_PRESSED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_PRESSED)
1527 #define BUTTON3_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_CLICKED)
1528 #define BUTTON3_DOUBLE_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_DOUBLE_CLICKED)
1529 #define BUTTON3_TRIPLE_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_TRIPLE_CLICKED)
1531 #define BUTTON4_RELEASED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_RELEASED)
1532 #define BUTTON4_PRESSED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_PRESSED)
1533 #define BUTTON4_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_CLICKED)
1534 #define BUTTON4_DOUBLE_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_DOUBLE_CLICKED)
1535 #define BUTTON4_TRIPLE_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_TRIPLE_CLICKED)
1538 * In 32 bits the version-1 scheme does not provide enough space for a 5th
1539 * button, unless we choose to change the ABI by omitting the reserved-events.
1541 #if NCURSES_MOUSE_VERSION > 1
1543 #define BUTTON5_RELEASED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_RELEASED)
1544 #define BUTTON5_PRESSED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_PRESSED)
1545 #define BUTTON5_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_CLICKED)
1546 #define BUTTON5_DOUBLE_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_DOUBLE_CLICKED)
1547 #define BUTTON5_TRIPLE_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_TRIPLE_CLICKED)
1549 #define BUTTON_CTRL NCURSES_MOUSE_MASK(6, 0001L)
1550 #define BUTTON_SHIFT NCURSES_MOUSE_MASK(6, 0002L)
1551 #define BUTTON_ALT NCURSES_MOUSE_MASK(6, 0004L)
1552 #define REPORT_MOUSE_POSITION NCURSES_MOUSE_MASK(6, 0010L)
1556 #define BUTTON1_RESERVED_EVENT NCURSES_MOUSE_MASK(1, NCURSES_RESERVED_EVENT)
1557 #define BUTTON2_RESERVED_EVENT NCURSES_MOUSE_MASK(2, NCURSES_RESERVED_EVENT)
1558 #define BUTTON3_RESERVED_EVENT NCURSES_MOUSE_MASK(3, NCURSES_RESERVED_EVENT)
1559 #define BUTTON4_RESERVED_EVENT NCURSES_MOUSE_MASK(4, NCURSES_RESERVED_EVENT)
1561 #define BUTTON_CTRL NCURSES_MOUSE_MASK(5, 0001L)
1562 #define BUTTON_SHIFT NCURSES_MOUSE_MASK(5, 0002L)
1563 #define BUTTON_ALT NCURSES_MOUSE_MASK(5, 0004L)
1564 #define REPORT_MOUSE_POSITION NCURSES_MOUSE_MASK(5, 0010L)
1568 #define ALL_MOUSE_EVENTS (REPORT_MOUSE_POSITION - 1)
1570 /* macros to extract single event-bits from masks */
1571 #define BUTTON_RELEASE(e, x) ((e) & (001 << (6 * ((x) - 1))))
1572 #define BUTTON_PRESS(e, x) ((e) & (002 << (6 * ((x) - 1))))
1573 #define BUTTON_CLICK(e, x) ((e) & (004 << (6 * ((x) - 1))))
1574 #define BUTTON_DOUBLE_CLICK(e, x) ((e) & (010 << (6 * ((x) - 1))))
1575 #define BUTTON_TRIPLE_CLICK(e, x) ((e) & (020 << (6 * ((x) - 1))))
1576 #define BUTTON_RESERVED_EVENT(e, x) ((e) & (040 << (6 * ((x) - 1))))
1580 short id
; /* ID to distinguish multiple devices */
1581 int x
, y
, z
; /* event coordinates (character-cell) */
1582 mmask_t bstate
; /* button state bits */
1586 extern NCURSES_EXPORT(int) getmouse (MEVENT
*);
1587 extern NCURSES_EXPORT(int) ungetmouse (MEVENT
*);
1588 extern NCURSES_EXPORT(mmask_t
) mousemask (mmask_t
, mmask_t
*);
1589 extern NCURSES_EXPORT(bool) wenclose (const WINDOW
*, int, int);
1590 extern NCURSES_EXPORT(int) mouseinterval (int);
1591 extern NCURSES_EXPORT(bool) wmouse_trafo (const WINDOW
*, int*, int*, bool);
1592 extern NCURSES_EXPORT(bool) mouse_trafo (int*, int*, bool); /* generated */
1594 #define mouse_trafo(y,x,to_screen) wmouse_trafo(stdscr,y,x,to_screen)
1597 /* other non-XSI functions */
1599 extern NCURSES_EXPORT(int) mcprint (char *, int); /* direct data to printer */
1600 extern NCURSES_EXPORT(int) has_key (int); /* do we have given key? */
1602 /* Debugging : use with libncurses_g.a */
1604 extern NCURSES_EXPORT(void) _tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1605 extern NCURSES_EXPORT(void) _tracedump (const char *, WINDOW
*);
1606 extern NCURSES_EXPORT(char *) _traceattr (attr_t
);
1607 extern NCURSES_EXPORT(char *) _traceattr2 (int, chtype
);
1608 extern NCURSES_EXPORT(char *) _nc_tracebits (void);
1609 extern NCURSES_EXPORT(char *) _tracechar (int);
1610 extern NCURSES_EXPORT(char *) _tracechtype (chtype
);
1611 extern NCURSES_EXPORT(char *) _tracechtype2 (int, chtype
);
1612 #ifdef _XOPEN_SOURCE_EXTENDED
1613 #define _tracech_t _tracecchar_t
1614 extern NCURSES_EXPORT(char *) _tracecchar_t (const cchar_t
*);
1615 #define _tracech_t2 _tracecchar_t2
1616 extern NCURSES_EXPORT(char *) _tracecchar_t2 (int, const cchar_t
*);
1618 #define _tracech_t _tracechtype
1619 #define _tracech_t2 _tracechtype2
1621 #ifdef NCURSES_MOUSE_VERSION
1622 extern NCURSES_EXPORT(char *) _tracemouse (const MEVENT
*);
1624 extern NCURSES_EXPORT(void) trace (const unsigned int);
1627 #define TRACE_DISABLE 0x0000 /* turn off tracing */
1628 #define TRACE_TIMES 0x0001 /* trace user and system times of updates */
1629 #define TRACE_TPUTS 0x0002 /* trace tputs calls */
1630 #define TRACE_UPDATE 0x0004 /* trace update actions, old & new screens */
1631 #define TRACE_MOVE 0x0008 /* trace cursor moves and scrolls */
1632 #define TRACE_CHARPUT 0x0010 /* trace all character outputs */
1633 #define TRACE_ORDINARY 0x001F /* trace all update actions */
1634 #define TRACE_CALLS 0x0020 /* trace all curses calls */
1635 #define TRACE_VIRTPUT 0x0040 /* trace virtual character puts */
1636 #define TRACE_IEVENT 0x0080 /* trace low-level input processing */
1637 #define TRACE_BITS 0x0100 /* trace state of TTY control bits */
1638 #define TRACE_ICALLS 0x0200 /* trace internal/nested calls */
1639 #define TRACE_CCALLS 0x0400 /* trace per-character calls */
1640 #define TRACE_DATABASE 0x0800 /* trace read/write of terminfo/termcap data */
1641 #define TRACE_ATTRS 0x1000 /* trace attribute updates */
1643 #define TRACE_SHIFT 13 /* number of bits in the trace masks */
1644 #define TRACE_MAXIMUM ((1 << TRACE_SHIFT) - 1) /* maximum trace level */
1646 #if defined(TRACE) || defined(NCURSES_TEST)
1647 extern NCURSES_EXPORT_VAR(int) _nc_optimize_enable
; /* enable optimizations */
1648 extern NCURSES_EXPORT(const char *) _nc_visbuf (const char *);
1649 #define OPTIMIZE_MVCUR 0x01 /* cursor movement optimization */
1650 #define OPTIMIZE_HASHMAP 0x02 /* diff hashing to detect scrolls */
1651 #define OPTIMIZE_SCROLL 0x04 /* scroll optimization */
1652 #define OPTIMIZE_ALL 0xff /* enable all optimizations (dflt) */
1657 #ifndef NCURSES_NOMACROS
1659 /* these names conflict with STL */
1666 #endif /* NCURSES_NOMACROS */
1671 /* Local functions not defined in normal curses */
1673 void curses_enable_vga(int);
1674 void curses_enable_serial(int);
1676 int curses_vga_enabled(void);
1677 int curses_serial_enabled(void);
1679 #endif /* _CURSES_H */