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