1 2BEGIN { 3 print "/****************************************************************************" 4 print " * Copyright (c) 1998 Free Software Foundation, Inc. *" 5 print " * *" 6 print " * Permission is hereby granted, free of charge, to any person obtaining a *" 7 print " * copy of this software and associated documentation files (the *" 8 print " * \"Software\"), to deal in the Software without restriction, including *" 9 print " * without limitation the rights to use, copy, modify, merge, publish, *" 10 print " * distribute, distribute with modifications, sublicense, and/or sell *" 11 print " * copies of the Software, and to permit persons to whom the Software is *" 12 print " * furnished to do so, subject to the following conditions: *" 13 print " * *" 14 print " * The above copyright notice and this permission notice shall be included *" 15 print " * in all copies or substantial portions of the Software. *" 16 print " * *" 17 print " * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS *" 18 print " * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *" 19 print " * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *" 20 print " * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *" 21 print " * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *" 22 print " * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *" 23 print " * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *" 24 print " * *" 25 print " * Except as contained in this notice, the name(s) of the above copyright *" 26 print " * holders shall not be used in advertising or otherwise to promote the *" 27 print " * sale, use or other dealings in this Software without prior written *" 28 print " * authorization. *" 29 print " ****************************************************************************/" 30 print "" 31 print "/****************************************************************************/" 32 print "/* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 */" 33 print "/* and: Eric S. Raymond <esr@snark.thyrsus.com> */" 34 print "/****************************************************************************/" 35 print "" 36 print "/* $Id: MKterm.h.awk.in,v 1.36 1999/09/01 22:36:52 Peter.Wemm Exp $ */" 37 print "" 38 print "/*" 39 print "** term.h -- Definition of struct term" 40 print "*/" 41 print "" 42 print "#ifndef _NCU_TERM_H" 43 print "#define _NCU_TERM_H 1" 44 print "" 45 print "#undef NCURSES_VERSION" 46 print "#define NCURSES_VERSION \"@NCURSES_MAJOR@.@NCURSES_MINOR@\"" 47 print "" 48 print "#ifdef __cplusplus" 49 print "extern \"C\" {" 50 print "#endif" 51 print "" 52 print "/* Make this file self-contained by providing defaults for the HAVE_TERMIO[S]_H" 53 print " * and BROKEN_LINKER definition (based on the system for which this was" 54 print " * configured)." 55 print " */" 56 print "" 57 print "#undef HAVE_TERMIOS_H" 58 print "#define HAVE_TERMIOS_H 1/*default*/" 59 print "" 60 print "#undef HAVE_TERMIO_H" 61 print "#define HAVE_TERMIO_H 0/*default*/" 62 print "" 63 print "#undef HAVE_TCGETATTR" 64 print "#define HAVE_TCGETATTR 1/*default*/" 65 print "" 66 print "#undef BROKEN_LINKER" 67 print "#define BROKEN_LINKER 0/*default*/" 68 print "" 69 print "#undef NCURSES_CONST" 70 print "#define NCURSES_CONST @NCURSES_CONST@" 71 print "" 72 print "#undef NCURSES_XNAMES" 73 print "#define NCURSES_XNAMES @NCURSES_XNAMES@" 74 print "" 75 print "/* We will use these symbols to hide differences between" 76 print " * termios/termio/sgttyb interfaces." 77 print " */" 78 print "#undef TTY" 79 print "#undef SET_TTY" 80 print "#undef GET_TTY" 81 print "" 82 print "/* Assume Posix termio if we have the header and function */" 83 print "#if HAVE_TERMIOS_H && HAVE_TCGETATTR" 84 print "" 85 print "#undef TERMIOS" 86 print "#define TERMIOS 1" 87 print "" 88 print "#include <termios.h>" 89 print "#define TTY struct termios" 90 print "" 91 print "#else /* !HAVE_TERMIOS_H */" 92 print "" 93 print "#if HAVE_TERMIO_H" 94 print "" 95 print "#undef TERMIOS" 96 print "#define TERMIOS 1" 97 print "" 98 print "#include <termio.h>" 99 print "#define TTY struct termio" 100 print "" 101 print "/* Add definitions to make termio look like termios." 102 print " * But ifdef it, since there are some implementations" 103 print " * that try to do this for us in a fake <termio.h>." 104 print " */" 105 print "#ifndef TCSANOW" 106 print "#define TCSANOW TCSETA" 107 print "#endif" 108 print "#ifndef TCSADRAIN" 109 print "#define TCSADRAIN TCSETAW" 110 print "#endif" 111 print "#ifndef TCSAFLUSH" 112 print "#define TCSAFLUSH TCSETAF" 113 print "#endif" 114 print "#ifndef tcsetattr" 115 print "#define tcsetattr(fd, cmd, arg) ioctl(fd, cmd, arg)" 116 print "#endif" 117 print "#ifndef tcgetattr" 118 print "#define tcgetattr(fd, arg) ioctl(fd, TCGETA, arg)" 119 print "#endif" 120 print "#ifndef cfgetospeed" 121 print "#define cfgetospeed(t) ((t)->c_cflag & CBAUD)" 122 print "#endif" 123 print "#ifndef TCIFLUSH " 124 print "#define TCIFLUSH 0" 125 print "#endif" 126 print "#ifndef TCOFLUSH " 127 print "#define TCOFLUSH 1" 128 print "#endif" 129 print "#ifndef TCIOFLUSH " 130 print "#define TCIOFLUSH 2" 131 print "#endif" 132 print "#ifndef tcflush" 133 print "#define tcflush(fd, arg) ioctl(fd, TCFLSH, arg)" 134 print "#endif" 135 print "" 136 print "#else /* !HAVE_TERMIO_H */" 137 print "" 138 print "#undef TERMIOS" 139 print "#include <sgtty.h>" 140 print "#include <sys/ioctl.h>" 141 print "#define TTY struct sgttyb" 142 print "" 143 print "#endif /* HAVE_TERMIO_H */" 144 print "" 145 print "#endif /* HAVE_TERMIOS_H */" 146 print "" 147 print "#ifdef TERMIOS" 148 print "#define GET_TTY(fd, buf) tcgetattr(fd, buf)" 149 print "#define SET_TTY(fd, buf) tcsetattr(fd, TCSADRAIN, buf)" 150 print "#else" 151 print "#define GET_TTY(fd, buf) gtty(fd, buf)" 152 print "#define SET_TTY(fd, buf) stty(fd, buf)" 153 print "#endif" 154 print "" 155 print "#define NAMESIZE 256" 156 print "" 157 print "#define CUR cur_term->type." 158 print "" 159 } 160 161$2 == "%%-STOP-HERE-%%" { 162 print "" 163 printf "#define BOOLWRITE %d\n", BoolCount 164 printf "#define NUMWRITE %d\n", NumberCount 165 printf "#define STRWRITE %d\n", StringCount 166 print "" 167 print "/* older synonyms for some capabilities */" 168 print "#define beehive_glitch no_esc_ctlc" 169 print "#define teleray_glitch dest_tabs_magic_smso" 170 print "#define micro_char_size micro_col_size" 171 print "" 172 print "#ifdef __INTERNAL_CAPS_VISIBLE" 173 } 174 175/^#/ {next;} 176 177$3 == "bool" { 178 printf "#define %-30s CUR Booleans[%d]\n", $1, BoolCount++ 179 } 180 181$3 == "num" { 182 printf "#define %-30s CUR Numbers[%d]\n", $1, NumberCount++ 183 } 184 185$3 == "str" { 186 printf "#define %-30s CUR Strings[%d]\n", $1, StringCount++ 187 } 188 189END { 190 print "#endif /* __INTERNAL_CAPS_VISIBLE */" 191 print "" 192 print "" 193 print "/*" 194 print " * Predefined terminfo array sizes" 195 print " */" 196 printf "#define BOOLCOUNT %d\n", BoolCount 197 printf "#define NUMCOUNT %d\n", NumberCount 198 printf "#define STRCOUNT %d\n", StringCount 199 print "" 200 print "typedef struct termtype { /* in-core form of terminfo data */" 201 print " char *term_names; /* str_table offset of term names */" 202 print " char *str_table; /* pointer to string table */" 203 print " char *Booleans; /* array of boolean values */" 204 print " short *Numbers; /* array of integer values */" 205 print " char **Strings; /* array of string offsets */" 206 print "" 207 print "#if NCURSES_XNAMES" 208 print " char *ext_str_table; /* pointer to extended string table */" 209 print " char **ext_Names; /* corresponding names */" 210 print "" 211 print " unsigned short num_Booleans;/* count total Booleans */" 212 print " unsigned short num_Numbers; /* count total Numbers */" 213 print " unsigned short num_Strings; /* count total Strings */" 214 print "" 215 print " unsigned short ext_Booleans;/* count extensions to Booleans */" 216 print " unsigned short ext_Numbers; /* count extensions to Numbers */" 217 print " unsigned short ext_Strings; /* count extensions to Strings */" 218 print "#endif /* NCURSES_XNAMES */" 219 print "" 220 print "} TERMTYPE;" 221 print "" 222 print "typedef struct term { /* describe an actual terminal */" 223 print " TERMTYPE type; /* terminal type description */" 224 print " short Filedes; /* file description being written to */" 225 print " TTY Ottyb, /* original state of the terminal */" 226 print " Nttyb; /* current state of the terminal */" 227 print " int _baudrate; /* used to compute padding */" 228 print "} TERMINAL;" 229 print "" 230 print "extern TERMINAL *cur_term;" 231 print "" 232 print "#if BROKEN_LINKER" 233 print "#define boolnames _nc_boolnames()" 234 print "#define boolcodes _nc_boolcodes()" 235 print "#define boolfnames _nc_boolfnames()" 236 print "#define numnames _nc_numnames()" 237 print "#define numcodes _nc_numcodes()" 238 print "#define numfnames _nc_numfnames()" 239 print "#define strnames _nc_strnames()" 240 print "#define strcodes _nc_strcodes()" 241 print "#define strfnames _nc_strfnames()" 242 print "" 243 print "extern NCURSES_CONST char * const *_nc_boolnames(void);" 244 print "extern NCURSES_CONST char * const *_nc_boolcodes(void);" 245 print "extern NCURSES_CONST char * const *_nc_boolfnames(void);" 246 print "extern NCURSES_CONST char * const *_nc_numnames(void);" 247 print "extern NCURSES_CONST char * const *_nc_numcodes(void);" 248 print "extern NCURSES_CONST char * const *_nc_numfnames(void);" 249 print "extern NCURSES_CONST char * const *_nc_strnames(void);" 250 print "extern NCURSES_CONST char * const *_nc_strcodes(void);" 251 print "extern NCURSES_CONST char * const *_nc_strfnames(void);" 252 print "" 253 print "#else" 254 print "" 255 print "extern NCURSES_CONST char *const boolnames[];" 256 print "extern NCURSES_CONST char *const boolcodes[];" 257 print "extern NCURSES_CONST char *const boolfnames[];" 258 print "extern NCURSES_CONST char *const numnames[];" 259 print "extern NCURSES_CONST char *const numcodes[];" 260 print "extern NCURSES_CONST char *const numfnames[];" 261 print "extern NCURSES_CONST char *const strnames[];" 262 print "extern NCURSES_CONST char *const strcodes[];" 263 print "extern NCURSES_CONST char *const strfnames[];" 264 print "" 265 print "#endif" 266 print "" 267 print "/* internals */" 268 print "extern int _nc_set_tty_mode(TTY *buf);" 269 print "extern int _nc_get_tty_mode(TTY *buf);" 270 print "extern int _nc_read_entry(const char * const, char * const, TERMTYPE *const);" 271 print "extern int _nc_read_file_entry(const char *const, TERMTYPE *);" 272 print "extern char *_nc_first_name(const char *const);" 273 print "extern int _nc_name_match(const char *const, const char *const, const char *const);" 274 print "extern int _nc_read_termcap_entry(const char *const, TERMTYPE *const);" 275 print "extern const TERMTYPE *_nc_fallback(const char *);" 276 print "" 277 print "/* entry points */" 278 print "extern TERMINAL *set_curterm(TERMINAL *);" 279 print "extern int del_curterm(TERMINAL *);" 280 print "" 281 print "/* miscellaneous entry points */" 282 print "extern int restartterm(NCURSES_CONST char *, int, int *);" 283 print "extern int setupterm(NCURSES_CONST char *,int,int *);" 284 print "" 285 print "/* terminfo entry points, also declared in curses.h */" 286 print "#if !defined(__NCURSES_H)" 287 print "extern char *tigetstr(NCURSES_CONST char *);" 288 print "extern char *tparm(NCURSES_CONST char *, ...);" 289 print "extern char ttytype[];" 290 print "extern int putp(const char *);" 291 print "extern int tigetflag(NCURSES_CONST char *);" 292 print "extern int tigetnum(NCURSES_CONST char *);" 293 print "#endif /* __NCURSES_H */" 294 print "" 295 print "/* termcap database emulation (XPG4 uses const only for 2nd param of tgetent) */" 296 print "#if !defined(_NCU_TERMCAP_H)" 297 print "extern char *tgetstr(NCURSES_CONST char *, char **);" 298 print "extern char *tgoto(const char *, int, int);" 299 print "extern int tgetent(char *, const char *);" 300 print "extern int tgetflag(NCURSES_CONST char *);" 301 print "extern int tgetnum(NCURSES_CONST char *);" 302 print "extern int tputs(const char *, int, int (*)(int));" 303 print "#endif /* _NCU_TERMCAP_H */" 304 print "" 305 print "#ifdef __cplusplus" 306 print "}" 307 print "#endif" 308 print "" 309 print "#endif /* _NCU_TERM_H */" 310 } 311