diff options
Diffstat (limited to 'nx-X11/programs/xterm/xcharmouse.h')
-rw-r--r-- | nx-X11/programs/xterm/xcharmouse.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/nx-X11/programs/xterm/xcharmouse.h b/nx-X11/programs/xterm/xcharmouse.h new file mode 100644 index 000000000..c1f257e96 --- /dev/null +++ b/nx-X11/programs/xterm/xcharmouse.h @@ -0,0 +1,76 @@ +/* + * $XFree86: xc/programs/xterm/xcharmouse.h,v 1.3 2002/08/24 18:54:39 dickey Exp $ + */ + +/************************************************************ + +Copyright 1998 by Jason Bacon <acadix@execpc.com> + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of the above listed +copyright holder(s) not be used in advertising or publicity pertaining +to distribution of the software without specific, written prior +permission. + +THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD +TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE +LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +********************************************************/ + +#ifndef included_xcharmouse_h +#define included_xcharmouse_h + +/* + * Macros for dpmodes + * J. Bacon, acadix@execpc.com, June 1998 + * Steve Wall, September 1999 + * Ilya Zakharevich, August 2002 + */ + +/* DECSET arguments for turning on mouse reporting modes */ +#define SET_X10_MOUSE 9 +#define SET_VT200_MOUSE 1000 +#define SET_VT200_HIGHLIGHT_MOUSE 1001 +#define SET_BTN_EVENT_MOUSE 1002 +#define SET_ANY_EVENT_MOUSE 1003 + +#define SET_BUTTON1_MOVE_POINT 2001 /* click1 emit Esc seq to move point*/ +#define SET_BUTTON2_MOVE_POINT 2002 /* press2 emit Esc seq to move point*/ +#define SET_DBUTTON3_DELETE 2003 /* Double click-3 deletes */ +#define SET_PASTE_IN_BRACKET 2004 /* Surround paste by escapes */ +#define SET_PASTE_QUOTE 2005 /* Quote each char during paste */ +#define SET_PASTE_LITERAL_NL 2006 /* Paste "\n" as C-j */ + +#if OPT_DEC_LOCATOR + +/* Bit fields for screen->locator_events */ +#define LOC_BTNS_DN 0x1 +#define LOC_BTNS_UP 0x2 + +/* Special values for screen->loc_filter_* */ +#define LOC_FILTER_POS -1 + +#endif /* OPT_DEC_LOCATOR */ + +/* Values for screen->send_mouse_pos */ +enum { + MOUSE_OFF + ,X10_MOUSE + ,VT200_MOUSE + ,VT200_HIGHLIGHT_MOUSE + ,BTN_EVENT_MOUSE + ,ANY_EVENT_MOUSE + ,DEC_LOCATOR +}; + +#endif /* included_xcharmouse_h */ |