1/****************************************************************************
2 * Copyright (c) 1998-2016,2017 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
28
29/****************************************************************************
30 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
31 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
32 * and: Thomas E. Dickey 1996-on *
33 ****************************************************************************/
34
35/* $Id: curses.h.in,v 1.257 2017/11/21 00:11:37 tom Exp $ */
36
37#ifndef __NCURSES_H
38#define __NCURSES_H
39
40#define CURSES 1
41#define CURSES_H 1
42
43/* These are defined only in curses.h, and are used for conditional compiles */
44#define NCURSES_VERSION_MAJOR 6
45#define NCURSES_VERSION_MINOR 1
46#define NCURSES_VERSION_PATCH 20180127
47
48/* This is defined in more than one ncurses header, for identification */
49#undef NCURSES_VERSION
50#define NCURSES_VERSION "6.1"
51
52/*
53 * Identify the mouse encoding version.
54 */
55#define NCURSES_MOUSE_VERSION 1
56
57/*
58 * Definitions to facilitate DLL's.
59 */
60#include <ncurses_dll.h>
61
62#if 1
63#include <stdint.h>
64#endif
65
66/*
67 * User-definable tweak to disable the include of <stdbool.h>.
68 */
69#ifndef NCURSES_ENABLE_STDBOOL_H
70#define NCURSES_ENABLE_STDBOOL_H 1
71#endif
72
73/*
74 * NCURSES_ATTR_T is used to quiet compiler warnings when building ncurses
75 * configured using --disable-macros.
76 */
77#ifndef NCURSES_ATTR_T
78#define NCURSES_ATTR_T int
79#endif
80
81/*
82 * Expands to 'const' if ncurses is configured using --enable-const. Note that
83 * doing so makes it incompatible with other implementations of X/Open Curses.
84 */
85#undef NCURSES_CONST
86#define NCURSES_CONST const
87
88#undef NCURSES_INLINE
89#define NCURSES_INLINE inline
90
91/*
92 * The standard type used for color values, and for color-pairs. The latter
93 * allows the curses library to enumerate the combinations of foreground and
94 * background colors used by an application, and is normally the product of the
95 * total foreground and background colors.
96 *
97 * X/Open uses "short" for both of these types, ultimately because they are
98 * numbers from the SVr4 terminal database, which uses 16-bit signed values.
99 */
100#undef NCURSES_COLOR_T
101#define NCURSES_COLOR_T short
102
103#undef NCURSES_PAIRS_T
104#define NCURSES_PAIRS_T short
105
106/*
107 * Definitions used to make WINDOW and similar structs opaque.
108 */
109#ifndef NCURSES_INTERNALS
110#define NCURSES_OPAQUE 0
111#define NCURSES_OPAQUE_FORM 0
112#define NCURSES_OPAQUE_MENU 0
113#define NCURSES_OPAQUE_PANEL 0
114#endif
115
116/*
117 * Definition used to optionally suppress wattr* macros to help with the
118 * transition from ncurses5 to ncurses6 by allowing the header files to
119 * be shared across development packages for ncursesw in both ABIs.
120 */
121#ifndef NCURSES_WATTR_MACROS
122#define NCURSES_WATTR_MACROS 1
123#endif
124
125/*
126 * The reentrant code relies on the opaque setting, but adds features.
127 */
128#ifndef NCURSES_REENTRANT
129#define NCURSES_REENTRANT 0
130#endif
131
132/*
133 * Control whether bindings for interop support are added.
134 */
135#undef NCURSES_INTEROP_FUNCS
136#define NCURSES_INTEROP_FUNCS 0
137
138/*
139 * The internal type used for window dimensions.
140 */
141#undef NCURSES_SIZE_T
142#define NCURSES_SIZE_T short
143
144/*
145 * Control whether tparm() supports varargs or fixed-parameter list.
146 */
147#undef NCURSES_TPARM_VARARGS
148#define NCURSES_TPARM_VARARGS 1
149
150/*
151 * Control type used for tparm's arguments. While X/Open equates long and
152 * char* values, this is not always workable for 64-bit platforms.
153 */
154#undef NCURSES_TPARM_ARG
155#define NCURSES_TPARM_ARG long
156
157/*
158 * Control whether ncurses uses wcwidth() for checking width of line-drawing
159 * characters.
160 */
161#undef NCURSES_WCWIDTH_GRAPHICS
162#define NCURSES_WCWIDTH_GRAPHICS 1
163
164/*
165 * NCURSES_CH_T is used in building the library, but not used otherwise in
166 * this header file, since that would make the normal/wide-character versions
167 * of the header incompatible.
168 */
169#undef NCURSES_CH_T
170#define NCURSES_CH_T chtype
171
172#if 0 && defined(_LP64)
173typedef unsigned chtype;
174typedef unsigned mmask_t;
175#else
176typedef unsigned long chtype;
177typedef unsigned long mmask_t;
178#endif
179
180/*
181 * We need FILE, etc. Include this before checking any feature symbols.
182 */
183#include <stdio.h>
184
185/*
186 * With XPG4, you must define _XOPEN_SOURCE_EXTENDED, it is redundant (or
187 * conflicting) when _XOPEN_SOURCE is 500 or greater. If NCURSES_WIDECHAR is
188 * not already defined, e.g., if the platform relies upon nonstandard feature
189 * test macros, define it at this point if the standard feature test macros
190 * indicate that it should be defined.
191 */
192#ifndef NCURSES_WIDECHAR
193#if defined(_XOPEN_SOURCE_EXTENDED) || (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE - 0 >= 500))
194#define NCURSES_WIDECHAR 1
195#else
196#define NCURSES_WIDECHAR 0
197#endif
198#endif /* NCURSES_WIDECHAR */
199
200#include <stdarg.h> /* we need va_list */
201#if NCURSES_WIDECHAR
202#include <stddef.h> /* we want wchar_t */
203#endif
204
205/* X/Open and SVr4 specify that curses implements 'bool'. However, C++ may also
206 * implement it. If so, we must use the C++ compiler's type to avoid conflict
207 * with other interfaces.
208 *
209 * A further complication is that <stdbool.h> may declare 'bool' to be a
210 * different type, such as an enum which is not necessarily compatible with
211 * C++. If we have <stdbool.h>, make 'bool' a macro, so users may #undef it.
212 * Otherwise, let it remain a typedef to avoid conflicts with other #define's.
213 * In either case, make a typedef for NCURSES_BOOL which can be used if needed
214 * from either C or C++.
215 */
216
217#undef TRUE
218#define TRUE 1
219
220#undef FALSE
221#define FALSE 0
222
223typedef unsigned char NCURSES_BOOL;
224
225#if defined(__cplusplus) /* __cplusplus, etc. */
226
227/* use the C++ compiler's bool type */
228#define NCURSES_BOOL bool
229
230#else /* c89, c99, etc. */
231
232#if NCURSES_ENABLE_STDBOOL_H
233#include <stdbool.h>
234/* use whatever the C compiler decides bool really is */
235#define NCURSES_BOOL bool
236#else
237/* there is no predefined bool - use our own */
238#undef bool
239#define bool NCURSES_BOOL
240#endif
241
242#endif /* !__cplusplus, etc. */
243
244#ifdef __cplusplus
245extern "C" {
246#define NCURSES_CAST(type,value) static_cast<type>(value)
247#else
248#define NCURSES_CAST(type,value) (type)(value)
249#endif
250
251#define NCURSES_OK_ADDR(p) (0 != NCURSES_CAST(const void *, (p)))
252
253/*
254 * X/Open attributes. In the ncurses implementation, they are identical to the
255 * A_ attributes.
256 */
257#define WA_ATTRIBUTES A_ATTRIBUTES
258#define WA_NORMAL A_NORMAL
259#define WA_STANDOUT A_STANDOUT
260#define WA_UNDERLINE A_UNDERLINE
261#define WA_REVERSE A_REVERSE
262#define WA_BLINK A_BLINK
263#define WA_DIM A_DIM
264#define WA_BOLD A_BOLD
265#define WA_ALTCHARSET A_ALTCHARSET
266#define WA_INVIS A_INVIS
267#define WA_PROTECT A_PROTECT
268#define WA_HORIZONTAL A_HORIZONTAL
269#define WA_LEFT A_LEFT
270#define WA_LOW A_LOW
271#define WA_RIGHT A_RIGHT
272#define WA_TOP A_TOP
273#define WA_VERTICAL A_VERTICAL
274
275#if 1
276#define WA_ITALIC A_ITALIC /* ncurses extension */
277#endif
278
279/* colors */
280#define COLOR_BLACK 0
281#define COLOR_RED 1
282#define COLOR_GREEN 2
283#define COLOR_YELLOW 3
284#define COLOR_BLUE 4
285#define COLOR_MAGENTA 5
286#define COLOR_CYAN 6
287#define COLOR_WHITE 7
288
289/* line graphics */
290
291#if 0 || NCURSES_REENTRANT
292NCURSES_WRAPPED_VAR(chtype*, acs_map);
293#define acs_map NCURSES_PUBLIC_VAR(acs_map())
294#else
295extern NCURSES_EXPORT_VAR(chtype) acs_map[];
296#endif
297
298#define NCURSES_ACS(c) (acs_map[NCURSES_CAST(unsigned char,(c))])
299
300/* VT100 symbols begin here */
301#define ACS_ULCORNER NCURSES_ACS('l') /* upper left corner */
302#define ACS_LLCORNER NCURSES_ACS('m') /* lower left corner */
303#define ACS_URCORNER NCURSES_ACS('k') /* upper right corner */
304#define ACS_LRCORNER NCURSES_ACS('j') /* lower right corner */
305#define ACS_LTEE NCURSES_ACS('t') /* tee pointing right */
306#define ACS_RTEE NCURSES_ACS('u') /* tee pointing left */
307#define ACS_BTEE NCURSES_ACS('v') /* tee pointing up */
308#define ACS_TTEE NCURSES_ACS('w') /* tee pointing down */
309#define ACS_HLINE NCURSES_ACS('q') /* horizontal line */
310#define ACS_VLINE NCURSES_ACS('x') /* vertical line */
311#define ACS_PLUS NCURSES_ACS('n') /* large plus or crossover */
312#define ACS_S1 NCURSES_ACS('o') /* scan line 1 */
313#define ACS_S9 NCURSES_ACS('s') /* scan line 9 */
314#define ACS_DIAMOND NCURSES_ACS('`') /* diamond */
315#define ACS_CKBOARD NCURSES_ACS('a') /* checker board (stipple) */
316#define ACS_DEGREE NCURSES_ACS('f') /* degree symbol */
317#define ACS_PLMINUS NCURSES_ACS('g') /* plus/minus */
318#define ACS_BULLET NCURSES_ACS('~') /* bullet */
319/* Teletype 5410v1 symbols begin here */
320#define ACS_LARROW NCURSES_ACS(',') /* arrow pointing left */
321#define ACS_RARROW NCURSES_ACS('+') /* arrow pointing right */
322#define ACS_DARROW NCURSES_ACS('.') /* arrow pointing down */
323#define ACS_UARROW NCURSES_ACS('-') /* arrow pointing up */
324#define ACS_BOARD NCURSES_ACS('h') /* board of squares */
325#define ACS_LANTERN NCURSES_ACS('i') /* lantern symbol */
326#define ACS_BLOCK NCURSES_ACS('0') /* solid square block */
327/*
328 * These aren't documented, but a lot of System Vs have them anyway
329 * (you can spot pprryyzz{{||}} in a lot of AT&T terminfo strings).
330 * The ACS_names may not match AT&T's, our source didn't know them.
331 */
332#define ACS_S3 NCURSES_ACS('p') /* scan line 3 */
333#define ACS_S7 NCURSES_ACS('r') /* scan line 7 */
334#define ACS_LEQUAL NCURSES_ACS('y') /* less/equal */
335#define ACS_GEQUAL NCURSES_ACS('z') /* greater/equal */
336#define ACS_PI NCURSES_ACS('{') /* Pi */
337#define ACS_NEQUAL NCURSES_ACS('|') /* not equal */
338#define ACS_STERLING NCURSES_ACS('}') /* UK pound sign */
339
340/*
341 * Line drawing ACS names are of the form ACS_trbl, where t is the top, r
342 * is the right, b is the bottom, and l is the left. t, r, b, and l might
343 * be B (blank), S (single), D (double), or T (thick). The subset defined
344 * here only uses B and S.
345 */
346#define ACS_BSSB ACS_ULCORNER
347#define ACS_SSBB ACS_LLCORNER
348#define ACS_BBSS ACS_URCORNER
349#define ACS_SBBS ACS_LRCORNER
350#define ACS_SBSS ACS_RTEE
351#define ACS_SSSB ACS_LTEE
352#define ACS_SSBS ACS_BTEE
353#define ACS_BSSS ACS_TTEE
354#define ACS_BSBS ACS_HLINE
355#define ACS_SBSB ACS_VLINE
356#define ACS_SSSS ACS_PLUS
357
358#undef ERR
359#define ERR (-1)
360
361#undef OK
362#define OK (0)
363
364/* values for the _flags member */
365#define _SUBWIN 0x01 /* is this a sub-window? */
366#define _ENDLINE 0x02 /* is the window flush right? */
367#define _FULLWIN 0x04 /* is the window full-screen? */
368#define _SCROLLWIN 0x08 /* bottom edge is at screen bottom? */
369#define _ISPAD 0x10 /* is this window a pad? */
370#define _HASMOVED 0x20 /* has cursor moved since last refresh? */
371#define _WRAPPED 0x40 /* cursor was just wrappped */
372
373/*
374 * this value is used in the firstchar and lastchar fields to mark
375 * unchanged lines
376 */
377#define _NOCHANGE -1
378
379/*
380 * this value is used in the oldindex field to mark lines created by insertions
381 * and scrolls.
382 */
383#define _NEWINDEX -1
384
385typedef struct screen SCREEN;
386typedef struct _win_st WINDOW;
387
388typedef chtype attr_t; /* ...must be at least as wide as chtype */
389
390#if NCURSES_WIDECHAR
391
392#if 0
393#ifdef mblen /* libutf8.h defines it w/o undefining first */
394#undef mblen
395#endif
396#include <libutf8.h>
397#endif
398
399#if 0
400#include <wchar.h> /* ...to get mbstate_t, etc. */
401#endif
402
403#if 0
404typedef unsigned short wchar_t;
405#endif
406
407#if 0
408typedef unsigned int wint_t;
409#endif
410
411/*
412 * cchar_t stores an array of CCHARW_MAX wide characters. The first is
413 * normally a spacing character. The others are non-spacing. If those
414 * (spacing and nonspacing) do not fill the array, a null L'\0' follows.
415 * Otherwise, a null is assumed to follow when extracting via getcchar().
416 */
417#define CCHARW_MAX 5
418typedef struct
419{
420 attr_t attr;
421 wchar_t chars[CCHARW_MAX];
422#if 0
423#undef NCURSES_EXT_COLORS
424#define NCURSES_EXT_COLORS 20180127
425 int ext_color; /* color pair, must be more than 16-bits */
426#endif
427}
428cchar_t;
429
430#endif /* NCURSES_WIDECHAR */
431
432#if !NCURSES_OPAQUE
433struct ldat;
434
435struct _win_st
436{
437 NCURSES_SIZE_T _cury, _curx; /* current cursor position */
438
439 /* window location and size */
440 NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
441 NCURSES_SIZE_T _begy, _begx; /* screen coords of upper-left-hand corner */
442
443 short _flags; /* window state flags */
444
445 /* attribute tracking */
446 attr_t _attrs; /* current attribute for non-space character */
447 chtype _bkgd; /* current background char/attribute pair */
448
449 /* option values set by user */
450 bool _notimeout; /* no time out on function-key entry? */
451 bool _clear; /* consider all data in the window invalid? */
452 bool _leaveok; /* OK to not reset cursor on exit? */
453 bool _scroll; /* OK to scroll this window? */
454 bool _idlok; /* OK to use insert/delete line? */
455 bool _idcok; /* OK to use insert/delete char? */
456 bool _immed; /* window in immed mode? (not yet used) */
457 bool _sync; /* window in sync mode? */
458 bool _use_keypad; /* process function keys into KEY_ symbols? */
459 int _delay; /* 0 = nodelay, <0 = blocking, >0 = delay */
460
461 struct ldat *_line; /* the actual line data */
462
463 /* global screen state */
464 NCURSES_SIZE_T _regtop; /* top line of scrolling region */
465 NCURSES_SIZE_T _regbottom; /* bottom line of scrolling region */
466
467 /* these are used only if this is a sub-window */
468 int _parx; /* x coordinate of this window in parent */
469 int _pary; /* y coordinate of this window in parent */
470 WINDOW *_parent; /* pointer to parent if a sub-window */
471
472 /* these are used only if this is a pad */
473 struct pdat
474 {
475 NCURSES_SIZE_T _pad_y, _pad_x;
476 NCURSES_SIZE_T _pad_top, _pad_left;
477 NCURSES_SIZE_T _pad_bottom, _pad_right;
478 } _pad;
479
480 NCURSES_SIZE_T _yoffset; /* real begy is _begy + _yoffset */
481
482#if NCURSES_WIDECHAR
483 cchar_t _bkgrnd; /* current background char/attribute pair */
484#if 0
485 int _color; /* current color-pair for non-space character */
486#endif
487#endif
488};
489#endif /* NCURSES_OPAQUE */
490
491/*
492 * This is an extension to support events...
493 */
494#if 1
495#ifdef NCURSES_WGETCH_EVENTS
496#if !defined(__BEOS__) || defined(__HAIKU__)
497 /* Fix _nc_timed_wait() on BEOS... */
498# define NCURSES_EVENT_VERSION 1
499#endif /* !defined(__BEOS__) */
500
501/*
502 * Bits to set in _nc_event.data.flags
503 */
504# define _NC_EVENT_TIMEOUT_MSEC 1
505# define _NC_EVENT_FILE 2
506# define _NC_EVENT_FILE_READABLE 2
507# if 0 /* Not supported yet... */
508# define _NC_EVENT_FILE_WRITABLE 4
509# define _NC_EVENT_FILE_EXCEPTION 8
510# endif
511
512typedef struct
513{
514 int type;
515 union
516 {
517 long timeout_msec; /* _NC_EVENT_TIMEOUT_MSEC */
518 struct
519 {
520 unsigned int flags;
521 int fd;
522 unsigned int result;
523 } fev; /* _NC_EVENT_FILE */
524 } data;
525} _nc_event;
526
527typedef struct
528{
529 int count;
530 int result_flags; /* _NC_EVENT_TIMEOUT_MSEC or _NC_EVENT_FILE_READABLE */
531 _nc_event *events[1];
532} _nc_eventlist;
533
534extern NCURSES_EXPORT(int) wgetch_events (WINDOW *, _nc_eventlist *); /* experimental */
535extern NCURSES_EXPORT(int) wgetnstr_events (WINDOW *,char *,int,_nc_eventlist *);/* experimental */
536
537#endif /* NCURSES_WGETCH_EVENTS */
538#endif /* NCURSES_EXT_FUNCS */
539
540/*
541 * GCC (and some other compilers) define '__attribute__'; we're using this
542 * macro to alert the compiler to flag inconsistencies in printf/scanf-like
543 * function calls. Just in case '__attribute__' isn't defined, make a dummy.
544 * Old versions of G++ do not accept it anyway, at least not consistently with
545 * GCC.
546 */
547#if !(defined(__GNUC__) || defined(__GNUG__) || defined(__attribute__))
548#define __attribute__(p) /* nothing */
549#endif
550
551/*
552 * We cannot define these in ncurses_cfg.h, since they require parameters to be
553 * passed (that is non-portable). If you happen to be using gcc with warnings
554 * enabled, define
555 * GCC_PRINTF
556 * GCC_SCANF
557 * to improve checking of calls to printw(), etc.
558 */
559#ifndef GCC_PRINTFLIKE
560#if defined(GCC_PRINTF) && !defined(printf)
561#define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
562#else
563#define GCC_PRINTFLIKE(fmt,var) /*nothing*/
564#endif
565#endif
566
567#ifndef GCC_SCANFLIKE
568#if defined(GCC_SCANF) && !defined(scanf)
569#define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
570#else
571#define GCC_SCANFLIKE(fmt,var) /*nothing*/
572#endif
573#endif
574
575#ifndef GCC_NORETURN
576#define GCC_NORETURN /* nothing */
577#endif
578
579#ifndef GCC_UNUSED
580#define GCC_UNUSED /* nothing */
581#endif
582
583/*
584 * Curses uses a helper function. Define our type for this to simplify
585 * extending it for the sp-funcs feature.
586 */
587typedef int (*NCURSES_OUTC)(int);
588
589/*
590 * Function prototypes. This is the complete X/Open Curses list of required
591 * functions. Those marked `generated' will have sources generated from the
592 * macro definitions later in this file, in order to satisfy XPG4.2
593 * requirements.
594 */
595
596extern NCURSES_EXPORT(int) addch (const chtype); /* generated */
597extern NCURSES_EXPORT(int) addchnstr (const chtype *, int); /* generated */
598extern NCURSES_EXPORT(int) addchstr (const chtype *); /* generated */
599extern NCURSES_EXPORT(int) addnstr (const char *, int); /* generated */
600extern NCURSES_EXPORT(int) addstr (const char *); /* generated */
601extern NCURSES_EXPORT(int) attroff (NCURSES_ATTR_T); /* generated */
602extern NCURSES_EXPORT(int) attron (NCURSES_ATTR_T); /* generated */
603extern NCURSES_EXPORT(int) attrset (NCURSES_ATTR_T); /* generated */
604extern NCURSES_EXPORT(int) attr_get (attr_t *, NCURSES_PAIRS_T *, void *); /* generated */
605extern NCURSES_EXPORT(int) attr_off (attr_t, void *); /* generated */
606extern NCURSES_EXPORT(int) attr_on (attr_t, void *); /* generated */
607extern NCURSES_EXPORT(int) attr_set (attr_t, NCURSES_PAIRS_T, void *); /* generated */
608extern NCURSES_EXPORT(int) baudrate (void); /* implemented */
609extern NCURSES_EXPORT(int) beep (void); /* implemented */
610extern NCURSES_EXPORT(int) bkgd (chtype); /* generated */
611extern NCURSES_EXPORT(void) bkgdset (chtype); /* generated */
612extern NCURSES_EXPORT(int) border (chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* generated */
613extern NCURSES_EXPORT(int) box (WINDOW *, chtype, chtype); /* generated */
614extern NCURSES_EXPORT(bool) can_change_color (void); /* implemented */
615extern NCURSES_EXPORT(int) cbreak (void); /* implemented */
616extern NCURSES_EXPORT(int) chgat (int, attr_t, NCURSES_PAIRS_T, const void *); /* generated */
617extern NCURSES_EXPORT(int) clear (void); /* generated */
618extern NCURSES_EXPORT(int) clearok (WINDOW *,bool); /* implemented */
619extern NCURSES_EXPORT(int) clrtobot (void); /* generated */
620extern NCURSES_EXPORT(int) clrtoeol (void); /* generated */
621extern NCURSES_EXPORT(int) color_content (NCURSES_COLOR_T,NCURSES_COLOR_T*,NCURSES_COLOR_T*,NCURSES_COLOR_T*); /* implemented */
622extern NCURSES_EXPORT(int) color_set (NCURSES_PAIRS_T,void*); /* generated */
623extern NCURSES_EXPORT(int) COLOR_PAIR (int); /* generated */
624extern NCURSES_EXPORT(int) copywin (const WINDOW*,WINDOW*,int,int,int,int,int,int,int); /* implemented */
625extern NCURSES_EXPORT(int) curs_set (int); /* implemented */
626extern NCURSES_EXPORT(int) def_prog_mode (void); /* implemented */
627extern NCURSES_EXPORT(int) def_shell_mode (void); /* implemented */
628extern NCURSES_EXPORT(int) delay_output (int); /* implemented */
629extern NCURSES_EXPORT(int) delch (void); /* generated */
630extern NCURSES_EXPORT(void) delscreen (SCREEN *); /* implemented */
631extern NCURSES_EXPORT(int) delwin (WINDOW *); /* implemented */
632extern NCURSES_EXPORT(int) deleteln (void); /* generated */
633extern NCURSES_EXPORT(WINDOW *) derwin (WINDOW *,int,int,int,int); /* implemented */
634extern NCURSES_EXPORT(int) doupdate (void); /* implemented */
635extern NCURSES_EXPORT(WINDOW *) dupwin (WINDOW *); /* implemented */
636extern NCURSES_EXPORT(int) echo (void); /* implemented */
637extern NCURSES_EXPORT(int) echochar (const chtype); /* generated */
638extern NCURSES_EXPORT(int) erase (void); /* generated */
639extern NCURSES_EXPORT(int) endwin (void); /* implemented */
640extern NCURSES_EXPORT(char) erasechar (void); /* implemented */
641extern NCURSES_EXPORT(void) filter (void); /* implemented */
642extern NCURSES_EXPORT(int) flash (void); /* implemented */
643extern NCURSES_EXPORT(int) flushinp (void); /* implemented */
644extern NCURSES_EXPORT(chtype) getbkgd (WINDOW *); /* generated */
645extern NCURSES_EXPORT(int) getch (void); /* generated */
646extern NCURSES_EXPORT(int) getnstr (char *, int); /* generated */
647extern NCURSES_EXPORT(int) getstr (char *); /* generated */
648extern NCURSES_EXPORT(WINDOW *) getwin (FILE *); /* implemented */
649extern NCURSES_EXPORT(int) halfdelay (int); /* implemented */
650extern NCURSES_EXPORT(bool) has_colors (void); /* implemented */
651extern NCURSES_EXPORT(bool) has_ic (void); /* implemented */
652extern NCURSES_EXPORT(bool) has_il (void); /* implemented */
653extern NCURSES_EXPORT(int) hline (chtype, int); /* generated */
654extern NCURSES_EXPORT(void) idcok (WINDOW *, bool); /* implemented */
655extern NCURSES_EXPORT(int) idlok (WINDOW *, bool); /* implemented */
656extern NCURSES_EXPORT(void) immedok (WINDOW *, bool); /* implemented */
657extern NCURSES_EXPORT(chtype) inch (void); /* generated */
658extern NCURSES_EXPORT(int) inchnstr (chtype *, int); /* generated */
659extern NCURSES_EXPORT(int) inchstr (chtype *); /* generated */
660extern NCURSES_EXPORT(WINDOW *) initscr (void); /* implemented */
661extern NCURSES_EXPORT(int) init_color (NCURSES_COLOR_T,NCURSES_COLOR_T,NCURSES_COLOR_T,NCURSES_COLOR_T); /* implemented */
662extern NCURSES_EXPORT(int) init_pair (NCURSES_PAIRS_T,NCURSES_COLOR_T,NCURSES_COLOR_T); /* implemented */
663extern NCURSES_EXPORT(int) innstr (char *, int); /* generated */
664extern NCURSES_EXPORT(int) insch (chtype); /* generated */
665extern NCURSES_EXPORT(int) insdelln (int); /* generated */
666extern NCURSES_EXPORT(int) insertln (void); /* generated */
667extern NCURSES_EXPORT(int) insnstr (const char *, int); /* generated */
668extern NCURSES_EXPORT(int) insstr (const char *); /* generated */
669extern NCURSES_EXPORT(int) instr (char *); /* generated */
670extern NCURSES_EXPORT(int) intrflush (WINDOW *,bool); /* implemented */
671extern NCURSES_EXPORT(bool) isendwin (void); /* implemented */
672extern NCURSES_EXPORT(bool) is_linetouched (WINDOW *,int); /* implemented */
673extern NCURSES_EXPORT(bool) is_wintouched (WINDOW *); /* implemented */
674extern NCURSES_EXPORT(NCURSES_CONST char *) keyname (int); /* implemented */
675extern NCURSES_EXPORT(int) keypad (WINDOW *,bool); /* implemented */
676extern NCURSES_EXPORT(char) killchar (void); /* implemented */
677extern NCURSES_EXPORT(int) leaveok (WINDOW *,bool); /* implemented */
678extern NCURSES_EXPORT(char *) longname (void); /* implemented */
679extern NCURSES_EXPORT(int) meta (WINDOW *,bool); /* implemented */
680extern NCURSES_EXPORT(int) move (int, int); /* generated */
681extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype); /* generated */
682extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype *, int); /* generated */
683extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype *); /* generated */
684extern NCURSES_EXPORT(int) mvaddnstr (int, int, const char *, int); /* generated */
685extern NCURSES_EXPORT(int) mvaddstr (int, int, const char *); /* generated */
686extern NCURSES_EXPORT(int) mvchgat (int, int, int, attr_t, NCURSES_PAIRS_T, const void *); /* generated */
687extern NCURSES_EXPORT(int) mvcur (int,int,int,int); /* implemented */
688extern NCURSES_EXPORT(int) mvdelch (int, int); /* generated */
689extern NCURSES_EXPORT(int) mvderwin (WINDOW *, int, int); /* implemented */
690extern NCURSES_EXPORT(int) mvgetch (int, int); /* generated */
691extern NCURSES_EXPORT(int) mvgetnstr (int, int, char *, int); /* generated */
692extern NCURSES_EXPORT(int) mvgetstr (int, int, char *); /* generated */
693extern NCURSES_EXPORT(int) mvhline (int, int, chtype, int); /* generated */
694extern NCURSES_EXPORT(chtype) mvinch (int, int); /* generated */
695extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype *, int); /* generated */
696extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype *); /* generated */
697extern NCURSES_EXPORT(int) mvinnstr (int, int, char *, int); /* generated */
698extern NCURSES_EXPORT(int) mvinsch (int, int, chtype); /* generated */
699extern NCURSES_EXPORT(int) mvinsnstr (int, int, const char *, int); /* generated */
700extern NCURSES_EXPORT(int) mvinsstr (int, int, const char *); /* generated */
701extern NCURSES_EXPORT(int) mvinstr (int, int, char *); /* generated */
702extern NCURSES_EXPORT(int) mvprintw (int,int, const char *,...) /* implemented */
703 GCC_PRINTFLIKE(3,4);
704extern NCURSES_EXPORT(int) mvscanw (int,int, NCURSES_CONST char *,...) /* implemented */
705 GCC_SCANFLIKE(3,4);
706extern NCURSES_EXPORT(int) mvvline (int, int, chtype, int); /* generated */
707extern NCURSES_EXPORT(int) mvwaddch (WINDOW *, int, int, const chtype); /* generated */
708extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW *, int, int, const chtype *, int);/* generated */
709extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW *, int, int, const chtype *); /* generated */
710extern NCURSES_EXPORT(int) mvwaddnstr (WINDOW *, int, int, const char *, int); /* generated */
711extern NCURSES_EXPORT(int) mvwaddstr (WINDOW *, int, int, const char *); /* generated */
712extern NCURSES_EXPORT(int) mvwchgat (WINDOW *, int, int, int, attr_t, NCURSES_PAIRS_T, const void *);/* generated */
713extern NCURSES_EXPORT(int) mvwdelch (WINDOW *, int, int); /* generated */
714extern NCURSES_EXPORT(int) mvwgetch (WINDOW *, int, int); /* generated */
715extern NCURSES_EXPORT(int) mvwgetnstr (WINDOW *, int, int, char *, int); /* generated */
716extern NCURSES_EXPORT(int) mvwgetstr (WINDOW *, int, int, char *); /* generated */
717extern NCURSES_EXPORT(int) mvwhline (WINDOW *, int, int, chtype, int); /* generated */
718extern NCURSES_EXPORT(int) mvwin (WINDOW *,int,int); /* implemented */
719extern NCURSES_EXPORT(chtype) mvwinch (WINDOW *, int, int); /* generated */
720extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW *, int, int, chtype *, int); /* generated */
721extern NCURSES_EXPORT(int) mvwinchstr (WINDOW *, int, int, chtype *); /* generated */
722extern NCURSES_EXPORT(int) mvwinnstr (WINDOW *, int, int, char *, int); /* generated */
723extern NCURSES_EXPORT(int) mvwinsch (WINDOW *, int, int, chtype); /* generated */
724extern NCURSES_EXPORT(int) mvwinsnstr (WINDOW *, int, int, const char *, int); /* generated */
725extern NCURSES_EXPORT(int) mvwinsstr (WINDOW *, int, int, const char *); /* generated */
726extern NCURSES_EXPORT(int) mvwinstr (WINDOW *, int, int, char *); /* generated */
727extern NCURSES_EXPORT(int) mvwprintw (WINDOW*,int,int, const char *,...) /* implemented */
728 GCC_PRINTFLIKE(4,5);
729extern NCURSES_EXPORT(int) mvwscanw (WINDOW *,int,int, NCURSES_CONST char *,...) /* implemented */
730 GCC_SCANFLIKE(4,5);
731extern NCURSES_EXPORT(int) mvwvline (WINDOW *,int, int, chtype, int); /* generated */
732extern NCURSES_EXPORT(int) napms (int); /* implemented */
733extern NCURSES_EXPORT(WINDOW *) newpad (int,int); /* implemented */
734extern NCURSES_EXPORT(SCREEN *) newterm (NCURSES_CONST char *,FILE *,FILE *); /* implemented */
735extern NCURSES_EXPORT(WINDOW *) newwin (int,int,int,int); /* implemented */
736extern NCURSES_EXPORT(int) nl (void); /* implemented */
737extern NCURSES_EXPORT(int) nocbreak (void); /* implemented */
738extern NCURSES_EXPORT(int) nodelay (WINDOW *,bool); /* implemented */
739extern NCURSES_EXPORT(int) noecho (void); /* implemented */
740extern NCURSES_EXPORT(int) nonl (void); /* implemented */
741extern NCURSES_EXPORT(void) noqiflush (void); /* implemented */
742extern NCURSES_EXPORT(int) noraw (void); /* implemented */
743extern NCURSES_EXPORT(int) notimeout (WINDOW *,bool); /* implemented */
744extern NCURSES_EXPORT(int) overlay (const WINDOW*,WINDOW *); /* implemented */
745extern NCURSES_EXPORT(int) overwrite (const WINDOW*,WINDOW *); /* implemented */
746extern NCURSES_EXPORT(int) pair_content (NCURSES_PAIRS_T,NCURSES_COLOR_T*,NCURSES_COLOR_T*); /* implemented */
747extern NCURSES_EXPORT(int) PAIR_NUMBER (int); /* generated */
748extern NCURSES_EXPORT(int) pechochar (WINDOW *, const chtype); /* implemented */
749extern NCURSES_EXPORT(int) pnoutrefresh (WINDOW*,int,int,int,int,int,int);/* implemented */
750extern NCURSES_EXPORT(int) prefresh (WINDOW *,int,int,int,int,int,int); /* implemented */
751extern NCURSES_EXPORT(int) printw (const char *,...) /* implemented */
752 GCC_PRINTFLIKE(1,2);
753extern NCURSES_EXPORT(int) putwin (WINDOW *, FILE *); /* implemented */
754extern NCURSES_EXPORT(void) qiflush (void); /* implemented */
755extern NCURSES_EXPORT(int) raw (void); /* implemented */
756extern NCURSES_EXPORT(int) redrawwin (WINDOW *); /* generated */
757extern NCURSES_EXPORT(int) refresh (void); /* generated */
758extern NCURSES_EXPORT(int) resetty (void); /* implemented */
759extern NCURSES_EXPORT(int) reset_prog_mode (void); /* implemented */
760extern NCURSES_EXPORT(int) reset_shell_mode (void); /* implemented */
761extern NCURSES_EXPORT(int) ripoffline (int, int (*)(WINDOW *, int)); /* implemented */
762extern NCURSES_EXPORT(int) savetty (void); /* implemented */
763extern NCURSES_EXPORT(int) scanw (NCURSES_CONST char *,...) /* implemented */
764 GCC_SCANFLIKE(1,2);
765extern NCURSES_EXPORT(int) scr_dump (const char *); /* implemented */
766extern NCURSES_EXPORT(int) scr_init (const char *); /* implemented */
767extern NCURSES_EXPORT(int) scrl (int); /* generated */
768extern NCURSES_EXPORT(int) scroll (WINDOW *); /* generated */
769extern NCURSES_EXPORT(int) scrollok (WINDOW *,bool); /* implemented */
770extern NCURSES_EXPORT(int) scr_restore (const char *); /* implemented */
771extern NCURSES_EXPORT(int) scr_set (const char *); /* implemented */
772extern NCURSES_EXPORT(int) setscrreg (int,int); /* generated */
773extern NCURSES_EXPORT(SCREEN *) set_term (SCREEN *); /* implemented */
774extern NCURSES_EXPORT(int) slk_attroff (const chtype); /* implemented */
775extern NCURSES_EXPORT(int) slk_attr_off (const attr_t, void *); /* generated:WIDEC */
776extern NCURSES_EXPORT(int) slk_attron (const chtype); /* implemented */
777extern NCURSES_EXPORT(int) slk_attr_on (attr_t,void*); /* generated:WIDEC */
778extern NCURSES_EXPORT(int) slk_attrset (const chtype); /* implemented */
779extern NCURSES_EXPORT(attr_t) slk_attr (void); /* implemented */
780extern NCURSES_EXPORT(int) slk_attr_set (const attr_t,NCURSES_PAIRS_T,void*); /* implemented */
781extern NCURSES_EXPORT(int) slk_clear (void); /* implemented */
782extern NCURSES_EXPORT(int) slk_color (NCURSES_PAIRS_T); /* implemented */
783extern NCURSES_EXPORT(int) slk_init (int); /* implemented */
784extern NCURSES_EXPORT(char *) slk_label (int); /* implemented */
785extern NCURSES_EXPORT(int) slk_noutrefresh (void); /* implemented */
786extern NCURSES_EXPORT(int) slk_refresh (void); /* implemented */
787extern NCURSES_EXPORT(int) slk_restore (void); /* implemented */
788extern NCURSES_EXPORT(int) slk_set (int,const char *,int); /* implemented */
789extern NCURSES_EXPORT(int) slk_touch (void); /* implemented */
790extern NCURSES_EXPORT(int) standout (void); /* generated */
791extern NCURSES_EXPORT(int) standend (void); /* generated */
792extern NCURSES_EXPORT(int) start_color (void); /* implemented */
793extern NCURSES_EXPORT(WINDOW *) subpad (WINDOW *, int, int, int, int); /* implemented */
794extern NCURSES_EXPORT(WINDOW *) subwin (WINDOW *, int, int, int, int); /* implemented */
795extern NCURSES_EXPORT(int) syncok (WINDOW *, bool); /* implemented */
796extern NCURSES_EXPORT(chtype) termattrs (void); /* implemented */
797extern NCURSES_EXPORT(char *) termname (void); /* implemented */
798extern NCURSES_EXPORT(void) timeout (int); /* generated */
799extern NCURSES_EXPORT(int) touchline (WINDOW *, int, int); /* generated */
800extern NCURSES_EXPORT(int) touchwin (WINDOW *); /* generated */
801extern NCURSES_EXPORT(int) typeahead (int); /* implemented */
802extern NCURSES_EXPORT(int) ungetch (int); /* implemented */
803extern NCURSES_EXPORT(int) untouchwin (WINDOW *); /* generated */
804extern NCURSES_EXPORT(void) use_env (bool); /* implemented */
805extern NCURSES_EXPORT(void) use_tioctl (bool); /* implemented */
806extern NCURSES_EXPORT(int) vidattr (chtype); /* implemented */
807extern NCURSES_EXPORT(int) vidputs (chtype, NCURSES_OUTC); /* implemented */
808extern NCURSES_EXPORT(int) vline (chtype, int); /* generated */
809extern NCURSES_EXPORT(int) vwprintw (WINDOW *, const char *,va_list); /* implemented */
810extern NCURSES_EXPORT(int) vw_printw (WINDOW *, const char *,va_list); /* generated */
811extern NCURSES_EXPORT(int) vwscanw (WINDOW *, NCURSES_CONST char *,va_list); /* implemented */
812extern NCURSES_EXPORT(int) vw_scanw (WINDOW *, NCURSES_CONST char *,va_list); /* generated */
813extern NCURSES_EXPORT(int) waddch (WINDOW *, const chtype); /* implemented */
814extern NCURSES_EXPORT(int) waddchnstr (WINDOW *,const chtype *,int); /* implemented */
815extern NCURSES_EXPORT(int) waddchstr (WINDOW *,const chtype *); /* generated */
816extern NCURSES_EXPORT(int) waddnstr (WINDOW *,const char *,int); /* implemented */
817extern NCURSES_EXPORT(int) waddstr (WINDOW *,const char *); /* generated */
818extern NCURSES_EXPORT(int) wattron (WINDOW *, int); /* generated */
819extern NCURSES_EXPORT(int) wattroff (WINDOW *, int); /* generated */
820extern NCURSES_EXPORT(int) wattrset (WINDOW *, int); /* generated */
821extern NCURSES_EXPORT(int) wattr_get (WINDOW *, attr_t *, NCURSES_PAIRS_T *, void *); /* generated */
822extern NCURSES_EXPORT(int) wattr_on (WINDOW *, attr_t, void *); /* implemented */
823extern NCURSES_EXPORT(int) wattr_off (WINDOW *, attr_t, void *); /* implemented */
824extern NCURSES_EXPORT(int) wattr_set (WINDOW *, attr_t, NCURSES_PAIRS_T, void *); /* generated */
825extern NCURSES_EXPORT(int) wbkgd (WINDOW *, chtype); /* implemented */
826extern NCURSES_EXPORT(void) wbkgdset (WINDOW *,chtype); /* implemented */
827extern NCURSES_EXPORT(int) wborder (WINDOW *,chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* implemented */
828extern NCURSES_EXPORT(int) wchgat (WINDOW *, int, attr_t, NCURSES_PAIRS_T, const void *);/* implemented */
829extern NCURSES_EXPORT(int) wclear (WINDOW *); /* implemented */
830extern NCURSES_EXPORT(int) wclrtobot (WINDOW *); /* implemented */
831extern NCURSES_EXPORT(int) wclrtoeol (WINDOW *); /* implemented */
832extern NCURSES_EXPORT(int) wcolor_set (WINDOW*,NCURSES_PAIRS_T,void*); /* implemented */
833extern NCURSES_EXPORT(void) wcursyncup (WINDOW *); /* implemented */
834extern NCURSES_EXPORT(int) wdelch (WINDOW *); /* implemented */
835extern NCURSES_EXPORT(int) wdeleteln (WINDOW *); /* generated */
836extern NCURSES_EXPORT(int) wechochar (WINDOW *, const chtype); /* implemented */
837extern NCURSES_EXPORT(int) werase (WINDOW *); /* implemented */
838extern NCURSES_EXPORT(int) wgetch (WINDOW *); /* implemented */
839extern NCURSES_EXPORT(int) wgetnstr (WINDOW *,char *,int); /* implemented */
840extern NCURSES_EXPORT(int) wgetstr (WINDOW *, char *); /* generated */
841extern NCURSES_EXPORT(int) whline (WINDOW *, chtype, int); /* implemented */
842extern NCURSES_EXPORT(chtype) winch (WINDOW *); /* implemented */
843extern NCURSES_EXPORT(int) winchnstr (WINDOW *, chtype *, int); /* implemented */
844extern NCURSES_EXPORT(int) winchstr (WINDOW *, chtype *); /* generated */
845extern NCURSES_EXPORT(int) winnstr (WINDOW *, char *, int); /* implemented */
846extern NCURSES_EXPORT(int) winsch (WINDOW *, chtype); /* implemented */
847extern NCURSES_EXPORT(int) winsdelln (WINDOW *,int); /* implemented */
848extern NCURSES_EXPORT(int) winsertln (WINDOW *); /* generated */
849extern NCURSES_EXPORT(int) winsnstr (WINDOW *, const char *,int); /* implemented */
850extern NCURSES_EXPORT(int) winsstr (WINDOW *, const char *); /* generated */
851extern NCURSES_EXPORT(int) winstr (WINDOW *, char *); /* generated */
852extern NCURSES_EXPORT(int) wmove (WINDOW *,int,int); /* implemented */
853extern NCURSES_EXPORT(int) wnoutrefresh (WINDOW *); /* implemented */
854extern NCURSES_EXPORT(int) wprintw (WINDOW *, const char *,...) /* implemented */
855 GCC_PRINTFLIKE(2,3);
856extern NCURSES_EXPORT(int) wredrawln (WINDOW *,int,int); /* implemented */
857extern NCURSES_EXPORT(int) wrefresh (WINDOW *); /* implemented */
858extern NCURSES_EXPORT(int) wscanw (WINDOW *, NCURSES_CONST char *,...) /* implemented */
859 GCC_SCANFLIKE(2,3);
860extern NCURSES_EXPORT(int) wscrl (WINDOW *,int); /* implemented */
861extern NCURSES_EXPORT(int) wsetscrreg (WINDOW *,int,int); /* implemented */
862extern NCURSES_EXPORT(int) wstandout (WINDOW *); /* generated */
863extern NCURSES_EXPORT(int) wstandend (WINDOW *); /* generated */
864extern NCURSES_EXPORT(void) wsyncdown (WINDOW *); /* implemented */
865extern NCURSES_EXPORT(void) wsyncup (WINDOW *); /* implemented */
866extern NCURSES_EXPORT(void) wtimeout (WINDOW *,int); /* implemented */
867extern NCURSES_EXPORT(int) wtouchln (WINDOW *,int,int,int); /* implemented */
868extern NCURSES_EXPORT(int) wvline (WINDOW *,chtype,int); /* implemented */
869
870/*
871 * These are also declared in <term.h>:
872 */
873extern NCURSES_EXPORT(int) tigetflag (NCURSES_CONST char *); /* implemented */
874extern NCURSES_EXPORT(int) tigetnum (NCURSES_CONST char *); /* implemented */
875extern NCURSES_EXPORT(char *) tigetstr (NCURSES_CONST char *); /* implemented */
876extern NCURSES_EXPORT(int) putp (const char *); /* implemented */
877
878#if NCURSES_TPARM_VARARGS
879extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, ...); /* special */
880#else
881extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG,NCURSES_TPARM_ARG); /* special */
882extern NCURSES_EXPORT(char *) tparm_varargs (NCURSES_CONST char *, ...); /* special */
883#endif
884
885extern NCURSES_EXPORT(char *) tiparm (const char *, ...); /* special */
886
887/*
888 * X/Open says this returns a bool; SVr4 also checked for out-of-range line.
889 * The macro provides compatibility:
890 */
891#define is_linetouched(w,l) ((!(w) || ((l) > getmaxy(w)) || ((l) < 0)) ? ERR : (is_linetouched)((w),(l)))
892
893/*
894 * These functions are not in X/Open, but we use them in macro definitions:
895 */
896extern NCURSES_EXPORT(int) getattrs (const WINDOW *); /* generated */
897extern NCURSES_EXPORT(int) getcurx (const WINDOW *); /* generated */
898extern NCURSES_EXPORT(int) getcury (const WINDOW *); /* generated */
899extern NCURSES_EXPORT(int) getbegx (const WINDOW *); /* generated */
900extern NCURSES_EXPORT(int) getbegy (const WINDOW *); /* generated */
901extern NCURSES_EXPORT(int) getmaxx (const WINDOW *); /* generated */
902extern NCURSES_EXPORT(int) getmaxy (const WINDOW *); /* generated */
903extern NCURSES_EXPORT(int) getparx (const WINDOW *); /* generated */
904extern NCURSES_EXPORT(int) getpary (const WINDOW *); /* generated */
905
906/*
907 * vid_attr() was implemented originally based on a draft of X/Open curses.
908 */
909#if !NCURSES_WIDECHAR
910#define vid_attr(a,pair,opts) vidattr(a)
911#endif
912
913/*
914 * These functions are extensions - not in X/Open Curses.
915 */
916#if 1
917#undef NCURSES_EXT_FUNCS
918#define NCURSES_EXT_FUNCS 20180127
919typedef int (*NCURSES_WINDOW_CB)(WINDOW *, void *);
920typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *);
921extern NCURSES_EXPORT(bool) is_term_resized (int, int);
922extern NCURSES_EXPORT(char *) keybound (int, int);
923extern NCURSES_EXPORT(const char *) curses_version (void);
924extern NCURSES_EXPORT(int) alloc_pair (int, int);
925extern NCURSES_EXPORT(int) assume_default_colors (int, int);
926extern NCURSES_EXPORT(int) define_key (const char *, int);
927extern NCURSES_EXPORT(int) extended_color_content(int, int *, int *, int *);
928extern NCURSES_EXPORT(int) extended_pair_content(int, int *, int *);
929extern NCURSES_EXPORT(int) extended_slk_color(int);
930extern NCURSES_EXPORT(int) find_pair (int, int);
931extern NCURSES_EXPORT(int) free_pair (int);
932extern NCURSES_EXPORT(int) get_escdelay (void);
933extern NCURSES_EXPORT(int) init_extended_color(int, int, int, int);
934extern NCURSES_EXPORT(int) init_extended_pair(int, int, int);
935extern NCURSES_EXPORT(int) key_defined (const char *);
936extern NCURSES_EXPORT(int) keyok (int, bool);
937extern NCURSES_EXPORT(void) reset_color_pairs (void);
938extern NCURSES_EXPORT(int) resize_term (int, int);
939extern NCURSES_EXPORT(int) resizeterm (int, int);
940extern NCURSES_EXPORT(int) set_escdelay (int);
941extern NCURSES_EXPORT(int) set_tabsize (int);
942extern NCURSES_EXPORT(int) use_default_colors (void);
943extern NCURSES_EXPORT(int) use_extended_names (bool);
944extern NCURSES_EXPORT(int) use_legacy_coding (int);
945extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_SCREEN_CB, void *);
946extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_WINDOW_CB, void *);
947extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int);
948extern NCURSES_EXPORT(void) nofilter(void);
949
950/*
951 * These extensions provide access to information stored in the WINDOW even
952 * when NCURSES_OPAQUE is set:
953 */
954extern NCURSES_EXPORT(WINDOW *) wgetparent (const WINDOW *); /* generated */
955extern NCURSES_EXPORT(bool) is_cleared (const WINDOW *); /* generated */
956extern NCURSES_EXPORT(bool) is_idcok (const WINDOW *); /* generated */
957extern NCURSES_EXPORT(bool) is_idlok (const WINDOW *); /* generated */
958extern NCURSES_EXPORT(bool) is_immedok (const WINDOW *); /* generated */
959extern NCURSES_EXPORT(bool) is_keypad (const WINDOW *); /* generated */
960extern NCURSES_EXPORT(bool) is_leaveok (const WINDOW *); /* generated */
961extern NCURSES_EXPORT(bool) is_nodelay (const WINDOW *); /* generated */
962extern NCURSES_EXPORT(bool) is_notimeout (const WINDOW *); /* generated */
963extern NCURSES_EXPORT(bool) is_pad (const WINDOW *); /* generated */
964extern NCURSES_EXPORT(bool) is_scrollok (const WINDOW *); /* generated */
965extern NCURSES_EXPORT(bool) is_subwin (const WINDOW *); /* generated */
966extern NCURSES_EXPORT(bool) is_syncok (const WINDOW *); /* generated */
967extern NCURSES_EXPORT(int) wgetdelay (const WINDOW *); /* generated */
968extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* generated */
969
970#else
971#define curses_version() NCURSES_VERSION
972#endif
973
974/*
975 * Extra extension-functions, which pass a SCREEN pointer rather than using
976 * a global variable SP.
977 */
978#if 0
979#undef NCURSES_SP_FUNCS
980#define NCURSES_SP_FUNCS 20180127
981#define NCURSES_SP_NAME(name) name##_sp
982
983/* Define the sp-funcs helper function */
984#define NCURSES_SP_OUTC NCURSES_SP_NAME(NCURSES_OUTC)
985typedef int (*NCURSES_SP_OUTC)(SCREEN*, int);
986
987extern NCURSES_EXPORT(SCREEN *) new_prescr (void); /* implemented:SP_FUNC */
988
989extern NCURSES_EXPORT(int) NCURSES_SP_NAME(baudrate) (SCREEN*); /* implemented:SP_FUNC */
990extern NCURSES_EXPORT(int) NCURSES_SP_NAME(beep) (SCREEN*); /* implemented:SP_FUNC */
991extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(can_change_color) (SCREEN*); /* implemented:SP_FUNC */
992extern NCURSES_EXPORT(int) NCURSES_SP_NAME(cbreak) (SCREEN*); /* implemented:SP_FUNC */
993extern NCURSES_EXPORT(int) NCURSES_SP_NAME(curs_set) (SCREEN*, int); /* implemented:SP_FUNC */
994extern NCURSES_EXPORT(int) NCURSES_SP_NAME(color_content) (SCREEN*, NCURSES_PAIRS_T, NCURSES_COLOR_T*, NCURSES_COLOR_T*, NCURSES_COLOR_T*); /* implemented:SP_FUNC */
995extern NCURSES_EXPORT(int) NCURSES_SP_NAME(def_prog_mode) (SCREEN*); /* implemented:SP_FUNC */
996extern NCURSES_EXPORT(int) NCURSES_SP_NAME(def_shell_mode) (SCREEN*); /* implemented:SP_FUNC */
997extern NCURSES_EXPORT(int) NCURSES_SP_NAME(delay_output) (SCREEN*, int); /* implemented:SP_FUNC */
998extern NCURSES_EXPORT(int) NCURSES_SP_NAME(doupdate) (SCREEN*); /* implemented:SP_FUNC */
999extern NCURSES_EXPORT(int) NCURSES_SP_NAME(echo) (SCREEN*); /* implemented:SP_FUNC */
1000extern NCURSES_EXPORT(int) NCURSES_SP_NAME(endwin) (SCREEN*); /* implemented:SP_FUNC */
1001extern NCURSES_EXPORT(char) NCURSES_SP_NAME(erasechar) (SCREEN*);/* implemented:SP_FUNC */
1002extern NCURSES_EXPORT(void) NCURSES_SP_NAME(filter) (SCREEN*); /* implemented:SP_FUNC */
1003extern NCURSES_EXPORT(int) NCURSES_SP_NAME(flash) (SCREEN*); /* implemented:SP_FUNC */
1004extern NCURSES_EXPORT(int) NCURSES_SP_NAME(flushinp) (SCREEN*); /* implemented:SP_FUNC */
1005extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(getwin) (SCREEN*, FILE *); /* implemented:SP_FUNC */
1006extern NCURSES_EXPORT(int) NCURSES_SP_NAME(halfdelay) (SCREEN*, int); /* implemented:SP_FUNC */
1007extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_colors) (SCREEN*); /* implemented:SP_FUNC */
1008extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_ic) (SCREEN*); /* implemented:SP_FUNC */
1009extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_il) (SCREEN*); /* implemented:SP_FUNC */
1010extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_color) (SCREEN*, NCURSES_COLOR_T, NCURSES_COLOR_T, NCURSES_COLOR_T, NCURSES_COLOR_T); /* implemented:SP_FUNC */
1011extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_pair) (SCREEN*, NCURSES_PAIRS_T, NCURSES_COLOR_T, NCURSES_COLOR_T); /* implemented:SP_FUNC */
1012extern NCURSES_EXPORT(int) NCURSES_SP_NAME(intrflush) (SCREEN*, WINDOW*, bool); /* implemented:SP_FUNC */
1013extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(isendwin) (SCREEN*); /* implemented:SP_FUNC */
1014extern NCURSES_EXPORT(NCURSES_CONST char *) NCURSES_SP_NAME(keyname) (SCREEN*, int); /* implemented:SP_FUNC */
1015extern NCURSES_EXPORT(char) NCURSES_SP_NAME(killchar) (SCREEN*); /* implemented:SP_FUNC */
1016extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(longname) (SCREEN*); /* implemented:SP_FUNC */
1017extern NCURSES_EXPORT(int) NCURSES_SP_NAME(mvcur) (SCREEN*, int, int, int, int); /* implemented:SP_FUNC */
1018extern NCURSES_EXPORT(int) NCURSES_SP_NAME(napms) (SCREEN*, int); /* implemented:SP_FUNC */
1019extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(newpad) (SCREEN*, int, int); /* implemented:SP_FUNC */
1020extern NCURSES_EXPORT(SCREEN *) NCURSES_SP_NAME(newterm) (SCREEN*, NCURSES_CONST char *, FILE *, FILE *); /* implemented:SP_FUNC */
1021extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(newwin) (SCREEN*, int, int, int, int); /* implemented:SP_FUNC */
1022extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nl) (SCREEN*); /* implemented:SP_FUNC */
1023extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nocbreak) (SCREEN*); /* implemented:SP_FUNC */
1024extern NCURSES_EXPORT(int) NCURSES_SP_NAME(noecho) (SCREEN*); /* implemented:SP_FUNC */
1025extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nonl) (SCREEN*); /* implemented:SP_FUNC */
1026extern NCURSES_EXPORT(void) NCURSES_SP_NAME(noqiflush) (SCREEN*); /* implemented:SP_FUNC */
1027extern NCURSES_EXPORT(int) NCURSES_SP_NAME(noraw) (SCREEN*); /* implemented:SP_FUNC */
1028extern NCURSES_EXPORT(int) NCURSES_SP_NAME(pair_content) (SCREEN*, NCURSES_PAIRS_T, NCURSES_COLOR_T*, NCURSES_COLOR_T*); /* implemented:SP_FUNC */
1029extern NCURSES_EXPORT(void) NCURSES_SP_NAME(qiflush) (SCREEN*); /* implemented:SP_FUNC */
1030extern NCURSES_EXPORT(int) NCURSES_SP_NAME(raw) (SCREEN*); /* implemented:SP_FUNC */
1031extern NCURSES_EXPORT(int) NCURSES_SP_NAME(reset_prog_mode) (SCREEN*); /* implemented:SP_FUNC */
1032extern NCURSES_EXPORT(int) NCURSES_SP_NAME(reset_shell_mode) (SCREEN*); /* implemented:SP_FUNC */
1033extern NCURSES_EXPORT(int) NCURSES_SP_NAME(resetty) (SCREEN*); /* implemented:SP_FUNC */
1034extern NCURSES_EXPORT(int) NCURSES_SP_NAME(ripoffline) (SCREEN*, int, int (*)(WINDOW *, int)); /* implemented:SP_FUNC */
1035extern NCURSES_EXPORT(int) NCURSES_SP_NAME(savetty) (SCREEN*); /* implemented:SP_FUNC */
1036extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_init) (SCREEN*, const char *); /* implemented:SP_FUNC */
1037extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_restore) (SCREEN*, const char *); /* implemented:SP_FUNC */
1038extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_set) (SCREEN*, const char *); /* implemented:SP_FUNC */
1039extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attroff) (SCREEN*, const chtype); /* implemented:SP_FUNC */
1040extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attron) (SCREEN*, const chtype); /* implemented:SP_FUNC */
1041extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attrset) (SCREEN*, const chtype); /* implemented:SP_FUNC */
1042extern NCURSES_EXPORT(attr_t) NCURSES_SP_NAME(slk_attr) (SCREEN*); /* implemented:SP_FUNC */
1043extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attr_set) (SCREEN*, const attr_t, NCURSES_PAIRS_T, void*); /* implemented:SP_FUNC */
1044extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_clear) (SCREEN*); /* implemented:SP_FUNC */
1045extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_color) (SCREEN*, NCURSES_PAIRS_T); /* implemented:SP_FUNC */
1046extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_init) (SCREEN*, int); /* implemented:SP_FUNC */
1047extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(slk_label) (SCREEN*, int); /* implemented:SP_FUNC */
1048extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_noutrefresh) (SCREEN*); /* implemented:SP_FUNC */
1049extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_refresh) (SCREEN*); /* implemented:SP_FUNC */
1050extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_restore) (SCREEN*); /* implemented:SP_FUNC */
1051extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_set) (SCREEN*, int, const char *, int); /* implemented:SP_FUNC */
1052extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_touch) (SCREEN*); /* implemented:SP_FUNC */
1053extern NCURSES_EXPORT(int) NCURSES_SP_NAME(start_color) (SCREEN*); /* implemented:SP_FUNC */
1054extern NCURSES_EXPORT(chtype) NCURSES_SP_NAME(termattrs) (SCREEN*); /* implemented:SP_FUNC */
1055extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(termname) (SCREEN*); /* implemented:SP_FUNC */
1056extern NCURSES_EXPORT(int) NCURSES_SP_NAME(typeahead) (SCREEN*, int); /* implemented:SP_FUNC */
1057extern NCURSES_EXPORT(int) NCURSES_SP_NAME(ungetch) (SCREEN*, int); /* implemented:SP_FUNC */
1058extern NCURSES_EXPORT(void) NCURSES_SP_NAME(use_env) (SCREEN*, bool); /* implemented:SP_FUNC */
1059extern NCURSES_EXPORT(void) NCURSES_SP_NAME(use_tioctl) (SCREEN*, bool); /* implemented:SP_FUNC */
1060extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidattr) (SCREEN*, chtype); /* implemented:SP_FUNC */
1061extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidputs) (SCREEN*, chtype, NCURSES_SP_OUTC); /* implemented:SP_FUNC */
1062#if 1
1063extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1064extern NCURSES_EXPORT(int) NCURSES_SP_NAME(alloc_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1065extern NCURSES_EXPORT(int) NCURSES_SP_NAME(assume_default_colors) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1066extern NCURSES_EXPORT(int) NCURSES_SP_NAME(define_key) (SCREEN*, const char *, int); /* implemented:EXT_SP_FUNC */
1067extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_color_content) (SCREEN*, int, int *, int *, int *); /* implemented:EXT_SP_FUNC */
1068extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_pair_content) (SCREEN*, int, int *, int *); /* implemented:EXT_SP_FUNC */
1069extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_slk_color) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
1070extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*); /* implemented:EXT_SP_FUNC */
1071extern NCURSES_EXPORT(int) NCURSES_SP_NAME(find_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1072extern NCURSES_EXPORT(int) NCURSES_SP_NAME(free_pair) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
1073extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_color) (SCREEN*, int, int, int, int); /* implemented:EXT_SP_FUNC */
1074extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_pair) (SCREEN*, int, int, int); /* implemented:EXT_SP_FUNC */
1075extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(is_term_resized) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1076extern NCURSES_EXPORT(int) NCURSES_SP_NAME(key_defined) (SCREEN*, const char *); /* implemented:EXT_SP_FUNC */
1077extern NCURSES_EXPORT(int) NCURSES_SP_NAME(keyok) (SCREEN*, int, bool); /* implemented:EXT_SP_FUNC */
1078extern NCURSES_EXPORT(void) NCURSES_SP_NAME(nofilter) (SCREEN*); /* implemented */ /* implemented:EXT_SP_FUNC */
1079extern NCURSES_EXPORT(void) NCURSES_SP_NAME(reset_color_pairs) (SCREEN*); /* implemented:EXT_SP_FUNC */
1080extern NCURSES_EXPORT(int) NCURSES_SP_NAME(resize_term) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1081extern NCURSES_EXPORT(int) NCURSES_SP_NAME(resizeterm) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
1082extern NCURSES_EXPORT(int) NCURSES_SP_NAME(set_escdelay) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
1083extern NCURSES_EXPORT(int) NCURSES_SP_NAME(set_tabsize) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
1084extern NCURSES_EXPORT(int) NCURSES_SP_NAME(use_default_colors) (SCREEN*); /* implemented:EXT_SP_FUNC */
1085extern NCURSES_EXPORT(int) NCURSES_SP_NAME(use_legacy_coding) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
1086#endif
1087#else
1088#undef NCURSES_SP_FUNCS
1089#define NCURSES_SP_FUNCS 0
1090#define NCURSES_SP_NAME(name) name
1091#define NCURSES_SP_OUTC NCURSES_OUTC
1092#endif
1093
1094/* attributes */
1095
1096#define NCURSES_ATTR_SHIFT 8
1097#define NCURSES_BITS(mask,shift) (NCURSES_CAST(chtype,(mask)) << ((shift) + NCURSES_ATTR_SHIFT))
1098
1099#define A_NORMAL (1UL - 1UL)
1100#define A_ATTRIBUTES NCURSES_BITS(~(1UL - 1UL),0)
1101#define A_CHARTEXT (NCURSES_BITS(1UL,0) - 1UL)
1102#define A_COLOR NCURSES_BITS(((1UL) << 8) - 1UL,0)
1103#define A_STANDOUT NCURSES_BITS(1UL,8)
1104#define A_UNDERLINE NCURSES_BITS(1UL,9)
1105#define A_REVERSE NCURSES_BITS(1UL,10)
1106#define A_BLINK NCURSES_BITS(1UL,11)
1107#define A_DIM NCURSES_BITS(1UL,12)
1108#define A_BOLD NCURSES_BITS(1UL,13)
1109#define A_ALTCHARSET NCURSES_BITS(1UL,14)
1110#define A_INVIS NCURSES_BITS(1UL,15)
1111#define A_PROTECT NCURSES_BITS(1UL,16)
1112#define A_HORIZONTAL NCURSES_BITS(1UL,17)
1113#define A_LEFT NCURSES_BITS(1UL,18)
1114#define A_LOW NCURSES_BITS(1UL,19)
1115#define A_RIGHT NCURSES_BITS(1UL,20)
1116#define A_TOP NCURSES_BITS(1UL,21)
1117#define A_VERTICAL NCURSES_BITS(1UL,22)
1118
1119#if 1
1120#define A_ITALIC NCURSES_BITS(1UL,23) /* ncurses extension */
1121#endif
1122
1123/*
1124 * Most of the pseudo functions are macros that either provide compatibility
1125 * with older versions of curses, or provide inline functionality to improve
1126 * performance.
1127 */
1128
1129/*
1130 * These pseudo functions are always implemented as macros:
1131 */
1132
1133#define getyx(win,y,x) (y = getcury(win), x = getcurx(win))
1134#define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win))
1135#define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win))
1136#define getparyx(win,y,x) (y = getpary(win), x = getparx(win))
1137
1138#define getsyx(y,x) do { if (newscr) { \
1139 if (is_leaveok(newscr)) \
1140 (y) = (x) = -1; \
1141 else \
1142 getyx(newscr,(y), (x)); \
1143 } \
1144 } while(0)
1145
1146#define setsyx(y,x) do { if (newscr) { \
1147 if ((y) == -1 && (x) == -1) \
1148 leaveok(newscr, TRUE); \
1149 else { \
1150 leaveok(newscr, FALSE); \
1151 wmove(newscr, (y), (x)); \
1152 } \
1153 } \
1154 } while(0)
1155
1156#ifndef NCURSES_NOMACROS
1157
1158/*
1159 * These miscellaneous pseudo functions are provided for compatibility:
1160 */
1161
1162#define wgetstr(w, s) wgetnstr(w, s, -1)
1163#define getnstr(s, n) wgetnstr(stdscr, s, (n))
1164
1165#define setterm(term) setupterm(term, 1, (int *)0)
1166
1167#define fixterm() reset_prog_mode()
1168#define resetterm() reset_shell_mode()
1169#define saveterm() def_prog_mode()
1170#define crmode() cbreak()
1171#define nocrmode() nocbreak()
1172#define gettmode()
1173
1174/* It seems older SYSV curses versions define these */
1175#if !NCURSES_OPAQUE
1176#define getattrs(win) NCURSES_CAST(int, NCURSES_OK_ADDR(win) ? (win)->_attrs : A_NORMAL)
1177#define getcurx(win) (NCURSES_OK_ADDR(win) ? (win)->_curx : ERR)
1178#define getcury(win) (NCURSES_OK_ADDR(win) ? (win)->_cury : ERR)
1179#define getbegx(win) (NCURSES_OK_ADDR(win) ? (win)->_begx : ERR)
1180#define getbegy(win) (NCURSES_OK_ADDR(win) ? (win)->_begy : ERR)
1181#define getmaxx(win) (NCURSES_OK_ADDR(win) ? ((win)->_maxx + 1) : ERR)
1182#define getmaxy(win) (NCURSES_OK_ADDR(win) ? ((win)->_maxy + 1) : ERR)
1183#define getparx(win) (NCURSES_OK_ADDR(win) ? (win)->_parx : ERR)
1184#define getpary(win) (NCURSES_OK_ADDR(win) ? (win)->_pary : ERR)
1185#endif /* NCURSES_OPAQUE */
1186
1187#define wstandout(win) (wattrset(win,A_STANDOUT))
1188#define wstandend(win) (wattrset(win,A_NORMAL))
1189
1190#define wattron(win,at) wattr_on(win, NCURSES_CAST(attr_t, at), NULL)
1191#define wattroff(win,at) wattr_off(win, NCURSES_CAST(attr_t, at), NULL)
1192
1193#if !NCURSES_OPAQUE
1194#if NCURSES_WATTR_MACROS
1195#if NCURSES_WIDECHAR && 0
1196#define wattrset(win,at) \
1197 (NCURSES_OK_ADDR(win) \
1198 ? ((win)->_color = NCURSES_CAST(int, PAIR_NUMBER(at)), \
1199 (win)->_attrs = NCURSES_CAST(attr_t, at), \
1200 OK) \
1201 : ERR)
1202#else
1203#define wattrset(win,at) \
1204 (NCURSES_OK_ADDR(win) \
1205 ? ((win)->_attrs = NCURSES_CAST(attr_t, at), \
1206 OK) \
1207 : ERR)
1208#endif
1209#endif /* NCURSES_WATTR_MACROS */
1210#endif /* NCURSES_OPAQUE */
1211
1212#define scroll(win) wscrl(win,1)
1213
1214#define touchwin(win) wtouchln((win), 0, getmaxy(win), 1)
1215#define touchline(win, s, c) wtouchln((win), s, c, 1)
1216#define untouchwin(win) wtouchln((win), 0, getmaxy(win), 0)
1217
1218#define box(win, v, h) wborder(win, v, v, h, h, 0, 0, 0, 0)
1219#define border(ls, rs, ts, bs, tl, tr, bl, br) wborder(stdscr, ls, rs, ts, bs, tl, tr, bl, br)
1220#define hline(ch, n) whline(stdscr, ch, (n))
1221#define vline(ch, n) wvline(stdscr, ch, (n))
1222
1223#define winstr(w, s) winnstr(w, s, -1)
1224#define winchstr(w, s) winchnstr(w, s, -1)
1225#define winsstr(w, s) winsnstr(w, s, -1)
1226
1227#if !NCURSES_OPAQUE
1228#define redrawwin(win) wredrawln(win, 0, (NCURSES_OK_ADDR(win) ? (win)->_maxy+1 : -1))
1229#endif /* NCURSES_OPAQUE */
1230
1231#define waddstr(win,str) waddnstr(win,str,-1)
1232#define waddchstr(win,str) waddchnstr(win,str,-1)
1233
1234/*
1235 * These apply to the first 256 color pairs.
1236 */
1237#define COLOR_PAIR(n) (NCURSES_BITS((n), 0) & A_COLOR)
1238#define PAIR_NUMBER(a) (NCURSES_CAST(int,((NCURSES_CAST(unsigned long,(a)) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
1239
1240/*
1241 * pseudo functions for standard screen
1242 */
1243
1244#define addch(ch) waddch(stdscr,(ch))
1245#define addchnstr(str,n) waddchnstr(stdscr,(str),(n))
1246#define addchstr(str) waddchstr(stdscr,(str))
1247#define addnstr(str,n) waddnstr(stdscr,(str),(n))
1248#define addstr(str) waddnstr(stdscr,(str),-1)
1249#define attr_get(ap,cp,o) wattr_get(stdscr,(ap),(cp),(o))
1250#define attr_off(a,o) wattr_off(stdscr,(a),(o))
1251#define attr_on(a,o) wattr_on(stdscr,(a),(o))
1252#define attr_set(a,c,o) wattr_set(stdscr,(a),(c),(o))
1253#define attroff(at) wattroff(stdscr,(at))
1254#define attron(at) wattron(stdscr,(at))
1255#define attrset(at) wattrset(stdscr,(at))
1256#define bkgd(ch) wbkgd(stdscr,(ch))
1257#define bkgdset(ch) wbkgdset(stdscr,(ch))
1258#define chgat(n,a,c,o) wchgat(stdscr,(n),(a),(c),(o))
1259#define clear() wclear(stdscr)
1260#define clrtobot() wclrtobot(stdscr)
1261#define clrtoeol() wclrtoeol(stdscr)
1262#define color_set(c,o) wcolor_set(stdscr,(c),(o))
1263#define delch() wdelch(stdscr)
1264#define deleteln() winsdelln(stdscr,-1)
1265#define echochar(c) wechochar(stdscr,(c))
1266#define erase() werase(stdscr)
1267#define getch() wgetch(stdscr)
1268#define getstr(str) wgetstr(stdscr,(str))
1269#define inch() winch(stdscr)
1270#define inchnstr(s,n) winchnstr(stdscr,(s),(n))
1271#define inchstr(s) winchstr(stdscr,(s))
1272#define innstr(s,n) winnstr(stdscr,(s),(n))
1273#define insch(c) winsch(stdscr,(c))
1274#define insdelln(n) winsdelln(stdscr,(n))
1275#define insertln() winsdelln(stdscr,1)
1276#define insnstr(s,n) winsnstr(stdscr,(s),(n))
1277#define insstr(s) winsstr(stdscr,(s))
1278#define instr(s) winstr(stdscr,(s))
1279#define move(y,x) wmove(stdscr,(y),(x))
1280#define refresh() wrefresh(stdscr)
1281#define scrl(n) wscrl(stdscr,(n))
1282#define setscrreg(t,b) wsetscrreg(stdscr,(t),(b))
1283#define standend() wstandend(stdscr)
1284#define standout() wstandout(stdscr)
1285#define timeout(delay) wtimeout(stdscr,(delay))
1286#define wdeleteln(win) winsdelln(win,-1)
1287#define winsertln(win) winsdelln(win,1)
1288
1289/*
1290 * mv functions
1291 */
1292
1293#define mvwaddch(win,y,x,ch) (wmove((win),(y),(x)) == ERR ? ERR : waddch((win),(ch)))
1294#define mvwaddchnstr(win,y,x,str,n) (wmove((win),(y),(x)) == ERR ? ERR : waddchnstr((win),(str),(n)))
1295#define mvwaddchstr(win,y,x,str) (wmove((win),(y),(x)) == ERR ? ERR : waddchnstr((win),(str),-1))
1296#define mvwaddnstr(win,y,x,str,n) (wmove((win),(y),(x)) == ERR ? ERR : waddnstr((win),(str),(n)))
1297#define mvwaddstr(win,y,x,str) (wmove((win),(y),(x)) == ERR ? ERR : waddnstr((win),(str),-1))
1298#define mvwchgat(win,y,x,n,a,c,o) (wmove((win),(y),(x)) == ERR ? ERR : wchgat((win),(n),(a),(c),(o)))
1299#define mvwdelch(win,y,x) (wmove((win),(y),(x)) == ERR ? ERR : wdelch(win))
1300#define mvwgetch(win,y,x) (wmove((win),(y),(x)) == ERR ? ERR : wgetch(win))
1301#define mvwgetnstr(win,y,x,str,n) (wmove((win),(y),(x)) == ERR ? ERR : wgetnstr((win),(str),(n)))
1302#define mvwgetstr(win,y,x,str) (wmove((win),(y),(x)) == ERR ? ERR : wgetstr((win),(str)))
1303#define mvwhline(win,y,x,c,n) (wmove((win),(y),(x)) == ERR ? ERR : whline((win),(c),(n)))
1304#define mvwinch(win,y,x) (wmove((win),(y),(x)) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
1305#define mvwinchnstr(win,y,x,s,n) (wmove((win),(y),(x)) == ERR ? ERR : winchnstr((win),(s),(n)))
1306#define mvwinchstr(win,y,x,s) (wmove((win),(y),(x)) == ERR ? ERR : winchstr((win),(s)))
1307#define mvwinnstr(win,y,x,s,n) (wmove((win),(y),(x)) == ERR ? ERR : winnstr((win),(s),(n)))
1308#define mvwinsch(win,y,x,c) (wmove((win),(y),(x)) == ERR ? ERR : winsch((win),(c)))
1309#define mvwinsnstr(win,y,x,s,n) (wmove((win),(y),(x)) == ERR ? ERR : winsnstr((win),(s),(n)))
1310#define mvwinsstr(win,y,x,s) (wmove((win),(y),(x)) == ERR ? ERR : winsstr((win),(s)))
1311#define mvwinstr(win,y,x,s) (wmove((win),(y),(x)) == ERR ? ERR : winstr((win),(s)))
1312#define mvwvline(win,y,x,c,n) (wmove((win),(y),(x)) == ERR ? ERR : wvline((win),(c),(n)))
1313
1314#define mvaddch(y,x,ch) mvwaddch(stdscr,(y),(x),(ch))
1315#define mvaddchnstr(y,x,str,n) mvwaddchnstr(stdscr,(y),(x),(str),(n))
1316#define mvaddchstr(y,x,str) mvwaddchstr(stdscr,(y),(x),(str))
1317#define mvaddnstr(y,x,str,n) mvwaddnstr(stdscr,(y),(x),(str),(n))
1318#define mvaddstr(y,x,str) mvwaddstr(stdscr,(y),(x),(str))
1319#define mvchgat(y,x,n,a,c,o) mvwchgat(stdscr,(y),(x),(n),(a),(c),(o))
1320#define mvdelch(y,x) mvwdelch(stdscr,(y),(x))
1321#define mvgetch(y,x) mvwgetch(stdscr,(y),(x))
1322#define mvgetnstr(y,x,str,n) mvwgetnstr(stdscr,(y),(x),(str),(n))
1323#define mvgetstr(y,x,str) mvwgetstr(stdscr,(y),(x),(str))
1324#define mvhline(y,x,c,n) mvwhline(stdscr,(y),(x),(c),(n))
1325#define mvinch(y,x) mvwinch(stdscr,(y),(x))
1326#define mvinchnstr(y,x,s,n) mvwinchnstr(stdscr,(y),(x),(s),(n))
1327#define mvinchstr(y,x,s) mvwinchstr(stdscr,(y),(x),(s))
1328#define mvinnstr(y,x,s,n) mvwinnstr(stdscr,(y),(x),(s),(n))
1329#define mvinsch(y,x,c) mvwinsch(stdscr,(y),(x),(c))
1330#define mvinsnstr(y,x,s,n) mvwinsnstr(stdscr,(y),(x),(s),(n))
1331#define mvinsstr(y,x,s) mvwinsstr(stdscr,(y),(x),(s))
1332#define mvinstr(y,x,s) mvwinstr(stdscr,(y),(x),(s))
1333#define mvvline(y,x,c,n) mvwvline(stdscr,(y),(x),(c),(n))
1334
1335/*
1336 * Some wide-character functions can be implemented without the extensions.
1337 */
1338#if !NCURSES_OPAQUE
1339#define getbkgd(win) (NCURSES_OK_ADDR(win) ? ((win)->_bkgd) : 0)
1340#endif /* NCURSES_OPAQUE */
1341
1342#define slk_attr_off(a,v) ((v) ? ERR : slk_attroff(a))
1343#define slk_attr_on(a,v) ((v) ? ERR : slk_attron(a))
1344
1345#if !NCURSES_OPAQUE
1346#if NCURSES_WATTR_MACROS
1347#if NCURSES_WIDECHAR && 0
1348#define wattr_set(win,a,p,opts) \
1349 (NCURSES_OK_ADDR(win) \
1350 ? ((void)((win)->_attrs = ((a) & ~A_COLOR), \
1351 (win)->_color = (opts) ? *(int *)(opts) : (p)), \
1352 OK) \
1353 : ERR)
1354#define wattr_get(win,a,p,opts) \
1355 (NCURSES_OK_ADDR(win) \
1356 ? ((void)(NCURSES_OK_ADDR(a) \
1357 ? (*(a) = (win)->_attrs) \
1358 : OK), \
1359 (void)(NCURSES_OK_ADDR(p) \
1360 ? (*(p) = (NCURSES_PAIRS_T) (win)->_color) \
1361 : OK), \
1362 (void)(NCURSES_OK_ADDR(opts) \
1363 ? (*(int *)(opts) = (win)->_color) \
1364 : OK), \
1365 OK) \
1366 : ERR)
1367#else /* !(NCURSES_WIDECHAR && NCURSES_EXE_COLORS) */
1368#define wattr_set(win,a,p,opts) \
1369 (NCURSES_OK_ADDR(win) \
1370 ? ((void)((win)->_attrs = (((a) & ~A_COLOR) | \
1371 (attr_t)COLOR_PAIR(p))), \
1372 OK) \
1373 : ERR)
1374#define wattr_get(win,a,p,opts) \
1375 (NCURSES_OK_ADDR(win) \
1376 ? ((void)(NCURSES_OK_ADDR(a) \
1377 ? (*(a) = (win)->_attrs) \
1378 : OK), \
1379 (void)(NCURSES_OK_ADDR(p) \
1380 ? (*(p) = (NCURSES_PAIRS_T) PAIR_NUMBER((win)->_attrs)) \
1381 : OK), \
1382 OK) \
1383 : ERR)
1384#endif /* (NCURSES_WIDECHAR && NCURSES_EXE_COLORS) */
1385#endif /* NCURSES_WATTR_MACROS */
1386#endif /* NCURSES_OPAQUE */
1387
1388/*
1389 * X/Open curses deprecates SVr4 vwprintw/vwscanw, which are supposed to use
1390 * varargs.h. It adds new calls vw_printw/vw_scanw, which are supposed to
1391 * use POSIX stdarg.h. The ncurses versions of vwprintw/vwscanw already
1392 * use stdarg.h, so...
1393 */
1394#define vw_printw vwprintw
1395#define vw_scanw vwscanw
1396
1397/*
1398 * Export fallback function for use in C++ binding.
1399 */
1400#if !1
1401#define vsscanf(a,b,c) _nc_vsscanf(a,b,c)
1402NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list);
1403#endif
1404
1405/*
1406 * These macros are extensions - not in X/Open Curses.
1407 */
1408#if 1
1409#if !NCURSES_OPAQUE
1410#define is_cleared(win) (NCURSES_OK_ADDR(win) ? (win)->_clear : FALSE)
1411#define is_idcok(win) (NCURSES_OK_ADDR(win) ? (win)->_idcok : FALSE)
1412#define is_idlok(win) (NCURSES_OK_ADDR(win) ? (win)->_idlok : FALSE)
1413#define is_immedok(win) (NCURSES_OK_ADDR(win) ? (win)->_immed : FALSE)
1414#define is_keypad(win) (NCURSES_OK_ADDR(win) ? (win)->_use_keypad : FALSE)
1415#define is_leaveok(win) (NCURSES_OK_ADDR(win) ? (win)->_leaveok : FALSE)
1416#define is_nodelay(win) (NCURSES_OK_ADDR(win) ? ((win)->_delay == 0) : FALSE)
1417#define is_notimeout(win) (NCURSES_OK_ADDR(win) ? (win)->_notimeout : FALSE)
1418#define is_pad(win) (NCURSES_OK_ADDR(win) ? ((win)->_flags & _ISPAD) != 0 : FALSE)
1419#define is_scrollok(win) (NCURSES_OK_ADDR(win) ? (win)->_scroll : FALSE)
1420#define is_subwin(win) (NCURSES_OK_ADDR(win) ? ((win)->_flags & _SUBWIN) != 0 : FALSE)
1421#define is_syncok(win) (NCURSES_OK_ADDR(win) ? (win)->_sync : FALSE)
1422#define wgetdelay(win) (NCURSES_OK_ADDR(win) ? (win)->_delay : 0)
1423#define wgetparent(win) (NCURSES_OK_ADDR(win) ? (win)->_parent : 0)
1424#define wgetscrreg(win,t,b) (NCURSES_OK_ADDR(win) ? (*(t) = (win)->_regtop, *(b) = (win)->_regbottom, OK) : ERR)
1425#endif
1426#endif
1427
1428#endif /* NCURSES_NOMACROS */
1429
1430/*
1431 * Public variables.
1432 *
1433 * Notes:
1434 * a. ESCDELAY was an undocumented feature under AIX curses.
1435 * It gives the ESC expire time in milliseconds.
1436 * b. ttytype is needed for backward compatibility
1437 */
1438#if NCURSES_REENTRANT
1439
1440NCURSES_WRAPPED_VAR(WINDOW *, curscr);
1441NCURSES_WRAPPED_VAR(WINDOW *, newscr);
1442NCURSES_WRAPPED_VAR(WINDOW *, stdscr);
1443NCURSES_WRAPPED_VAR(char *, ttytype);
1444NCURSES_WRAPPED_VAR(int, COLORS);
1445NCURSES_WRAPPED_VAR(int, COLOR_PAIRS);
1446NCURSES_WRAPPED_VAR(int, COLS);
1447NCURSES_WRAPPED_VAR(int, ESCDELAY);
1448NCURSES_WRAPPED_VAR(int, LINES);
1449NCURSES_WRAPPED_VAR(int, TABSIZE);
1450
1451#define curscr NCURSES_PUBLIC_VAR(curscr())
1452#define newscr NCURSES_PUBLIC_VAR(newscr())
1453#define stdscr NCURSES_PUBLIC_VAR(stdscr())
1454#define ttytype NCURSES_PUBLIC_VAR(ttytype())
1455#define COLORS NCURSES_PUBLIC_VAR(COLORS())
1456#define COLOR_PAIRS NCURSES_PUBLIC_VAR(COLOR_PAIRS())
1457#define COLS NCURSES_PUBLIC_VAR(COLS())
1458#define ESCDELAY NCURSES_PUBLIC_VAR(ESCDELAY())
1459#define LINES NCURSES_PUBLIC_VAR(LINES())
1460#define TABSIZE NCURSES_PUBLIC_VAR(TABSIZE())
1461
1462#else
1463
1464extern NCURSES_EXPORT_VAR(WINDOW *) curscr;
1465extern NCURSES_EXPORT_VAR(WINDOW *) newscr;
1466extern NCURSES_EXPORT_VAR(WINDOW *) stdscr;
1467extern NCURSES_EXPORT_VAR(char) ttytype[];
1468extern NCURSES_EXPORT_VAR(int) COLORS;
1469extern NCURSES_EXPORT_VAR(int) COLOR_PAIRS;
1470extern NCURSES_EXPORT_VAR(int) COLS;
1471extern NCURSES_EXPORT_VAR(int) ESCDELAY;
1472extern NCURSES_EXPORT_VAR(int) LINES;
1473extern NCURSES_EXPORT_VAR(int) TABSIZE;
1474
1475#endif
1476
1477/*
1478 * Pseudo-character tokens outside ASCII range. The curses wgetch() function
1479 * will return any given one of these only if the corresponding k- capability
1480 * is defined in your terminal's terminfo entry.
1481 *
1482 * Some keys (KEY_A1, etc) are arranged like this:
1483 * a1 up a3
1484 * left b2 right
1485 * c1 down c3
1486 *
1487 * A few key codes do not depend upon the terminfo entry.
1488 */
1489#define KEY_CODE_YES 0400 /* A wchar_t contains a key code */
1490#define KEY_MIN 0401 /* Minimum curses key */
1491#define KEY_BREAK 0401 /* Break key (unreliable) */
1492#define KEY_SRESET 0530 /* Soft (partial) reset (unreliable) */
1493#define KEY_RESET 0531 /* Reset or hard reset (unreliable) */
1494/*
1495 * These definitions were generated by ./MKkey_defs.sh ./Caps
1496 */
1497#define KEY_DOWN 0402 /* down-arrow key */
1498#define KEY_UP 0403 /* up-arrow key */
1499#define KEY_LEFT 0404 /* left-arrow key */
1500#define KEY_RIGHT 0405 /* right-arrow key */
1501#define KEY_HOME 0406 /* home key */
1502#define KEY_BACKSPACE 0407 /* backspace key */
1503#define KEY_F0 0410 /* Function keys. Space for 64 */
1504#define KEY_F(n) (KEY_F0+(n)) /* Value of function key n */
1505#define KEY_DL 0510 /* delete-line key */
1506#define KEY_IL 0511 /* insert-line key */
1507#define KEY_DC 0512 /* delete-character key */
1508#define KEY_IC 0513 /* insert-character key */
1509#define KEY_EIC 0514 /* sent by rmir or smir in insert mode */
1510#define KEY_CLEAR 0515 /* clear-screen or erase key */
1511#define KEY_EOS 0516 /* clear-to-end-of-screen key */
1512#define KEY_EOL 0517 /* clear-to-end-of-line key */
1513#define KEY_SF 0520 /* scroll-forward key */
1514#define KEY_SR 0521 /* scroll-backward key */
1515#define KEY_NPAGE 0522 /* next-page key */
1516#define KEY_PPAGE 0523 /* previous-page key */
1517#define KEY_STAB 0524 /* set-tab key */
1518#define KEY_CTAB 0525 /* clear-tab key */
1519#define KEY_CATAB 0526 /* clear-all-tabs key */
1520#define KEY_ENTER 0527 /* enter/send key */
1521#define KEY_PRINT 0532 /* print key */
1522#define KEY_LL 0533 /* lower-left key (home down) */
1523#define KEY_A1 0534 /* upper left of keypad */
1524#define KEY_A3 0535 /* upper right of keypad */
1525#define KEY_B2 0536 /* center of keypad */
1526#define KEY_C1 0537 /* lower left of keypad */
1527#define KEY_C3 0540 /* lower right of keypad */
1528#define KEY_BTAB 0541 /* back-tab key */
1529#define KEY_BEG 0542 /* begin key */
1530#define KEY_CANCEL 0543 /* cancel key */
1531#define KEY_CLOSE 0544 /* close key */
1532#define KEY_COMMAND 0545 /* command key */
1533#define KEY_COPY 0546 /* copy key */
1534#define KEY_CREATE 0547 /* create key */
1535#define KEY_END 0550 /* end key */
1536#define KEY_EXIT 0551 /* exit key */
1537#define KEY_FIND 0552 /* find key */
1538#define KEY_HELP 0553 /* help key */
1539#define KEY_MARK 0554 /* mark key */
1540#define KEY_MESSAGE 0555 /* message key */
1541#define KEY_MOVE 0556 /* move key */
1542#define KEY_NEXT 0557 /* next key */
1543#define KEY_OPEN 0560 /* open key */
1544#define KEY_OPTIONS 0561 /* options key */
1545#define KEY_PREVIOUS 0562 /* previous key */
1546#define KEY_REDO 0563 /* redo key */
1547#define KEY_REFERENCE 0564 /* reference key */
1548#define KEY_REFRESH 0565 /* refresh key */
1549#define KEY_REPLACE 0566 /* replace key */
1550#define KEY_RESTART 0567 /* restart key */
1551#define KEY_RESUME 0570 /* resume key */
1552#define KEY_SAVE 0571 /* save key */
1553#define KEY_SBEG 0572 /* shifted begin key */
1554#define KEY_SCANCEL 0573 /* shifted cancel key */
1555#define KEY_SCOMMAND 0574 /* shifted command key */
1556#define KEY_SCOPY 0575 /* shifted copy key */
1557#define KEY_SCREATE 0576 /* shifted create key */
1558#define KEY_SDC 0577 /* shifted delete-character key */
1559#define KEY_SDL 0600 /* shifted delete-line key */
1560#define KEY_SELECT 0601 /* select key */
1561#define KEY_SEND 0602 /* shifted end key */
1562#define KEY_SEOL 0603 /* shifted clear-to-end-of-line key */
1563#define KEY_SEXIT 0604 /* shifted exit key */
1564#define KEY_SFIND 0605 /* shifted find key */
1565#define KEY_SHELP 0606 /* shifted help key */
1566#define KEY_SHOME 0607 /* shifted home key */
1567#define KEY_SIC 0610 /* shifted insert-character key */
1568#define KEY_SLEFT 0611 /* shifted left-arrow key */
1569#define KEY_SMESSAGE 0612 /* shifted message key */
1570#define KEY_SMOVE 0613 /* shifted move key */
1571#define KEY_SNEXT 0614 /* shifted next key */
1572#define KEY_SOPTIONS 0615 /* shifted options key */
1573#define KEY_SPREVIOUS 0616 /* shifted previous key */
1574#define KEY_SPRINT 0617 /* shifted print key */
1575#define KEY_SREDO 0620 /* shifted redo key */
1576#define KEY_SREPLACE 0621 /* shifted replace key */
1577#define KEY_SRIGHT 0622 /* shifted right-arrow key */
1578#define KEY_SRSUME 0623 /* shifted resume key */
1579#define KEY_SSAVE 0624 /* shifted save key */
1580#define KEY_SSUSPEND 0625 /* shifted suspend key */
1581#define KEY_SUNDO 0626 /* shifted undo key */
1582#define KEY_SUSPEND 0627 /* suspend key */
1583#define KEY_UNDO 0630 /* undo key */
1584#define KEY_MOUSE 0631 /* Mouse event has occurred */
1585#define KEY_RESIZE 0632 /* Terminal resize event */
1586#define KEY_EVENT 0633 /* We were interrupted by an event */
1587
1588#define KEY_MAX 0777 /* Maximum key value is 0633 */
1589/* $Id: curses.tail,v 1.23 2016/02/13 16:37:45 tom Exp $ */
1590/*
1591 * vile:cmode:
1592 * This file is part of ncurses, designed to be appended after curses.h.in
1593 * (see that file for the relevant copyright).
1594 */
1595
1596/* mouse interface */
1597
1598#if NCURSES_MOUSE_VERSION > 1
1599#define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 5))
1600#else
1601#define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 6))
1602#endif
1603
1604#define NCURSES_BUTTON_RELEASED 001L
1605#define NCURSES_BUTTON_PRESSED 002L
1606#define NCURSES_BUTTON_CLICKED 004L
1607#define NCURSES_DOUBLE_CLICKED 010L
1608#define NCURSES_TRIPLE_CLICKED 020L
1609#define NCURSES_RESERVED_EVENT 040L
1610
1611/* event masks */
1612#define BUTTON1_RELEASED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_RELEASED)
1613#define BUTTON1_PRESSED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_PRESSED)
1614#define BUTTON1_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_CLICKED)
1615#define BUTTON1_DOUBLE_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_DOUBLE_CLICKED)
1616#define BUTTON1_TRIPLE_CLICKED NCURSES_MOUSE_MASK(1, NCURSES_TRIPLE_CLICKED)
1617
1618#define BUTTON2_RELEASED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_RELEASED)
1619#define BUTTON2_PRESSED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_PRESSED)
1620#define BUTTON2_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_CLICKED)
1621#define BUTTON2_DOUBLE_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_DOUBLE_CLICKED)
1622#define BUTTON2_TRIPLE_CLICKED NCURSES_MOUSE_MASK(2, NCURSES_TRIPLE_CLICKED)
1623
1624#define BUTTON3_RELEASED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_RELEASED)
1625#define BUTTON3_PRESSED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_PRESSED)
1626#define BUTTON3_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_CLICKED)
1627#define BUTTON3_DOUBLE_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_DOUBLE_CLICKED)
1628#define BUTTON3_TRIPLE_CLICKED NCURSES_MOUSE_MASK(3, NCURSES_TRIPLE_CLICKED)
1629
1630#define BUTTON4_RELEASED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_RELEASED)
1631#define BUTTON4_PRESSED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_PRESSED)
1632#define BUTTON4_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_CLICKED)
1633#define BUTTON4_DOUBLE_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_DOUBLE_CLICKED)
1634#define BUTTON4_TRIPLE_CLICKED NCURSES_MOUSE_MASK(4, NCURSES_TRIPLE_CLICKED)
1635
1636/*
1637 * In 32 bits the version-1 scheme does not provide enough space for a 5th
1638 * button, unless we choose to change the ABI by omitting the reserved-events.
1639 */
1640#if NCURSES_MOUSE_VERSION > 1
1641
1642#define BUTTON5_RELEASED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_RELEASED)
1643#define BUTTON5_PRESSED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_PRESSED)
1644#define BUTTON5_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_CLICKED)
1645#define BUTTON5_DOUBLE_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_DOUBLE_CLICKED)
1646#define BUTTON5_TRIPLE_CLICKED NCURSES_MOUSE_MASK(5, NCURSES_TRIPLE_CLICKED)
1647
1648#define BUTTON_CTRL NCURSES_MOUSE_MASK(6, 0001L)
1649#define BUTTON_SHIFT NCURSES_MOUSE_MASK(6, 0002L)
1650#define BUTTON_ALT NCURSES_MOUSE_MASK(6, 0004L)
1651#define REPORT_MOUSE_POSITION NCURSES_MOUSE_MASK(6, 0010L)
1652
1653#else
1654
1655#define BUTTON1_RESERVED_EVENT NCURSES_MOUSE_MASK(1, NCURSES_RESERVED_EVENT)
1656#define BUTTON2_RESERVED_EVENT NCURSES_MOUSE_MASK(2, NCURSES_RESERVED_EVENT)
1657#define BUTTON3_RESERVED_EVENT NCURSES_MOUSE_MASK(3, NCURSES_RESERVED_EVENT)
1658#define BUTTON4_RESERVED_EVENT NCURSES_MOUSE_MASK(4, NCURSES_RESERVED_EVENT)
1659
1660#define BUTTON_CTRL NCURSES_MOUSE_MASK(5, 0001L)
1661#define BUTTON_SHIFT NCURSES_MOUSE_MASK(5, 0002L)
1662#define BUTTON_ALT NCURSES_MOUSE_MASK(5, 0004L)
1663#define REPORT_MOUSE_POSITION NCURSES_MOUSE_MASK(5, 0010L)
1664
1665#endif
1666
1667#define ALL_MOUSE_EVENTS (REPORT_MOUSE_POSITION - 1)
1668
1669/* macros to extract single event-bits from masks */
1670#define BUTTON_RELEASE(e, x) ((e) & NCURSES_MOUSE_MASK(x, 001))
1671#define BUTTON_PRESS(e, x) ((e) & NCURSES_MOUSE_MASK(x, 002))
1672#define BUTTON_CLICK(e, x) ((e) & NCURSES_MOUSE_MASK(x, 004))
1673#define BUTTON_DOUBLE_CLICK(e, x) ((e) & NCURSES_MOUSE_MASK(x, 010))
1674#define BUTTON_TRIPLE_CLICK(e, x) ((e) & NCURSES_MOUSE_MASK(x, 020))
1675#define BUTTON_RESERVED_EVENT(e, x) ((e) & NCURSES_MOUSE_MASK(x, 040))
1676
1677typedef struct
1678{
1679 short id; /* ID to distinguish multiple devices */
1680 int x, y, z; /* event coordinates (character-cell) */
1681 mmask_t bstate; /* button state bits */
1682}
1683MEVENT;
1684
1685extern NCURSES_EXPORT(bool) has_mouse(void);
1686extern NCURSES_EXPORT(int) getmouse (MEVENT *);
1687extern NCURSES_EXPORT(int) ungetmouse (MEVENT *);
1688extern NCURSES_EXPORT(mmask_t) mousemask (mmask_t, mmask_t *);
1689extern NCURSES_EXPORT(bool) wenclose (const WINDOW *, int, int);
1690extern NCURSES_EXPORT(int) mouseinterval (int);
1691extern NCURSES_EXPORT(bool) wmouse_trafo (const WINDOW*, int*, int*, bool);
1692extern NCURSES_EXPORT(bool) mouse_trafo (int*, int*, bool); /* generated */
1693
1694#if NCURSES_SP_FUNCS
1695extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_mouse) (SCREEN*);
1696extern NCURSES_EXPORT(int) NCURSES_SP_NAME(getmouse) (SCREEN*, MEVENT *);
1697extern NCURSES_EXPORT(int) NCURSES_SP_NAME(ungetmouse) (SCREEN*,MEVENT *);
1698extern NCURSES_EXPORT(mmask_t) NCURSES_SP_NAME(mousemask) (SCREEN*, mmask_t, mmask_t *);
1699extern NCURSES_EXPORT(int) NCURSES_SP_NAME(mouseinterval) (SCREEN*, int);
1700#endif
1701
1702#ifndef NCURSES_NOMACROS
1703#define mouse_trafo(y,x,to_screen) wmouse_trafo(stdscr,y,x,to_screen)
1704#endif
1705
1706/* other non-XSI functions */
1707
1708extern NCURSES_EXPORT(int) mcprint (char *, int); /* direct data to printer */
1709extern NCURSES_EXPORT(int) has_key (int); /* do we have given key? */
1710
1711#if NCURSES_SP_FUNCS
1712extern NCURSES_EXPORT(int) NCURSES_SP_NAME(has_key) (SCREEN*, int); /* do we have given key? */
1713extern NCURSES_EXPORT(int) NCURSES_SP_NAME(mcprint) (SCREEN*, char *, int); /* direct data to printer */
1714#endif
1715
1716/* Debugging : use with libncurses_g.a */
1717
1718extern NCURSES_EXPORT(void) _tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1719extern NCURSES_EXPORT(char *) _traceattr (attr_t);
1720extern NCURSES_EXPORT(char *) _traceattr2 (int, chtype);
1721extern NCURSES_EXPORT(char *) _tracechar (int);
1722extern NCURSES_EXPORT(char *) _tracechtype (chtype);
1723extern NCURSES_EXPORT(char *) _tracechtype2 (int, chtype);
1724#if NCURSES_WIDECHAR
1725#define _tracech_t _tracecchar_t
1726extern NCURSES_EXPORT(char *) _tracecchar_t (const cchar_t *);
1727#define _tracech_t2 _tracecchar_t2
1728extern NCURSES_EXPORT(char *) _tracecchar_t2 (int, const cchar_t *);
1729#else
1730#define _tracech_t _tracechtype
1731#define _tracech_t2 _tracechtype2
1732#endif
1733extern NCURSES_EXPORT(void) trace (const unsigned int);
1734
1735/* trace masks */
1736#define TRACE_DISABLE 0x0000 /* turn off tracing */
1737#define TRACE_TIMES 0x0001 /* trace user and system times of updates */
1738#define TRACE_TPUTS 0x0002 /* trace tputs calls */
1739#define TRACE_UPDATE 0x0004 /* trace update actions, old & new screens */
1740#define TRACE_MOVE 0x0008 /* trace cursor moves and scrolls */
1741#define TRACE_CHARPUT 0x0010 /* trace all character outputs */
1742#define TRACE_ORDINARY 0x001F /* trace all update actions */
1743#define TRACE_CALLS 0x0020 /* trace all curses calls */
1744#define TRACE_VIRTPUT 0x0040 /* trace virtual character puts */
1745#define TRACE_IEVENT 0x0080 /* trace low-level input processing */
1746#define TRACE_BITS 0x0100 /* trace state of TTY control bits */
1747#define TRACE_ICALLS 0x0200 /* trace internal/nested calls */
1748#define TRACE_CCALLS 0x0400 /* trace per-character calls */
1749#define TRACE_DATABASE 0x0800 /* trace read/write of terminfo/termcap data */
1750#define TRACE_ATTRS 0x1000 /* trace attribute updates */
1751
1752#define TRACE_SHIFT 13 /* number of bits in the trace masks */
1753#define TRACE_MAXIMUM ((1 << TRACE_SHIFT) - 1) /* maximum trace level */
1754
1755#if defined(TRACE) || defined(NCURSES_TEST)
1756extern NCURSES_EXPORT_VAR(int) _nc_optimize_enable; /* enable optimizations */
1757extern NCURSES_EXPORT(const char *) _nc_visbuf (const char *);
1758#define OPTIMIZE_MVCUR 0x01 /* cursor movement optimization */
1759#define OPTIMIZE_HASHMAP 0x02 /* diff hashing to detect scrolls */
1760#define OPTIMIZE_SCROLL 0x04 /* scroll optimization */
1761#define OPTIMIZE_ALL 0xff /* enable all optimizations (dflt) */
1762#endif
1763
1764#include <unctrl.h>
1765
1766#ifdef __cplusplus
1767
1768#ifndef NCURSES_NOMACROS
1769
1770/* these names conflict with STL */
1771#undef box
1772#undef clear
1773#undef erase
1774#undef move
1775#undef refresh
1776
1777#endif /* NCURSES_NOMACROS */
1778
1779}
1780#endif
1781
1782#endif /* __NCURSES_H */
1783