data.h revision e39b573c
1e39b573cSmrg/* $XTermId: data.h,v 1.119 2011/07/12 08:37:24 tom Exp $ */ 2d522f475Smrg 3d522f475Smrg/* 4a1f3da82Smrg * Copyright 2002-2009,2011 by Thomas E. Dickey 5d522f475Smrg * 6d522f475Smrg * All Rights Reserved 7d522f475Smrg * 8d522f475Smrg * Permission is hereby granted, free of charge, to any person obtaining a 9d522f475Smrg * copy of this software and associated documentation files (the 10d522f475Smrg * "Software"), to deal in the Software without restriction, including 11d522f475Smrg * without limitation the rights to use, copy, modify, merge, publish, 12d522f475Smrg * distribute, sublicense, and/or sell copies of the Software, and to 13d522f475Smrg * permit persons to whom the Software is furnished to do so, subject to 14d522f475Smrg * the following conditions: 15d522f475Smrg * 16d522f475Smrg * The above copyright notice and this permission notice shall be included 17d522f475Smrg * in all copies or substantial portions of the Software. 18d522f475Smrg * 19d522f475Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 20d522f475Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21d522f475Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 22d522f475Smrg * IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY 23d522f475Smrg * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 24d522f475Smrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25d522f475Smrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26d522f475Smrg * 27d522f475Smrg * Except as contained in this notice, the name(s) of the above copyright 28d522f475Smrg * holders shall not be used in advertising or otherwise to promote the 29d522f475Smrg * sale, use or other dealings in this Software without prior written 30d522f475Smrg * authorization. 31d522f475Smrg * 32d522f475Smrg * Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. 33d522f475Smrg * 34d522f475Smrg * All Rights Reserved 35d522f475Smrg * 36d522f475Smrg * Permission to use, copy, modify, and distribute this software and its 37d522f475Smrg * documentation for any purpose and without fee is hereby granted, 38d522f475Smrg * provided that the above copyright notice appear in all copies and that 39d522f475Smrg * both that copyright notice and this permission notice appear in 40d522f475Smrg * supporting documentation, and that the name of Digital Equipment 41d522f475Smrg * Corporation not be used in advertising or publicity pertaining to 42d522f475Smrg * distribution of the software without specific, written prior permission. 43d522f475Smrg * 44d522f475Smrg * 45d522f475Smrg * DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 46d522f475Smrg * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 47d522f475Smrg * DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 48d522f475Smrg * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 49d522f475Smrg * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 50d522f475Smrg * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 51d522f475Smrg * SOFTWARE. 52d522f475Smrg */ 53d522f475Smrg 54d522f475Smrg#ifndef included_data_h 55d522f475Smrg#define included_data_h 1 56d522f475Smrg 57d522f475Smrg#include <xterm.h> 58d522f475Smrg 59d522f475Smrgextern Widget toplevel; 60d522f475Smrg 61d522f475Smrgextern XtAppContext app_con; 62d522f475Smrg 63d522f475Smrg#ifdef VMS 64d522f475Smrg/* actually in vms.c */ 65d522f475Smrgextern int tt_width; 66d522f475Smrgextern int tt_length; 67d522f475Smrgextern int tt_changed; 68d522f475Smrgextern int tt_pasting; 69d522f475Smrgextern int tt_new_output; 70d522f475Smrg#define VMS_TERM_BUFFER_SIZE 500 71d522f475Smrgstruct q_head { 72d522f475Smrg int flink; 73d522f475Smrg int blink; 74d522f475Smrg}; 75d522f475Smrgextern struct q_head read_queue; 76d522f475Smrg#endif 77d522f475Smrg 78d522f475Smrg#if OPT_TEK4014 79d522f475Smrgextern Char *Tpushb; 80d522f475Smrgextern Char *Tpushback; 81d522f475Smrgextern TekLink *tekRefreshList; 82d522f475Smrgextern TekWidget tekWidget; 83d522f475Smrgextern Widget tekshellwidget; 84d522f475Smrgextern int T_lastx; 85d522f475Smrgextern int T_lasty; 86d522f475Smrgextern int Ttoggled; 87d522f475Smrgextern jmp_buf Tekend; 88d522f475Smrg#endif 89d522f475Smrg 90d522f475Smrgextern char *ptydev; 91d522f475Smrgextern char *ttydev; 92d522f475Smrgextern int hold_screen; 93d522f475Smrg 94d522f475Smrgextern PtyData *VTbuffer; 95d522f475Smrgextern int am_slave; 96d522f475Smrgextern int max_plus1; 97d522f475Smrgextern jmp_buf VTend; 98d522f475Smrg 99d522f475Smrg#ifdef DEBUG 100d522f475Smrgextern int debug; 101d522f475Smrg#endif /* DEBUG */ 102d522f475Smrg 103d522f475Smrgextern PtySelect Select_mask; 104d522f475Smrgextern PtySelect X_mask; 105d522f475Smrgextern PtySelect pty_mask; 106d522f475Smrg 107d522f475Smrgextern int ice_fd; 108d522f475Smrg 109d522f475Smrgextern XtermWidget term; 110d522f475Smrg 111d522f475Smrgextern SIG_ATOMIC_T need_cleanup; 112d522f475Smrg 113d522f475Smrg#if defined(HAVE_XKB_BELL_EXT) 114d522f475Smrg#include <X11/XKBlib.h> /* has the prototype */ 115d522f475Smrg#include <X11/extensions/XKBbells.h> /* has the XkbBI_xxx definitions */ 116d522f475Smrg#endif 117d522f475Smrg 118d522f475Smrg#ifndef XkbBI_Info 119d522f475Smrg#define XkbBI_Info 0 120d522f475Smrg#define XkbBI_MinorError 1 121d522f475Smrg#define XkbBI_MajorError 2 122d522f475Smrg#define XkbBI_TerminalBell 9 123d522f475Smrg#define XkbBI_MarginBell 10 124d522f475Smrg#endif 125d522f475Smrg 126d522f475Smrgextern char *ProgramName; 127d522f475Smrgextern Arg ourTopLevelShellArgs[]; 128d522f475Smrgextern Cardinal number_ourTopLevelShellArgs; 129d522f475Smrgextern Atom wm_delete_window; 130d522f475Smrg 131d522f475Smrg#if HANDLE_STRUCT_NOTIFY 132d522f475Smrg/* Flag icon name with "*** " on window output when iconified. 133d522f475Smrg * I'd like to do something like reverse video, but I don't 134d522f475Smrg * know how to tell this to window managers in general. 135d522f475Smrg * 136d522f475Smrg * mapstate can be IsUnmapped, !IsUnmapped, or -1; 137d522f475Smrg * -1 means no change; the other two are set by event handlers 138d522f475Smrg * and indicate a new mapstate. !IsMapped is done in the handler. 139d522f475Smrg * we worry about IsUnmapped when output occurs. -IAN! 140d522f475Smrg */ 141d522f475Smrgextern int mapstate; 142d522f475Smrg#endif /* HANDLE_STRUCT_NOTIFY */ 143d522f475Smrg 144d522f475Smrgtypedef struct XTERM_RESOURCE { 145d522f475Smrg char *icon_geometry; 146d522f475Smrg char *title; 147d522f475Smrg char *icon_name; 148d522f475Smrg char *term_name; 149d522f475Smrg char *tty_modes; 150d522f475Smrg 151d522f475Smrg int minBufSize; 152d522f475Smrg int maxBufSize; 153d522f475Smrg 154d522f475Smrg Boolean hold_screen; /* true if we keep window open */ 155d522f475Smrg Boolean utmpInhibit; 156d522f475Smrg Boolean utmpDisplayId; 157d522f475Smrg Boolean messages; 158d522f475Smrg 159d522f475Smrg String menuLocale; 160a1f3da82Smrg String omitTranslation; 161d522f475Smrg 162d522f475Smrg String keyboardType; 163e39b573cSmrg 164e39b573cSmrg#if OPT_PRINT_ON_EXIT 165e39b573cSmrg int printModeNow; 166e39b573cSmrg int printModeOnXError; 167e39b573cSmrg int printOptsNow; 168e39b573cSmrg int printOptsOnXError; 169e39b573cSmrg String printFileNow; 170e39b573cSmrg String printFileOnXError; 171e39b573cSmrg#endif 172d522f475Smrg#if OPT_SUNPC_KBD 173d522f475Smrg Boolean sunKeyboard; 174d522f475Smrg#endif 175d522f475Smrg#if OPT_HP_FUNC_KEYS 176d522f475Smrg Boolean hpFunctionKeys; 177d522f475Smrg#endif 178d522f475Smrg#if OPT_SCO_FUNC_KEYS 179d522f475Smrg Boolean scoFunctionKeys; 180d522f475Smrg#endif 181d522f475Smrg#if OPT_SUN_FUNC_KEYS 182d522f475Smrg Boolean sunFunctionKeys; /* %%% should be VT100 widget resource? */ 183d522f475Smrg#endif 184d522f475Smrg#if OPT_TCAP_FKEYS 185d522f475Smrg Boolean termcapKeys; 186d522f475Smrg#endif 187d522f475Smrg 188d522f475Smrg#if OPT_INITIAL_ERASE 189d522f475Smrg Boolean ptyInitialErase; /* if true, use pty's sense of erase char */ 190d522f475Smrg Boolean backarrow_is_erase; /* override backspace/delete */ 191d522f475Smrg#endif 192d522f475Smrg Boolean useInsertMode; 193d522f475Smrg#if OPT_ZICONBEEP 194d522f475Smrg int zIconBeep; /* beep level when output while iconified */ 195d522f475Smrg#endif 196d522f475Smrg#if OPT_PTY_HANDSHAKE 197d522f475Smrg Boolean wait_for_map; 198d522f475Smrg Boolean wait_for_map0; /* ...initial value of .wait_for_map */ 199d522f475Smrg Boolean ptyHandshake; /* use pty-handshaking */ 200d522f475Smrg Boolean ptySttySize; /* reset TTY size after pty handshake */ 201d522f475Smrg#endif 202d522f475Smrg#if OPT_SAME_NAME 203d522f475Smrg Boolean sameName; /* Don't change the title or icon name if it is 204d522f475Smrg * the same. This prevents flicker on the 205d522f475Smrg * screen at the cost of an extra request to 206d522f475Smrg * the server. 207d522f475Smrg */ 208d522f475Smrg#endif 209d522f475Smrg#if OPT_SESSION_MGT 210d522f475Smrg Boolean sessionMgt; 211d522f475Smrg#endif 212d522f475Smrg#if OPT_TOOLBAR 213d522f475Smrg Boolean toolBar; 214d522f475Smrg#endif 215956cc18dSsnj#if OPT_MAXIMIZE 216956cc18dSsnj Boolean maximized; 217a1f3da82Smrg String fullscreen_s; /* resource for "fullscreen" */ 218a1f3da82Smrg int fullscreen; /* derived from fullscreen_s */ 219956cc18dSsnj#endif 220d522f475Smrg} XTERM_RESOURCE; 221d522f475Smrg 222d522f475Smrgextern XTERM_RESOURCE resource; 223d522f475Smrg 22420d2c4d2Smrg#ifdef USE_IGNORE_RC 22520d2c4d2Smrgextern int ignore_unused; 22620d2c4d2Smrg#endif 22720d2c4d2Smrg 228d522f475Smrg#endif /* included_data_h */ 229