$> to $<
[nvi.git] / cl / cl.h
blobe2402afc8d18a1aeb53ed5cd131cc884d0fb4fa0
1 /*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
9 * $Id: cl.h,v 10.20 1996/10/29 12:08:41 bostic Exp $ (Berkeley) $Date: 1996/10/29 12:08:41 $
12 typedef struct _cl_private {
13 CHAR_T ibuf[256]; /* Input keys. */
15 int eof_count; /* EOF count. */
17 struct termios orig; /* Original terminal values. */
18 struct termios ex_enter;/* Terminal values to enter ex. */
19 struct termios vi_enter;/* Terminal values to enter vi. */
21 char *el; /* Clear to EOL terminal string. */
22 char *cup; /* Cursor movement terminal string. */
23 char *cuu1; /* Cursor up terminal string. */
24 char *rmso, *smso; /* Inverse video terminal strings. */
25 char *smcup, *rmcup; /* Terminal start/stop strings. */
27 int killersig; /* Killer signal. */
28 #define INDX_HUP 0
29 #define INDX_INT 1
30 #define INDX_TERM 2
31 #define INDX_WINCH 3
32 #define INDX_MAX 4 /* Original signal information. */
33 struct sigaction oact[INDX_MAX];
35 enum { /* Tty group write mode. */
36 TGW_UNKNOWN=0, TGW_SET, TGW_UNSET } tgw;
38 enum { /* Terminal initialization strings. */
39 TE_SENT=0, TI_SENT } ti_te;
41 #define CL_IN_EX 0x0001 /* Currently running ex. */
42 #define CL_LAYOUT 0x0002 /* Screen layout changed. */
43 #define CL_RENAME 0x0004 /* X11 xterm icon/window renamed. */
44 #define CL_RENAME_OK 0x0008 /* User wants the windows renamed. */
45 #define CL_SCR_EX_INIT 0x0010 /* Ex screen initialized. */
46 #define CL_SCR_VI_INIT 0x0020 /* Vi screen initialized. */
47 #define CL_SIGHUP 0x0040 /* SIGHUP arrived. */
48 #define CL_SIGINT 0x0080 /* SIGINT arrived. */
49 #define CL_SIGTERM 0x0100 /* SIGTERM arrived. */
50 #define CL_SIGWINCH 0x0200 /* SIGWINCH arrived. */
51 #define CL_STDIN_TTY 0x0400 /* Talking to a terminal. */
52 u_int32_t flags;
53 } CL_PRIVATE;
55 #define CLP(sp) ((CL_PRIVATE *)((sp)->gp->cl_private))
56 #define GCLP(gp) ((CL_PRIVATE *)gp->cl_private)
58 /* Return possibilities from the keyboard read routine. */
59 typedef enum { INP_OK=0, INP_EOF, INP_ERR, INP_INTR, INP_TIMEOUT } input_t;
61 /* The screen position relative to a specific window. */
62 #define RCNO(sp, cno) (sp)->coff + (cno)
63 #define RLNO(sp, lno) (sp)->roff + (lno)
65 /* X11 xterm escape sequence to rename the icon/window. */
66 #define XTERM_RENAME "\033]0;%s\007"
69 * XXX
70 * Some implementations of curses.h don't define these for us. Used for
71 * compatibility only.
73 #ifndef TRUE
74 #define TRUE 1
75 #endif
76 #ifndef FALSE
77 #define FALSE 0
78 #endif
80 #include "cl_extern.h"