xref: /netbsd-src/lib/libcurses/curses.h (revision 5aefcfdc06931dd97e76246d2fe0302f7b3fe094)
1 /*	$NetBSD: curses.h,v 1.50 2000/12/22 17:07:13 jdc Exp $	*/
2 
3 /*
4  * Copyright (c) 1981, 1993, 1994
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *	@(#)curses.h	8.5 (Berkeley) 4/29/95
36  */
37 
38 #ifndef _CURSES_H_
39 #define	_CURSES_H_
40 
41 #include <sys/types.h>
42 #include <sys/cdefs.h>
43 #include <wchar.h>
44 
45 #include <stdio.h>
46 #include <termcap.h>
47 
48 /*
49  * attr_t must be the same size as wchar_t (see <wchar.h>) to avoid padding
50  * in __LDATA.
51  */
52 typedef wchar_t	chtype;
53 typedef wchar_t	attr_t;
54 
55 /* C++ already defines bool. */
56 #ifndef __cplusplus
57 typedef	char	bool;
58 #endif
59 
60 #ifndef TRUE
61 #define	TRUE	(/*CONSTCOND*/1)
62 #endif
63 #ifndef FALSE
64 #define	FALSE	(/*CONSTCOND*/0)
65 #endif
66 
67 /*
68  * The following #defines and #includes are present for backward
69  * compatibility only.  They should not be used in future code.
70  *
71  * START BACKWARD COMPATIBILITY ONLY.
72  */
73 #ifndef _CURSES_PRIVATE
74 
75 #define	_puts(s)	tputs(s, 0, __cputchar)
76 #define	_putchar(c)	__cputchar(c)
77 
78 /* Old-style terminal modes access. */
79 #define	baudrate()	(cfgetospeed(&__baset))
80 #define	crmode()	cbreak()
81 #define	nocrmode()	nocbreak()
82 #define	ospeed		(cfgetospeed(&__baset))
83 #endif /* _CURSES_PRIVATE */
84 
85 /* Termcap capabilities. */
86 extern char	PC;
87 /* END BACKWARD COMPATIBILITY ONLY. */
88 
89 /* symbols for values returned by getch in keypad mode */
90 #define    KEY_MIN        0x101    /* minimum extended key value */
91 #define    KEY_BREAK      0x101    /* break key */
92 #define    KEY_DOWN       0x102    /* down arrow */
93 #define    KEY_UP         0x103    /* up arrow */
94 #define    KEY_LEFT       0x104    /* left arrow */
95 #define    KEY_RIGHT      0x105    /* right arrow*/
96 #define    KEY_HOME       0x106    /* home key */
97 #define    KEY_BACKSPACE  0x107    /* Backspace */
98 
99 /* First function key (block of 64 follow) */
100 #define    KEY_F0         0x108
101 /* Function defining other function key values*/
102 #define    KEY_F(n)       (KEY_F0+(n))
103 
104 #define    KEY_DL         0x148    /* Delete Line */
105 #define    KEY_IL         0x149    /* Insert Line*/
106 #define    KEY_DC         0x14A    /* Delete Character */
107 #define    KEY_IC         0x14B    /* Insert Character */
108 #define    KEY_EIC        0x14C    /* Exit Insert Char mode */
109 #define    KEY_CLEAR      0x14D    /* Clear screen */
110 #define    KEY_EOS        0x14E    /* Clear to end of screen */
111 #define    KEY_EOL        0x14F    /* Clear to end of line */
112 #define    KEY_SF         0x150    /* Scroll one line forward */
113 #define    KEY_SR         0x151    /* Scroll one line back */
114 #define    KEY_NPAGE      0x152    /* Next Page */
115 #define    KEY_PPAGE      0x153    /* Prev Page */
116 #define    KEY_STAB       0x154    /* Set Tab */
117 #define    KEY_CTAB       0x155    /* Clear Tab */
118 #define    KEY_CATAB      0x156    /* Clear All Tabs */
119 #define    KEY_ENTER      0x157    /* Enter or Send */
120 #define    KEY_SRESET     0x158    /* Soft Reset */
121 #define    KEY_RESET      0x159    /* Hard Reset */
122 #define    KEY_PRINT      0x15A    /* Print */
123 #define    KEY_LL         0x15B    /* Home Down */
124 
125 /*
126  * "Keypad" keys arranged like this:
127  *
128  *  A1   up  A3
129  * left  B2 right
130  *  C1  down C3
131  *
132  */
133 #define    KEY_A1         0x15C    /* Keypad upper left */
134 #define    KEY_A3         0x15D    /* Keypad upper right */
135 #define    KEY_B2         0x15E    /* Keypad centre key */
136 #define    KEY_C1         0x15F    /* Keypad lower left */
137 #define    KEY_C3         0x160    /* Keypad lower right */
138 
139 #define    KEY_BTAB       0x161    /* Back Tab */
140 #define    KEY_BEG        0x162    /* Begin key */
141 #define    KEY_CANCEL     0x163    /* Cancel key */
142 #define    KEY_CLOSE      0x164    /* Close Key */
143 #define    KEY_COMMAND    0x165    /* Command Key */
144 #define    KEY_COPY       0x166    /* Copy key */
145 #define    KEY_CREATE     0x167    /* Create key */
146 #define    KEY_END        0x168    /* End key */
147 #define    KEY_EXIT       0x169    /* Exit key */
148 #define    KEY_FIND       0x16A    /* Find key */
149 #define    KEY_HELP       0x16B    /* Help key */
150 #define    KEY_MARK       0x16C    /* Mark key */
151 #define    KEY_MESSAGE    0x16D    /* Message key */
152 #define    KEY_MOVE       0x16E    /* Move key */
153 #define    KEY_NEXT       0x16F    /* Next Object key */
154 #define    KEY_OPEN       0x170    /* Open key */
155 #define    KEY_OPTIONS    0x171    /* Options key */
156 #define    KEY_PREVIOUS   0x172    /* Previous Object key */
157 #define    KEY_REDO       0x173    /* Redo key */
158 #define    KEY_REFERENCE  0x174    /* Ref Key */
159 #define    KEY_REFRESH    0x175    /* Refresh key */
160 #define    KEY_REPLACE    0x176    /* Replace key */
161 #define    KEY_RESTART    0x177    /* Restart key */
162 #define    KEY_RESUME     0x178    /* Resume key */
163 #define    KEY_SAVE       0x179    /* Save key */
164 #define    KEY_SBEG       0x17A    /* Shift begin key */
165 #define    KEY_SCANCEL    0x17B    /* Shift Cancel key */
166 #define    KEY_SCOMMAND   0x17C    /* Shift Command key */
167 #define    KEY_SCOPY      0x17D    /* Shift Copy key */
168 #define    KEY_SCREATE    0x17E    /* Shift Create key */
169 #define    KEY_SDC        0x17F    /* Shift Delete Character */
170 #define    KEY_SDL        0x180    /* Shift Delete Line */
171 #define    KEY_SELECT     0x181    /* Select key */
172 #define    KEY_SEND       0x182    /* Send key */
173 #define    KEY_SEOL       0x183    /* Shift Clear Line key */
174 #define    KEY_SEXIT      0x184    /* Shift Exit key */
175 #define    KEY_SFIND      0x185    /* Shift Find key */
176 #define    KEY_SHELP      0x186    /* Shift Help key */
177 #define    KEY_SHOME      0x187    /* Shift Home key */
178 #define    KEY_SIC        0x188    /* Shift Input key */
179 #define    KEY_SLEFT      0x189    /* Shift Left Arrow key */
180 #define    KEY_SMESSAGE   0x18A    /* Shift Message key */
181 #define    KEY_SMOVE      0x18B    /* Shift Move key */
182 #define    KEY_SNEXT      0x18C    /* Shift Next key */
183 #define    KEY_SOPTIONS   0x18D    /* Shift Options key */
184 #define    KEY_SPREVIOUS  0x18E    /* Shift Previous key */
185 #define    KEY_SPRINT     0x18F    /* Shift Print key */
186 #define    KEY_SREDO      0x190    /* Shift Redo key */
187 #define    KEY_SREPLACE   0x191    /* Shift Replace key */
188 #define    KEY_SRIGHT     0x192    /* Shift Right Arrow key */
189 #define    KEY_SRSUME     0x193    /* Shift Resume key */
190 #define    KEY_SSAVE      0x194    /* Shift Save key */
191 #define    KEY_SSUSPEND   0x195    /* Shift Suspend key */
192 #define    KEY_SUNDO      0x196    /* Shift Undo key */
193 #define    KEY_SUSPEND    0x197    /* Suspend key */
194 #define    KEY_UNDO       0x198    /* Undo key */
195 #define    KEY_MOUSE      0x199    /* Mouse event has occured */
196 #define    KEY_MAX        0x199    /* maximum extended key value */
197 
198 /* 8-bit ASCII characters. */
199 #define	unctrl(c)		__unctrl[((unsigned)c) & 0xff]
200 #define	unctrllen(ch)		__unctrllen[((unsigned)ch) & 0xff]
201 
202 extern char	 *__unctrl[256];	/* Control strings. */
203 extern char	 __unctrllen[256];	/* Control strings length. */
204 
205 /*
206  * A window an array of __LINE structures pointed to by the 'lines' pointer.
207  * A line is an array of __LDATA structures pointed to by the 'line' pointer.
208  */
209 
210 /*
211  * Definitions for characters and attributes in __LDATA
212  */
213 #define __CHARTEXT	0x000000ff	/* bits for 8-bit characters */
214 #define __NORMAL	0x00000000	/* Added characters are normal. */
215 #define __STANDOUT	0x00010000	/* Added characters are standout. */
216 #define __UNDERSCORE	0x00020000	/* Added characters are underscored. */
217 #define __REVERSE	0x00040000	/* Added characters are reverse
218 					   video. */
219 #define __BLINK		0x00080000	/* Added characters are blinking. */
220 #define __DIM		0x00100000	/* Added characters are dim. */
221 #define __BOLD		0x00200000	/* Added characters are bold. */
222 #define __BLANK		0x00400000	/* Added characters are blanked. */
223 #define __PROTECT	0x00800000	/* Added characters are protected. */
224 #define __ALTCHARSET	0x01000000	/* Added characters are ACS */
225 #define __COLOR		0x7e000000	/* Color bits */
226 #define __ATTRIBUTES	0x7fff0000	/* All 8-bit attribute bits */
227 
228 typedef struct __ldata __LDATA;
229 typedef struct __line  __LINE;
230 typedef struct __window  WINDOW;
231 
232 /*
233  * Attribute definitions
234  */
235 #define	A_NORMAL	__NORMAL
236 #define	A_STANDOUT	__STANDOUT
237 #define	A_UNDERLINE	__UNDERSCORE
238 #define	A_REVERSE	__REVERSE
239 #define	A_BLINK		__BLINK
240 #define	A_DIM		__DIM
241 #define	A_BOLD		__BOLD
242 #define	A_BLANK		__BLANK
243 #define	A_PROTECT	__PROTECT
244 #define	A_ALTCHARSET	__ALTCHARSET
245 #define	A_ATTRIBUTES	__ATTRIBUTES
246 #define	A_CHARTEXT	__CHARTEXT
247 #define	A_COLOR		__COLOR
248 
249 /*
250  * Alternate character set definitions
251  */
252 
253 #define	NUM_ACS	128
254 
255 extern chtype _acs_char[NUM_ACS];
256 
257 #define	ACS_RARROW	_acs_char['+']
258 #define	ACS_LARROW	_acs_char[',']
259 #define	ACS_UARROW	_acs_char['-']
260 #define	ACS_DARROW	_acs_char['.']
261 #define	ACS_BLOCK	_acs_char['0']
262 #define	ACS_DIAMOND	_acs_char['`']
263 #define	ACS_CKBOARD	_acs_char['a']
264 #define	ACS_DEGREE	_acs_char['f']
265 #define	ACS_PLMINUS	_acs_char['g']
266 #define	ACS_BOARD	_acs_char['h']
267 #define	ACS_LANTERN	_acs_char['i']
268 #define	ACS_LRCORNER	_acs_char['j']
269 #define	ACS_URCORNER	_acs_char['k']
270 #define	ACS_ULCORNER	_acs_char['l']
271 #define	ACS_LLCORNER	_acs_char['m']
272 #define	ACS_PLUS	_acs_char['n']
273 #define	ACS_HLINE	_acs_char['q']
274 #define	ACS_S1		_acs_char['o']
275 #define	ACS_S9		_acs_char['s']
276 #define	ACS_LTEE	_acs_char['t']
277 #define	ACS_RTEE	_acs_char['u']
278 #define	ACS_BTEE	_acs_char['v']
279 #define	ACS_TTEE	_acs_char['w']
280 #define	ACS_VLINE	_acs_char['x']
281 #define	ACS_BULLET	_acs_char['~']
282 
283 /* System V compatability */
284 #define	ACS_SBBS	ACS_LRCORNER
285 #define	ACS_BBSS	ACS_URCORNER
286 #define	ACS_BSSB	ACS_ULCORNER
287 #define	ACS_SSBB	ACS_LLCORNER
288 #define	ACS_SSSS	ACS_PLUS
289 #define	ACS_BSBS	ACS_HLINE
290 #define	ACS_SSSB	ACS_LTEE
291 #define	ACS_SBSS	ACS_RTEE
292 #define	ACS_SSBS	ACS_BTEE
293 #define	ACS_BSSS	ACS_TTEE
294 #define	ACS_SBSB	ACS_VLINE
295 #define	_acs_map	_acs_char
296 
297 /*
298  * Colour definitions (ANSI colour numbers)
299  */
300 
301 #define	COLOR_BLACK	0x00
302 #define	COLOR_RED	0x01
303 #define	COLOR_GREEN	0x02
304 #define	COLOR_YELLOW	0x03
305 #define	COLOR_BLUE	0x04
306 #define	COLOR_MAGENTA	0x05
307 #define	COLOR_CYAN	0x06
308 #define	COLOR_WHITE	0x07
309 
310 #define	COLOR_PAIR(n)	(((n) << 25) & A_COLOR)
311 #define	PAIR_NUMBER(n)	(((n) & A_COLOR) >> 25)
312 
313 /* Curses external declarations. */
314 extern WINDOW	*curscr;		/* Current screen. */
315 extern WINDOW	*stdscr;		/* Standard screen. */
316 
317 extern struct termios __orig_termios;	/* Terminal state before curses */
318 extern struct termios __baset;		/* Our base terminal state */
319 extern int	__tcaction;		/* If terminal hardware set. */
320 
321 extern int	 COLS;			/* Columns on the screen. */
322 extern int	 LINES;			/* Lines on the screen. */
323 extern int	 COLORS;		/* Max colours on the screen. */
324 extern int	 COLOR_PAIRS;		/* Max colour pairs on the screen. */
325 
326 extern char	*ttytype;		/* Full name of current terminal. */
327 
328 #define	ERR	(0)			/* Error return. */
329 #define	OK	(1)			/* Success return. */
330 
331 /*
332  * The following have, traditionally, been macros but X/Open say they
333  * need to be functions.  Keep the old macros for debugging.
334  */
335 #ifdef _CURSES_USE_MACROS
336 /* Standard screen pseudo functions. */
337 #define	addbytes(s, n)			__waddbytes(stdscr, s, n, 0)
338 #define	addch(ch)			waddch(stdscr, ch)
339 #define	addnstr(s, n)			waddnstr(stdscr, s, n)
340 #define	addstr(s)			waddnstr(stdscr, s, -1)
341 #define bkgd(ch)			wbkgd(stdscr, ch)
342 #define bkgdset(ch)			wbkgdset(stdscr, ch)
343 #define	border(l, r, t, b, tl, tr, bl, br) \
344 	wborder(stdscr, l, r, t, b, tl, tr, bl, br)
345 #define	clear()				wclear(stdscr)
346 #define	clrtobot()			wclrtobot(stdscr)
347 #define	clrtoeol()			wclrtoeol(stdscr)
348 #define	delch()				wdelch(stdscr)
349 #define	deleteln()			wdeleteln(stdscr)
350 #define	erase()				werase(stdscr)
351 #define	getch()				wgetch(stdscr)
352 #define	getstr(s)			wgetstr(stdscr, s)
353 #define	inch()				winch(stdscr)
354 #define	insch(ch)			winsch(stdscr, ch)
355 #define	insdelln(n)			winsdelln(stdscr, n)
356 #define	insertln()			winsertln(stdscr)
357 #define	move(y, x)			wmove(stdscr, y, x)
358 #define	refresh()			wrefresh(stdscr)
359 #define	scrl(n)				wscrl(stdscr, n)
360 #define	standend()			wstandend(stdscr)
361 #define	standout()			wstandout(stdscr)
362 #define	timeout(delay)			wtimeout(stdscr, delay)
363 #define	underscore()			wunderscore(stdscr)
364 #define	underend()			wunderend(stdscr)
365 #define	attron(attr)			wattron(stdscr, attr)
366 #define	attroff(attr)			wattroff(stdscr, attr)
367 #define	attrset(attr)			wattrset(stdscr, attr)
368 #define	waddbytes(w, s, n)		__waddbytes(w, s, n, 0)
369 #define	waddstr(w, s)			waddnstr(w, s, -1)
370 
371 /* Standard screen plus movement pseudo functions. */
372 #define	mvaddbytes(y, x, s, n)		mvwaddbytes(stdscr, y, x, s, n)
373 #define	mvaddch(y, x, ch)		mvwaddch(stdscr, y, x, ch)
374 #define	mvaddnstr(y, x, s, n)		mvwaddnstr(stdscr, y, x, s, n)
375 #define	mvaddstr(y, x, s)		mvwaddstr(stdscr, y, x, s)
376 #define	mvdelch(y, x)			mvwdelch(stdscr, y, x)
377 #define	mvgetch(y, x)			mvwgetch(stdscr, y, x)
378 #define	mvgetstr(y, x, s)		mvwgetstr(stdscr, y, x, s)
379 #define	mvinch(y, x)			mvwinch(stdscr, y, x)
380 #define	mvinsch(y, x, c)		mvwinsch(stdscr, y, x, c)
381 #define	mvwaddbytes(w, y, x, s, n) \
382 	(wmove(w, y, x) == ERR ? ERR : __waddbytes(w, s, n, 0))
383 #define	mvwaddch(w, y, x, ch) \
384 	(wmove(w, y, x) == ERR ? ERR : waddch(w, ch))
385 #define	mvwaddnstr(w, y, x, s, n) \
386 	(wmove(w, y, x) == ERR ? ERR : waddnstr(w, s, n))
387 #define	mvwaddstr(w, y, x, s) \
388 	(wmove(w, y, x) == ERR ? ERR : waddnstr(w, s, -1))
389 #define	mvwdelch(w, y, x) \
390 	(wmove(w, y, x) == ERR ? ERR : wdelch(w))
391 #define	mvwgetch(w, y, x) \
392 	(wmove(w, y, x) == ERR ? ERR : wgetch(w))
393 #define	mvwgetstr(w, y, x, s) \
394 	(wmove(w, y, x) == ERR ? ERR : wgetstr(w, s))
395 #define	mvwinch(w, y, x) \
396 	(wmove(w, y, x) == ERR ? ERR : winch(w))
397 #define	mvwinsch(w, y, x, c) \
398 	(wmove(w, y, x) == ERR ? ERR : winsch(w, c))
399 
400 #define	getyx(w, y, x)		(y) = getcury(w), (x) = getcurx(w)
401 #define getbegyx(w, y, x)	(y) = getbegy(w), (x) = getbegx(w)
402 #define getmaxyx(w, y, x)	(y) = getmaxy(w), (x) = getmaxx(w)
403 
404 #else
405 /* Use functions not macros... */
406 __BEGIN_DECLS
407 int	 addbytes(const char *, int);
408 int	 addch(chtype);
409 int	 addnstr(const char *, int);
410 int	 addstr(const char *);
411 int	 bkgd(chtype);
412 void	 bkgdset(chtype);
413 int	 border(chtype, chtype, chtype, chtype,
414 	   chtype, chtype, chtype, chtype);
415 int	 clear(void);
416 int	 clrtobot(void);
417 int	 clrtoeol(void);
418 int	 delch(void);
419 int	 deleteln(void);
420 int	 erase(void);
421 int	 getch(void);
422 int	 getstr(char *);
423 chtype	 inch(void);
424 int	 insch(chtype);
425 int	 insdelln(int);
426 int	 insertln(void);
427 int	 move(int, int);
428 int	 refresh(void);
429 int	 scrl(int);
430 int	 standend(void);
431 int	 standout(void);
432 void	 timeout(int);
433 int	 underscore(void);
434 int	 underend(void);
435 int	 attron(int);
436 int	 attroff(int);
437 int	 attrset(int);
438 int	 waddbytes(WINDOW *, const char *, int);
439 int	 waddstr(WINDOW *, const char *);
440 
441 /* Standard screen plus movement functions. */
442 int	 mvaddbytes(int, int, const char *, int);
443 int	 mvaddch(int, int, chtype);
444 int	 mvaddnstr(int, int, const char *, int);
445 int	 mvaddstr(int, int, const char *);
446 int	 mvdelch(int, int);
447 int	 mvgetch(int, int);
448 int	 mvgetstr(int, int, char *);
449 chtype	 mvinch(int, int);
450 int	 mvinsch(int, int, chtype);
451 
452 int	 mvwaddbytes(WINDOW *, int, int, const char *, int);
453 int	 mvwaddch(WINDOW *, int, int, chtype);
454 int	 mvwaddnstr(WINDOW *, int, int, const char *, int);
455 int	 mvwaddstr(WINDOW *, int, int, const char *);
456 int	 mvwdelch(WINDOW *, int, int);
457 int	 mvwgetch(WINDOW *, int, int);
458 int	 mvwgetstr(WINDOW *, int, int, char *);
459 chtype	 mvwinch(WINDOW *, int, int);
460 int	 mvwinsch(WINDOW *, int, int, chtype);
461 __END_DECLS
462 #endif /* _CURSES_USE_MACROS */
463 
464 #define	getyx(w, y, x)		(y) = getcury(w), (x) = getcurx(w)
465 #define	getbegyx(w, y, x)	(y) = getbegy(w), (x) = getbegx(w)
466 #define	getmaxyx(w, y, x)	(y) = getmaxy(w), (x) = getmaxx(w)
467 
468 /* Public function prototypes. */
469 __BEGIN_DECLS
470 int	 beep(void);
471 int	 box(WINDOW *, chtype, chtype);
472 bool	 can_change_colors(void);
473 int	 cbreak(void);
474 int	 clearok(WINDOW *, bool);
475 int	 color_content(short, short *, short *, short *);
476 int	 copywin(const WINDOW *, WINDOW *, int, int, int, int, int, int, int);
477 int	 curs_set(int);
478 int	 delay_output(int);
479 int	 def_prog_mode(void);
480 int	 def_shell_mode(void);
481 int	 delwin(WINDOW *);
482 WINDOW	*derwin(WINDOW *, int, int, int, int);
483 WINDOW	*dupwin(WINDOW *);
484 int	 doupdate(void);
485 int	 echo(void);
486 int	 endwin(void);
487 char     erasechar(void);
488 int	 flash(void);
489 int	 flushinp(void);
490 int	 flushok(WINDOW *, bool);
491 char	*fullname(const char *, char *);
492 chtype	 getattrs(WINDOW *);
493 chtype	 getbkgd(WINDOW *);
494 char	*getcap(char *);
495 int	 getcury(WINDOW *);
496 int	 getcurx(WINDOW *);
497 int	 getbegy(WINDOW *);
498 int	 getbegx(WINDOW *);
499 int	 getmaxy(WINDOW *);
500 int	 getmaxx(WINDOW *);
501 int	 gettmode(void);
502 bool	 has_colors(void);
503 int	 hline(chtype, int);
504 int	 idlok(WINDOW *, bool);
505 int	 init_color(short, short, short, short);
506 int	 init_pair(short, short, short);
507 WINDOW	*initscr(void);
508 int	 intrflush(WINDOW *, bool);
509 bool	 isendwin(void);
510 bool	 is_linetouched(WINDOW *, int);
511 bool	 is_wintouched(WINDOW *);
512 void	 keypad(WINDOW *, bool);
513 char     killchar(void);
514 int	 leaveok(WINDOW *, bool);
515 char	*longname(void);
516 int	 meta(WINDOW *, bool);
517 int	 mvcur(int, int, int, int);
518 int	 mvhline(int, int, chtype, int);
519 int	 mvprintw(int, int, const char *, ...)
520 		__attribute__((__format__(__printf__, 3, 4)));
521 int	 mvscanw(int, int, const char *, ...)
522 		__attribute__((__format__(__scanf__, 3, 4)));
523 int	 mvvline(int, int, chtype, int);
524 int	 mvwhline(WINDOW *, int, int, chtype, int);
525 int	 mvwvline(WINDOW *, int, int, chtype, int);
526 int	 mvwin(WINDOW *, int, int);
527 int	 mvwprintw(WINDOW *, int, int, const char *, ...)
528 		__attribute__((__format__(__printf__, 4, 5)));
529 int	 mvwscanw(WINDOW *, int, int, const char *, ...)
530 		__attribute__((__format__(__scanf__, 4, 5)));
531 int	 napms(int);
532 WINDOW	*newwin(int, int, int, int);
533 int	 nl(void);
534 int	 nocbreak(void);
535 void	 nodelay(WINDOW *, bool);
536 int	 noecho(void);
537 int	 nonl(void);
538 int	 noraw(void);
539 int	 notimeout(WINDOW *, bool);
540 int	 overlay(const WINDOW *, WINDOW *);
541 int	 overwrite(const WINDOW *, WINDOW *);
542 int	 pair_content(short, short *, short *);
543 int	 printw(const char *, ...)
544 		__attribute__((__format__(__printf__, 1, 2)));
545 int	 raw(void);
546 int	 reset_prog_mode(void);
547 int	 reset_shell_mode(void);
548 int	 resetty(void);
549 int	 savetty(void);
550 int	 scanw(const char *, ...)
551 		__attribute__((__format__(__scanf__, 1, 2)));
552 int	 scroll(WINDOW *);
553 int	 scrollok(WINDOW *, bool);
554 int	 setterm(char *);
555 int	 start_color(void);
556 WINDOW	*subwin(WINDOW *, int, int, int, int);
557 int	 touchline(WINDOW *, int, int);
558 int	 touchoverlap(WINDOW *, WINDOW *);
559 int	 touchwin(WINDOW *);
560 int	 ungetch(int);
561 int	 untouchwin(WINDOW *);
562 int	 vline(chtype, int);
563 int	 vwprintw(WINDOW *, const char *, _BSD_VA_LIST_)
564 		__attribute__((__format__(__printf__, 2, 0)));
565 int	 vwscanw(WINDOW *, const char *, _BSD_VA_LIST_)
566 		__attribute__((__format__(__scanf__, 2, 0)));
567 int	 waddch(WINDOW *, chtype);
568 int	 waddnstr(WINDOW *, const char *, int);
569 int	 wattron(WINDOW *, int);
570 int	 wattroff(WINDOW *, int);
571 int	 wattrset(WINDOW *, int);
572 int	 wbkgd(WINDOW *, chtype);
573 void	 wbkgdset(WINDOW *, chtype);
574 int	 wborder(WINDOW *, chtype, chtype, chtype, chtype, chtype, chtype,
575 		chtype, chtype);
576 int	 wclear(WINDOW *);
577 int	 wclrtobot(WINDOW *);
578 int	 wclrtoeol(WINDOW *);
579 int	 wdelch(WINDOW *);
580 int	 wdeleteln(WINDOW *);
581 int	 werase(WINDOW *);
582 int	 wgetch(WINDOW *);
583 int	 wgetstr(WINDOW *, char *);
584 int	 whline(WINDOW *, chtype, int);
585 chtype	 winch(WINDOW *);
586 int	 winsch(WINDOW *, chtype);
587 int	 winsdelln(WINDOW *, int);
588 int	 winsertln(WINDOW *);
589 int	 wmove(WINDOW *, int, int);
590 int	 wnoutrefresh(WINDOW *);
591 int	 wprintw(WINDOW *, const char *, ...)
592 		__attribute__((__format__(__printf__, 2, 3)));
593 int	 wrefresh(WINDOW *);
594 int	 wscanw(WINDOW *, const char *, ...)
595 		__attribute__((__format__(__scanf__, 2, 3)));
596 int	 wscrl(WINDOW *, int);
597 int	 wstandend(WINDOW *);
598 int	 wstandout(WINDOW *);
599 void	 wtimeout(WINDOW *, int);
600 int	 wtouchln(WINDOW *, int, int, int);
601 int	 wunderend(WINDOW *);
602 int	 wunderscore(WINDOW *);
603 int	 wvline(WINDOW *, chtype, int);
604 
605 /* Private functions that are needed for user programs prototypes. */
606 int	 __cputchar(int);
607 int	 __waddbytes(WINDOW *, const char *, int, attr_t);
608 __END_DECLS
609 
610 #endif /* !_CURSES_H_ */
611