Spaces:
Running
Running
/**************************************************************************** | |
* Copyright 2018-2021,2022 Thomas E. Dickey * | |
* Copyright 1998-2015,2017 Free Software Foundation, Inc. * | |
* * | |
* Permission is hereby granted, free of charge, to any person obtaining a * | |
* copy of this software and associated documentation files (the * | |
* "Software"), to deal in the Software without restriction, including * | |
* without limitation the rights to use, copy, modify, merge, publish, * | |
* distribute, distribute with modifications, sublicense, and/or sell * | |
* copies of the Software, and to permit persons to whom the Software is * | |
* furnished to do so, subject to the following conditions: * | |
* * | |
* The above copyright notice and this permission notice shall be included * | |
* in all copies or substantial portions of the Software. * | |
* * | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * | |
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * | |
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * | |
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * | |
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * | |
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * | |
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. * | |
* * | |
* Except as contained in this notice, the name(s) of the above copyright * | |
* holders shall not be used in advertising or otherwise to promote the * | |
* sale, use or other dealings in this Software without prior written * | |
* authorization. * | |
****************************************************************************/ | |
/**************************************************************************** | |
* Author: Zeyd M. Ben-Halim <[email protected]> 1992,1995 * | |
* and: Eric S. Raymond <[email protected]> * | |
* and: Thomas E. Dickey 1998-on * | |
****************************************************************************/ | |
/* $Id: term_entry.h,v 1.63 2022/09/24 15:04:59 tom Exp $ */ | |
/* | |
* term_entry.h -- interface to entry-manipulation code | |
*/ | |
/* *INDENT-OFF* */ | |
extern "C" { | |
/* | |
* These macros may be used by programs that know about TERMTYPE: | |
*/ | |
/* | |
* The remaining type-definitions and macros are used only internally by the | |
* ncurses utilities. | |
*/ | |
/* | |
* see db_iterator.c - this enumeration lists the places searched for a | |
* terminal description and defines the order in which they are searched. | |
*/ | |
typedef enum { | |
dbdTIC = 0, /* special, used by tic when writing entry */ | |
dbdEnvOnce, /* the $TERMINFO environment variable */ | |
dbdHome, /* $HOME/.terminfo */ | |
dbdEnvList, /* the $TERMINFO_DIRS environment variable */ | |
dbdCfgList, /* the compiled-in TERMINFO_DIRS value */ | |
dbdCfgOnce, /* the compiled-in TERMINFO value */ | |
dbdEnvOnce2, /* the $TERMCAP environment variable */ | |
dbdEnvList2, /* the $TERMPATH environment variable */ | |
dbdCfgList2, /* the compiled-in TERMPATH */ | |
dbdLAST | |
} DBDIRS; | |
typedef struct entry ENTRY; | |
typedef struct { | |
char *name; | |
ENTRY *link; | |
long line; | |
} ENTRY_USES; | |
struct entry { | |
TERMTYPE2 tterm; | |
unsigned nuses; | |
ENTRY_USES uses[MAX_USES]; | |
int ncrosslinks; | |
ENTRY *crosslinks[MAX_CROSSLINKS]; | |
long cstart; | |
long cend; | |
long startline; | |
ENTRY *next; | |
ENTRY *last; | |
}; | |
extern NCURSES_EXPORT_VAR(ENTRY *) _nc_head; | |
extern NCURSES_EXPORT_VAR(ENTRY *) _nc_tail; | |
/* | |
* Note that WANTED and PRESENT are not simple inverses! If a capability | |
* has been explicitly cancelled, it is not considered WANTED. | |
*/ | |
/* | |
* These entrypoints are used only by the ncurses utilities such as tic. | |
*/ | |
/* alloc_entry.c: elementary allocation code */ | |
extern NCURSES_EXPORT(ENTRY *) _nc_copy_entry (ENTRY *oldp); | |
extern NCURSES_EXPORT(char *) _nc_save_str (const char *const); | |
extern NCURSES_EXPORT(void) _nc_init_entry (ENTRY *const); | |
extern NCURSES_EXPORT(void) _nc_merge_entry (ENTRY *const, ENTRY *const); | |
extern NCURSES_EXPORT(void) _nc_wrap_entry (ENTRY *const, bool); | |
/* alloc_ttype.c: elementary allocation code */ | |
extern NCURSES_EXPORT(void) _nc_align_termtype (TERMTYPE2 *, TERMTYPE2 *); | |
/* free_ttype.c: elementary allocation code */ | |
extern NCURSES_EXPORT(void) _nc_free_termtype1 (TERMTYPE *); | |
extern NCURSES_EXPORT(void) _nc_free_termtype2 (TERMTYPE2 *); | |
/* lib_termcap.c: trim sgr0 string for termcap users */ | |
extern NCURSES_EXPORT(char *) _nc_trim_sgr0 (TERMTYPE2 *); | |
/* parse_entry.c: entry-parsing code */ | |
extern NCURSES_EXPORT_VAR(bool) _nc_user_definable; | |
extern NCURSES_EXPORT_VAR(bool) _nc_disable_period; | |
extern NCURSES_EXPORT(int) _nc_parse_entry (ENTRY *, int, bool); | |
extern NCURSES_EXPORT(int) _nc_capcmp (const char *, const char *); | |
/* write_entry.c: writing an entry to the file system */ | |
extern NCURSES_EXPORT(void) _nc_set_writedir (const char *); | |
extern NCURSES_EXPORT(void) _nc_write_entry (TERMTYPE2 *const); | |
extern NCURSES_EXPORT(int) _nc_write_object (TERMTYPE2 *, char *, unsigned *, unsigned); | |
/* comp_parse.c: entry list handling */ | |
extern NCURSES_EXPORT(void) _nc_read_entry_source (FILE*, char*, int, bool, bool (*)(ENTRY*)); | |
extern NCURSES_EXPORT(bool) _nc_entry_match (char *, char *); | |
extern NCURSES_EXPORT(int) _nc_resolve_uses (bool); /* obs 20040705 */ | |
extern NCURSES_EXPORT(int) _nc_resolve_uses2 (bool, bool); | |
extern NCURSES_EXPORT(void) _nc_free_entries (ENTRY *); | |
extern NCURSES_IMPEXP void (NCURSES_API *_nc_check_termtype)(TERMTYPE *); /* obs 20040705 */ | |
extern NCURSES_IMPEXP void (NCURSES_API *_nc_check_termtype2)(TERMTYPE2 *, bool); | |
/* trace_xnames.c */ | |
extern NCURSES_EXPORT(void) _nc_trace_xnames (TERMTYPE *); | |
/* | |
* These entrypoints were used by tack before 1.08. | |
*/ | |
/* alloc_ttype.c: elementary allocation code */ | |
extern NCURSES_EXPORT(void) _nc_copy_termtype (TERMTYPE *, const TERMTYPE *) NCURSES_TACK_1_08; | |
/* lib_acs.c */ | |
extern NCURSES_EXPORT(void) _nc_init_acs (void) NCURSES_TACK_1_08; /* corresponds to traditional 'init_acs()' */ | |
/* free_ttype.c: elementary allocation code */ | |
extern NCURSES_EXPORT(void) _nc_free_termtype (TERMTYPE *) NCURSES_TACK_1_08; | |
} | |
/* *INDENT-ON* */ | |