missing ncurses sources
[tomato.git] / release / src / router / libncurses / ncurses / trace / lib_tracemse.c
blob1afd15d2e785075527d44aeb70b44709980f88a8
1 /****************************************************************************
2 * Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
31 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
32 * and: Thomas E. Dickey 1996-on *
33 ****************************************************************************/
36 * lib_tracemse.c - Tracing/Debugging routines (mouse events)
39 #include <curses.priv.h>
41 MODULE_ID("$Id: lib_tracemse.c,v 1.18 2011/01/22 19:48:08 tom Exp $")
43 #ifdef TRACE
45 #define my_buffer sp->tracemse_buf
47 static char *
48 _trace_mmask_t(SCREEN *sp, mmask_t code)
50 #define SHOW(m, s) if ((code & m) == m) strcat(strcat(my_buffer, s), ", ")
52 SHOW(BUTTON1_RELEASED, "release-1");
53 SHOW(BUTTON1_PRESSED, "press-1");
54 SHOW(BUTTON1_CLICKED, "click-1");
55 SHOW(BUTTON1_DOUBLE_CLICKED, "doubleclick-1");
56 SHOW(BUTTON1_TRIPLE_CLICKED, "tripleclick-1");
57 #if NCURSES_MOUSE_VERSION == 1
58 SHOW(BUTTON1_RESERVED_EVENT, "reserved-1");
59 #endif
61 SHOW(BUTTON2_RELEASED, "release-2");
62 SHOW(BUTTON2_PRESSED, "press-2");
63 SHOW(BUTTON2_CLICKED, "click-2");
64 SHOW(BUTTON2_DOUBLE_CLICKED, "doubleclick-2");
65 SHOW(BUTTON2_TRIPLE_CLICKED, "tripleclick-2");
66 #if NCURSES_MOUSE_VERSION == 1
67 SHOW(BUTTON2_RESERVED_EVENT, "reserved-2");
68 #endif
70 SHOW(BUTTON3_RELEASED, "release-3");
71 SHOW(BUTTON3_PRESSED, "press-3");
72 SHOW(BUTTON3_CLICKED, "click-3");
73 SHOW(BUTTON3_DOUBLE_CLICKED, "doubleclick-3");
74 SHOW(BUTTON3_TRIPLE_CLICKED, "tripleclick-3");
75 #if NCURSES_MOUSE_VERSION == 1
76 SHOW(BUTTON3_RESERVED_EVENT, "reserved-3");
77 #endif
79 SHOW(BUTTON4_RELEASED, "release-4");
80 SHOW(BUTTON4_PRESSED, "press-4");
81 SHOW(BUTTON4_CLICKED, "click-4");
82 SHOW(BUTTON4_DOUBLE_CLICKED, "doubleclick-4");
83 SHOW(BUTTON4_TRIPLE_CLICKED, "tripleclick-4");
84 #if NCURSES_MOUSE_VERSION == 1
85 SHOW(BUTTON4_RESERVED_EVENT, "reserved-4");
86 #endif
88 #if NCURSES_MOUSE_VERSION == 2
89 SHOW(BUTTON5_RELEASED, "release-5");
90 SHOW(BUTTON5_PRESSED, "press-5");
91 SHOW(BUTTON5_CLICKED, "click-5");
92 SHOW(BUTTON5_DOUBLE_CLICKED, "doubleclick-5");
93 SHOW(BUTTON5_TRIPLE_CLICKED, "tripleclick-5");
94 #endif
96 SHOW(BUTTON_CTRL, "ctrl");
97 SHOW(BUTTON_SHIFT, "shift");
98 SHOW(BUTTON_ALT, "alt");
99 SHOW(ALL_MOUSE_EVENTS, "all-events");
100 SHOW(REPORT_MOUSE_POSITION, "position");
102 #undef SHOW
104 if (my_buffer[strlen(my_buffer) - 1] == ' ')
105 my_buffer[strlen(my_buffer) - 2] = '\0';
107 return (my_buffer);
110 NCURSES_EXPORT(char *)
111 _nc_tracemouse(SCREEN *sp, MEVENT const *ep)
113 (void) sprintf(my_buffer, TRACEMSE_FMT,
114 ep->id,
115 ep->x,
116 ep->y,
117 ep->z,
118 (unsigned long) ep->bstate);
120 (void) _trace_mmask_t(sp, ep->bstate);
121 (void) strcat(my_buffer, "}");
122 return (my_buffer);
125 NCURSES_EXPORT(mmask_t)
126 _nc_retrace_mmask_t(SCREEN *sp, mmask_t code)
128 *my_buffer = '\0';
129 T((T_RETURN("{%s}"), _trace_mmask_t(sp, code)));
130 return code;
133 NCURSES_EXPORT(char *)
134 _tracemouse(MEVENT const *ep)
136 return _nc_tracemouse(CURRENT_SCREEN, ep);
139 #else /* !TRACE */
140 EMPTY_MODULE(_nc_lib_tracemouse)
141 #endif