X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=include%2Fcurses.h.in;h=4a06f16b623601c75a616123d3f31ca553e467db;hb=cc79c103a0ba4c9cef4f875de199be1502727b9b;hp=d16147fd0c4a3a6bf16bd1f14007fa1831692a8c;hpb=574a94bc3d70682bde48f7f10d3c12a58e581e27;p=ncurses.git diff --git a/include/curses.h.in b/include/curses.h.in index d16147fd..4a06f16b 100644 --- a/include/curses.h.in +++ b/include/curses.h.in @@ -32,7 +32,7 @@ * and: Thomas E. Dickey 1996-on * ****************************************************************************/ -/* $Id: curses.h.in,v 1.174 2007/06/23 15:56:44 tom Exp $ */ +/* $Id: curses.h.in,v 1.178 2007/09/08 21:24:55 tom Exp $ */ #ifndef __NCURSES_H #define __NCURSES_H @@ -712,7 +712,7 @@ extern NCURSES_EXPORT(int) standout (void); /* generated */ extern NCURSES_EXPORT(int) standend (void); /* generated */ extern NCURSES_EXPORT(int) start_color (void); /* implemented */ extern NCURSES_EXPORT(WINDOW *) subpad (WINDOW *, int, int, int, int); /* implemented */ -extern NCURSES_EXPORT(WINDOW *) subwin (WINDOW *,int,int,int,int); /* implemented */ +extern NCURSES_EXPORT(WINDOW *) subwin (WINDOW *, int, int, int, int); /* implemented */ extern NCURSES_EXPORT(int) syncok (WINDOW *, bool); /* implemented */ extern NCURSES_EXPORT(chtype) termattrs (void); /* implemented */ extern NCURSES_EXPORT(char *) termname (void); /* implemented */ @@ -826,6 +826,7 @@ extern NCURSES_EXPORT(int) getpary (const WINDOW *); /* generated */ * These functions are extensions - not in X/Open Curses. */ #if @NCURSES_EXT_FUNCS@ +typedef int (*NCURSES_CALLBACK)(WINDOW *, void *); extern NCURSES_EXPORT(bool) is_term_resized (int, int); extern NCURSES_EXPORT(char *) keybound (int, int); extern NCURSES_EXPORT(const char *) curses_version (void); @@ -838,6 +839,8 @@ extern NCURSES_EXPORT(int) resizeterm (int, int); extern NCURSES_EXPORT(int) use_default_colors (void); extern NCURSES_EXPORT(int) use_extended_names (bool); extern NCURSES_EXPORT(int) use_legacy_coding (int); +extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_CALLBACK, void *); +extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_CALLBACK, void *); extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int); extern NCURSES_EXPORT(void) nofilter(void); @@ -845,16 +848,18 @@ extern NCURSES_EXPORT(void) nofilter(void); * These extensions provide access to information stored in the WINDOW even * when NCURSES_OPAQUE is set: */ -extern NCURSES_EXPORT(bool) is_cleared (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_idcok (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_idlok (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_immedok (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_keypad (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_leaveok (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_nodelay (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_notimeout (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_scrollok (WINDOW *); /* generated */ -extern NCURSES_EXPORT(bool) is_syncok (WINDOW *); /* generated */ +extern NCURSES_EXPORT(WINDOW *) wgetparent (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_cleared (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_idcok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_idlok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_immedok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_keypad (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_leaveok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_nodelay (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_notimeout (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_scrollok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(bool) is_syncok (const WINDOW *); /* generated */ +extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* generated */ #else #define curses_version() NCURSES_VERSION @@ -1141,6 +1146,8 @@ NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list); #define is_notimeout(win) ((win)->_notimeout) #define is_scrollok(win) ((win)->_scroll) #define is_syncok(win) ((win)->_sync) +#define wgetparent(win) ((win) ? (win)->_parent : 0) +#define wgetscrreg(win,t,b) ((win) ? (*(t) = (win)->_regtop, *(b) = (win)->_regbottom, OK) : ERR) #endif #endif