15104ee6eSmrg/* $XTermId: data.h,v 1.143 2024/09/30 07:48:05 tom Exp $ */ 2d522f475Smrg 3d522f475Smrg/* 45104ee6eSmrg * Copyright 2002-2021,2024 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#if OPT_TEK4014 64d522f475Smrgextern Char *Tpushb; 65d522f475Smrgextern Char *Tpushback; 66d522f475Smrgextern TekLink *tekRefreshList; 67d522f475Smrgextern TekWidget tekWidget; 68d522f475Smrgextern Widget tekshellwidget; 69d522f475Smrgextern int T_lastx; 70d522f475Smrgextern int T_lasty; 71d522f475Smrgextern int Ttoggled; 72d522f475Smrgextern jmp_buf Tekend; 73d522f475Smrg#endif 74d522f475Smrg 75d522f475Smrgextern char *ptydev; 76d522f475Smrgextern char *ttydev; 77d522f475Smrgextern int hold_screen; 78d522f475Smrg 79d522f475Smrgextern PtyData *VTbuffer; 80d522f475Smrgextern int am_slave; 81d522f475Smrgextern int max_plus1; 82d522f475Smrgextern jmp_buf VTend; 83d522f475Smrg 84d522f475Smrg#ifdef DEBUG 85d522f475Smrgextern int debug; 86d522f475Smrg#endif /* DEBUG */ 87d522f475Smrg 88d522f475Smrgextern PtySelect Select_mask; 89d522f475Smrgextern PtySelect X_mask; 90d522f475Smrgextern PtySelect pty_mask; 91d522f475Smrg 92ae137402Smrg#if OPT_SESSION_MGT 93d522f475Smrgextern int ice_fd; 94ae137402Smrgextern char **restart_command; 95ae137402Smrg#endif 96ae137402Smrg 97ae137402Smrgextern int restart_params; 98d522f475Smrg 99d522f475Smrgextern XtermWidget term; 100d522f475Smrg 101d522f475Smrgextern SIG_ATOMIC_T need_cleanup; 1022e4f8982Smrgextern SIG_ATOMIC_T caught_intr; 103d522f475Smrg 104d522f475Smrg#if defined(HAVE_XKB_BELL_EXT) 105d522f475Smrg#include <X11/XKBlib.h> /* has the prototype */ 106d522f475Smrg#include <X11/extensions/XKBbells.h> /* has the XkbBI_xxx definitions */ 107d522f475Smrg#endif 108d522f475Smrg 109d522f475Smrg#ifndef XkbBI_Info 110d522f475Smrg#define XkbBI_Info 0 111d522f475Smrg#define XkbBI_MinorError 1 112d522f475Smrg#define XkbBI_MajorError 2 113d522f475Smrg#define XkbBI_TerminalBell 9 114d522f475Smrg#define XkbBI_MarginBell 10 115d522f475Smrg#endif 116d522f475Smrg 117ae137402Smrgextern char *ProgramName; /* just the last part of name, maybe alias */ 118ae137402Smrgextern char *ProgramPath; /* full pathname which can be executed */ 119d522f475Smrgextern Arg ourTopLevelShellArgs[]; 120d522f475Smrgextern Cardinal number_ourTopLevelShellArgs; 121d522f475Smrgextern Atom wm_delete_window; 122d522f475Smrg 123f2e35a3aSmrgextern CellColor initCColor; 124f2e35a3aSmrg 125d522f475Smrg#if HANDLE_STRUCT_NOTIFY 126d522f475Smrg/* Flag icon name with "*** " on window output when iconified. 127d522f475Smrg * I'd like to do something like reverse video, but I don't 128d522f475Smrg * know how to tell this to window managers in general. 129d522f475Smrg * 130d522f475Smrg * mapstate can be IsUnmapped, !IsUnmapped, or -1; 131d522f475Smrg * -1 means no change; the other two are set by event handlers 132d522f475Smrg * and indicate a new mapstate. !IsMapped is done in the handler. 133d522f475Smrg * we worry about IsUnmapped when output occurs. -IAN! 134d522f475Smrg */ 135d522f475Smrgextern int mapstate; 136d522f475Smrg#endif /* HANDLE_STRUCT_NOTIFY */ 137d522f475Smrg 138e0a2b6dfSmrg#ifdef HAVE_LIB_XCURSOR 139e0a2b6dfSmrgextern char *xterm_cursor_theme; 140e0a2b6dfSmrg#endif 141e0a2b6dfSmrg 142d522f475Smrgtypedef struct XTERM_RESOURCE { 143d522f475Smrg char *icon_geometry; 144d522f475Smrg char *title; 1450bd37d32Smrg char *icon_hint; 146d522f475Smrg char *icon_name; 147d522f475Smrg char *term_name; 148d522f475Smrg char *tty_modes; 149f2e35a3aSmrg char *valid_shells; 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; 1585104ee6eSmrg Boolean notMapped; 159d522f475Smrg 160ad37e533Smrg#ifdef HAVE_LIB_XCURSOR 161ad37e533Smrg String cursorTheme; 162ad37e533Smrg#endif 163ad37e533Smrg 164d522f475Smrg String menuLocale; 165a1f3da82Smrg String omitTranslation; 166d522f475Smrg 167d522f475Smrg String keyboardType; 168e39b573cSmrg 169e39b573cSmrg#if OPT_PRINT_ON_EXIT 170e39b573cSmrg int printModeNow; 171e39b573cSmrg int printModeOnXError; 172e39b573cSmrg int printOptsNow; 173e39b573cSmrg int printOptsOnXError; 174e39b573cSmrg String printFileNow; 175e39b573cSmrg String printFileOnXError; 176e39b573cSmrg#endif 1772e4f8982Smrg 1782e4f8982Smrg Boolean oldKeyboard; /* placeholder for decode_keyboard_type */ 179d522f475Smrg#if OPT_SUNPC_KBD 180d522f475Smrg Boolean sunKeyboard; 181d522f475Smrg#endif 182d522f475Smrg#if OPT_HP_FUNC_KEYS 183d522f475Smrg Boolean hpFunctionKeys; 184d522f475Smrg#endif 185d522f475Smrg#if OPT_SCO_FUNC_KEYS 186d522f475Smrg Boolean scoFunctionKeys; 187d522f475Smrg#endif 188d522f475Smrg#if OPT_SUN_FUNC_KEYS 189d522f475Smrg Boolean sunFunctionKeys; /* %%% should be VT100 widget resource? */ 190d522f475Smrg#endif 191d522f475Smrg#if OPT_TCAP_FKEYS 192d522f475Smrg Boolean termcapKeys; 193d522f475Smrg#endif 194d522f475Smrg 195d522f475Smrg#if OPT_INITIAL_ERASE 196d522f475Smrg Boolean ptyInitialErase; /* if true, use pty's sense of erase char */ 197d522f475Smrg Boolean backarrow_is_erase; /* override backspace/delete */ 198d522f475Smrg#endif 199d522f475Smrg Boolean useInsertMode; 200d522f475Smrg#if OPT_ZICONBEEP 201d522f475Smrg int zIconBeep; /* beep level when output while iconified */ 2020bd37d32Smrg char *zIconFormat; /* format for icon name */ 203d522f475Smrg#endif 204d522f475Smrg#if OPT_PTY_HANDSHAKE 205d522f475Smrg Boolean wait_for_map; 206d522f475Smrg Boolean wait_for_map0; /* ...initial value of .wait_for_map */ 207d522f475Smrg Boolean ptyHandshake; /* use pty-handshaking */ 208d522f475Smrg Boolean ptySttySize; /* reset TTY size after pty handshake */ 209d522f475Smrg#endif 210913cc679Smrg#if OPT_REPORT_CCLASS 211913cc679Smrg Boolean reportCClass; /* show character-class information */ 212913cc679Smrg#endif 213e0a2b6dfSmrg#if OPT_REPORT_COLORS 214e0a2b6dfSmrg Boolean reportColors; /* show color information as allocated */ 215e0a2b6dfSmrg#endif 216e0a2b6dfSmrg#if OPT_REPORT_FONTS 217e0a2b6dfSmrg Boolean reportFonts; /* show bitmap-font information as loaded */ 218e0a2b6dfSmrg#endif 219f2e35a3aSmrg#if OPT_XRES_QUERY 220f2e35a3aSmrg Boolean reportXRes; /* show vt100 resources after initialization */ 221f2e35a3aSmrg#endif 222f2e35a3aSmrg#if OPT_REPORT_ICONS 223f2e35a3aSmrg Boolean reportIcons; /* show icon information as loaded */ 224f2e35a3aSmrg#endif 225d522f475Smrg#if OPT_SAME_NAME 226d522f475Smrg Boolean sameName; /* Don't change the title or icon name if it is 227d522f475Smrg * the same. This prevents flicker on the 228d522f475Smrg * screen at the cost of an extra request to 229d522f475Smrg * the server. 230d522f475Smrg */ 231d522f475Smrg#endif 232d522f475Smrg#if OPT_SESSION_MGT 233d522f475Smrg Boolean sessionMgt; 234d522f475Smrg#endif 235d522f475Smrg#if OPT_TOOLBAR 236d522f475Smrg Boolean toolBar; 237d522f475Smrg#endif 238956cc18dSsnj#if OPT_MAXIMIZE 239956cc18dSsnj Boolean maximized; 240a1f3da82Smrg String fullscreen_s; /* resource for "fullscreen" */ 241a1f3da82Smrg int fullscreen; /* derived from fullscreen_s */ 242956cc18dSsnj#endif 243f2e35a3aSmrg#if USE_DOUBLE_BUFFER 244f2e35a3aSmrg Boolean buffered; 245f2e35a3aSmrg int buffered_fps; 246f2e35a3aSmrg#endif 247d522f475Smrg} XTERM_RESOURCE; 248d522f475Smrg 249913cc679Smrgextern Boolean guard_keyboard_type; 250d522f475Smrgextern XTERM_RESOURCE resource; 251d522f475Smrg 25220d2c4d2Smrg#ifdef USE_IGNORE_RC 25320d2c4d2Smrgextern int ignore_unused; 25420d2c4d2Smrg#endif 25520d2c4d2Smrg 256d522f475Smrg#endif /* included_data_h */ 257