1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
/*
* term.h: header file for term.c
*
* Written By Michael Sandrof
*
* Copyright (c) 1990 Michael Sandrof.
* Copyright (c) 1991, 1992 Troy Rollo.
* Copyright (c) 1992-2002 Matthew R. Green.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)$eterna: ircterm.h,v 1.29 2002/08/29 10:26:34 mrg Exp $
*/
#ifndef __ircterm_h_
# define __ircterm_h_
#ifdef INCLUDE_CURSES_H
# include <curses.h>
#endif /* INCLUDE_CURSES_H */
/* this is really busted on solaris -mrg */
#if 0
#ifdef INCLUDE_TERM_H
# include <term.h>
# ifdef lines
# undef lines
# endif /* lines */
# ifdef columns
# undef columns
# endif /* columns */
#endif /* INCLUDE_TERM_H */
#endif /* 0 */
#ifdef MUNIX
# include <sys/ttold.h>
#endif /* MUNIX */
#ifdef _Windows
#define CO term_get_columns()
#define LI term_get_rows()
#define term_eight_bit() (1)
#define set_term_eight_bit(x) (0)
#define term_init() (0)
#define term_cont() (0)
#define term_echo(x) (0)
#define term_init() (0)
#define term_putchar(x) (0)
#define term_puts(x, y) (0)
#define term_reset() (0)
#define term_cursor_left() (0)
#define term_cursor_right() (0)
#define term_insert(x) (0)
int term_pause();
#else
extern int term_reset_flag;
extern char *CM,
*DO,
*CE,
*CL,
*CR,
*NL,
*SO,
*SE,
*US,
*UE,
*MD,
*ME,
*BL,
*TI,
*TE;
extern int SG;
#ifdef NCURSES_VERSION
# define TPUTSRETVAL int
# define TPUTSARGVAL int
#else
# ifdef HPUX
# define TPUTSRETVAL int
# define TPUTSARGVAL char
# else /* HPUX */
# ifdef __sgi
# include <sys/param.h>
# define TPUTSRETVAL int
# define TPUTSARGVAL char
# endif
# if (defined(__sgi) && defined(SEEKLIMIT32)) || defined(__osf__) || defined(__SVR4)
/*
* XXX
*
* if this causes your compile to fail, then just delete it. and
* please tell me (use the `ircbug' command). thanks.
*/
char *tgetstr(char *, char **);
# endif
# ifndef __sgi
# if defined(__linux__) || defined(_AIX) || defined(__GNU__) || defined(__FreeBSD__) || (defined(__NetBSD_Version__) && __NetBSD_Version__ >= 104100000)
# define TPUTSRETVAL int
# define TPUTSARGVAL int
# else
# define TPUTSVOIDRET 1
# define TPUTSRETVAL void
# define TPUTSARGVAL int
# endif /* __linux || _AIX */
# endif /* __sgi */
# endif /* HPUX */
#endif /* NCURSES_VERSION */
TPUTSRETVAL putchar_x _((TPUTSARGVAL));
#define tputs_x(s) (tputs(s, 0, putchar_x))
#define term_underline_on() (tputs_x(US))
#define term_underline_off() (tputs_x(UE))
#define term_standout_on() (tputs_x(SO))
#define term_standout_off() (tputs_x(SE))
#define term_clear_screen() (tputs_x(CL))
#define term_move_cursor(c, r) (tputs_x(tgoto(CM, (c), (r))))
#define term_cr() (tputs_x(CR))
#define term_newline() (tputs_x(NL))
#define term_beep() (tputs_x(BL),fflush(current_screen ? \
current_screen->fpout : stdout))
#define term_bold_on() (tputs_x(MD))
#define term_bold_off() (tputs_x(ME))
RETSIGTYPE term_cont _((void));
void term_set_fp _((FILE *));
int term_echo _((int));
void term_init _((void));
int term_resize _((void));
void term_pause _((u_int, u_char *));
void term_putchar _((u_int));
#if 0
void term_putkanji _((u_int, u_int));
#endif
int term_puts _((u_char *, size_t));
void term_flush _((void));
void term_space_erase _((int));
void term_reset _((void));
void copy_window_size _((int *, int *));
int term_eight_bit _((void));
void set_term_eight_bit _((int));
extern int (*term_scroll) _((int, int, int));
extern int (*term_insert) _((u_int));
#if 0
extern int (*term_insert_kanji) _((u_int, u_int));
#endif
extern int (*term_delete) _((void));
extern int (*term_cursor_right) _((void));
extern int (*term_cursor_left) _((void));
extern int (*term_clear_to_eol) _((void));
#if defined(ISC22) || defined(MUNIX)
/* Structure for terminal special characters */
struct tchars
{
char t_intrc; /* Interrupt */
char t_quitc; /* Quit */
char t_startc; /* Start output */
char t_stopc; /* Stop output */
char t_eofc; /* End-of-file (EOF) */
char t_brkc; /* Input delimiter (like nl) */
}
struct ltchars
{
char t_suspc; /* stop process signal */
char t_dsuspc; /* delayed stop process signal */
char t_rprntc; /* reprint line */
char t_flushc; /* flush output (toggles) */
char t_werasc; /* word erase */
char t_lnextc; /* literal next character */
};
#endif /* ISC22 || MUNIX */
#if defined(_HPUX_SOURCE)
#ifndef _TTY_CHARS_ST_
#define _TTY_CHARS_ST_
/* Structure for terminal special characters */
struct tchars
{
char t_intrc; /* Interrupt */
char t_quitc; /* Quit */
char t_startc; /* Start output */
char t_stopc; /* Stop output */
char t_eofc; /* End-of-file (EOF) */
char t_brkc; /* Input delimiter (like nl) */
};
#endif /* _TTY_CHARS_ST_ */
#ifndef TIOCSETC
# define TIOCSETC _IOW('t', 17, struct tchars) /* set special chars */
#endif /* TIOCSETC */
#ifndef TIOCGETC
# define TIOCGETC _IOR('t', 18, struct tchars) /* get special chars */
#endif /* TIOCGETC */
#ifndef CBREAK
# define CBREAK 0x02 /* Half-cooked mode */
#endif /* CBREAK */
#ifndef SIGWINCH
# define SIGWINCH SIGWINDOW
#endif /* SIGWINCH */
#endif /* _HPUX_SOURCE */
/* well, it works */
#ifdef mips
# ifndef HAVE_FPUTC
# define fputc(c,f) do { char x = (c); write(fileno(f),&x,1); } while (0)
# endif /* HAVE_FPUTC */
# ifndef HAVE_FWRITE
# define fwrite(buffer,len,cnt,f) write(fileno(f),(buffer),(len)*(cnt))
# endif /* HAVE_FWRITE */
#endif /* mips */
#endif /* _Windows */
#endif /* __ircterm_h_ */
|