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