Warning: That file was not part of the compilation database. It may have many parsing errors.

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

Warning: That file was not part of the compilation database. It may have many parsing errors.