1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/* $XTermId: xcharmouse.h,v 1.22 2025/06/15 16:22:31 tom Exp $ */
/************************************************************
Copyright 1997-2020,2025 by Thomas E. Dickey
Copyright 1998 by Jason Bacon
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.
********************************************************/
#ifndef included_xcharmouse_h
#define included_xcharmouse_h
/* *INDENT-OFF* */
/*
* Macros for dpmodes (Thomas Dickey and others):
* J. Bacon, acadix@execpc.com, June 1998
* Steve Wall, September 1999
* Ilya Zakharevich, August 2002
* Ryan Johnson, August 2010
* Egmont Koblinger, December 2011
*/
/* 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
#if OPT_FOCUS_EVENT
#define SET_FOCUS_EVENT_MOUSE 1004 /* can be combined with above */
#endif
#define SET_ALTERNATE_SCROLL 1007 /* wheel mouse may send cursor-keys */
/* Extend mouse tracking for terminals wider(taller) than 223 cols(rows) */
#define SET_EXT_MODE_MOUSE 1005 /* compatible with above */
#define SET_SGR_EXT_MODE_MOUSE 1006
#define SET_URXVT_EXT_MODE_MOUSE 1015
#define SET_PIXEL_POSITION_MOUSE 1016 /* like 1006, but pixels not chars */
#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 */
typedef enum {
MOUSE_OFF
,X10_MOUSE
,VT200_MOUSE
,VT200_HIGHLIGHT_MOUSE
,BTN_EVENT_MOUSE
,ANY_EVENT_MOUSE
,DEC_LOCATOR
} XtermMouseModes;
/* *INDENT-ON* */
#endif /* included_xcharmouse_h */
|