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