388c3eba67
Patch #243 - 2009/3/28 * revert change to default for allowTcapOps (request by Bram Moolenaar). * reallocate result returned by xtermEnvLocale() to avoid reference to freed memory after handling menuLocale resource. * fix an old (X11R5) bug in tek4014 for switching fontsizes. * add resource defaultString to make configurable the use of "#" when pastes of UTF-8 text fail due to limitations in the current locale settings. * make the set of selection target Atom's configurable by two new resources eightBitSelectTypes and utf8SelectTypes, e.g., to use the TEXT Atom in preference to UTF8_STRING (discussion with Stanislav Sedov regarding koi8rxterm and the FreeBSD port). * modify handling of TARGETS Atom by making it return exactly the set of targets as those which xterm is currently providing. * set MANPAGER and PAGER explicitly to /bin/cat in minstall.sh to work around /etc/man.conf's with those variables already set (report by Mar'yasin Semion). * improve error-checking of tcap-query parser. * add check for keyboard tcap), which ensures that terminal descriptions containing the same string for shifted/unshifted keys will be seen by tcap-query as only the unshifted key. (This would only happen with an incorrect terminal description). * fix conversion for input event-state to modifier-parameter which made tcap-query feature not work with tcapFunctionKeys (keyboard type tcap). * add "DEF_ALLOW_XXX" definitions to main.h to allow overriding the default compiled-in values for "allowxxx" resources. * remove check on bell-percentage added in patch #242, which disallowed zero/negative values (Redhat Bugzilla #487829).
96 lines
2.9 KiB
C
96 lines
2.9 KiB
C
/* $XTermId: xtermcap.h,v 1.7 2009/03/15 18:18:11 tom Exp $ */
|
|
|
|
/************************************************************
|
|
|
|
Copyright 2007,2009 by Thomas E. Dickey
|
|
|
|
All Rights Reserved
|
|
|
|
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, 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 LISTED COPYRIGHT HOLDER(S) 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.
|
|
|
|
********************************************************/
|
|
|
|
/*
|
|
* Common/useful definitions for XTERM termcap interface.
|
|
*/
|
|
#ifndef included_xtermcap_h
|
|
#define included_xtermcap_h
|
|
|
|
#include <xterm.h>
|
|
|
|
#include <ptyx.h>
|
|
|
|
#ifdef HAVE_TERMCAP_H
|
|
#include <termcap.h>
|
|
#if defined(NCURSES_VERSION)
|
|
/* The tgetent emulation function in SVr4-style curses implementations
|
|
* (e.g., ncurses) ignores the buffer, so TERMCAP can't be set from it.
|
|
* Instead, just use terminfo.
|
|
*/
|
|
#undef USE_TERMCAP
|
|
#include <curses.h>
|
|
#endif
|
|
#else
|
|
#undef ERR /* workaround for glibc 2.1.3 */
|
|
#include <curses.h>
|
|
#ifdef HAVE_NCURSES_TERM_H
|
|
#include <ncurses/term.h>
|
|
#elif defined(HAVE_TERM_H)
|
|
#include <term.h> /* tgetent() */
|
|
#endif /*CYGWIN */
|
|
#endif /* HAVE_TERMCAP_H */
|
|
|
|
/***====================================================================***/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MOD_NONE 1
|
|
#define MOD_SHIFT 1
|
|
#define MOD_ALT 2
|
|
#define MOD_CTRL 4
|
|
#define MOD_META 8
|
|
|
|
#define MODIFIER_NAME(parm, name) \
|
|
(((parm > MOD_NONE) && ((parm - MOD_NONE) & name)) ? " "#name : "")
|
|
|
|
/* xtermcap.c */
|
|
extern Bool get_termcap(char * /* name */, char * /* buffer */);
|
|
|
|
#if OPT_TCAP_FKEYS
|
|
extern int xtermcapString(XtermWidget /* xw */, int /* keycode */, unsigned /* mask */);
|
|
#endif
|
|
|
|
#if OPT_TCAP_QUERY
|
|
extern int xtermcapKeycode(XtermWidget /* xw */, char ** /* params */, unsigned * /* state */, Bool * /* fkey */);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* included_xtermcap_h */
|