Mercurial > hg > xemacs-beta
annotate src/events.c @ 5126:2a462149bd6a ben-lisp-object
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 24 Feb 2010 19:04:27 -0600 |
parents | b5df3737028a 79564cbad5f3 |
children | e5380fdaf8f1 f965e31a35f0 |
rev | line source |
---|---|
428 | 1 /* Events: printing them, converting them to and from characters. |
2 Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | |
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois. | |
5046 | 4 Copyright (C) 2001, 2002, 2005, 2010 Ben Wing. |
428 | 5 |
6 This file is part of XEmacs. | |
7 | |
8 XEmacs is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
10 Free Software Foundation; either version 2, or (at your option) any | |
11 later version. | |
12 | |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | |
23 /* Synched up with: Not in FSF. */ | |
24 | |
25 /* This file has been Mule-ized. */ | |
26 | |
27 #include <config.h> | |
28 #include "lisp.h" | |
29 #include "buffer.h" | |
30 #include "console.h" | |
31 #include "device.h" | |
788 | 32 #include "extents.h" |
428 | 33 #include "events.h" |
872 | 34 #include "frame-impl.h" |
428 | 35 #include "glyphs.h" |
36 #include "keymap.h" /* for key_desc_list_to_event() */ | |
788 | 37 #include "lstream.h" |
428 | 38 #include "redisplay.h" |
800 | 39 #include "toolbar.h" |
428 | 40 #include "window.h" |
41 | |
872 | 42 #include "console-tty-impl.h" /* for stuff in character_to_event */ |
800 | 43 |
428 | 44 /* Where old events go when they are explicitly deallocated. |
45 The event chain here is cut loose before GC, so these will be freed | |
46 eventually. | |
47 */ | |
48 static Lisp_Object Vevent_resource; | |
49 | |
50 Lisp_Object Qeventp; | |
51 Lisp_Object Qevent_live_p; | |
52 Lisp_Object Qkey_press_event_p; | |
53 Lisp_Object Qbutton_event_p; | |
54 Lisp_Object Qmouse_event_p; | |
55 Lisp_Object Qprocess_event_p; | |
56 | |
57 Lisp_Object Qkey_press, Qbutton_press, Qbutton_release, Qmisc_user; | |
2828 | 58 Lisp_Object Qcharacter_of_keysym, Qascii_character; |
428 | 59 |
771 | 60 |
61 /************************************************************************/ | |
62 /* definition of event object */ | |
63 /************************************************************************/ | |
428 | 64 |
65 /* #### Ad-hoc hack. Should be part of define_lrecord_implementation */ | |
66 void | |
67 clear_event_resource (void) | |
68 { | |
69 Vevent_resource = Qnil; | |
70 } | |
71 | |
934 | 72 /* Make sure we lose quickly if we try to use this event */ |
73 static void | |
74 deinitialize_event (Lisp_Object ev) | |
75 { | |
76 Lisp_Event *event = XEVENT (ev); | |
3063 | 77 int i; |
78 /* Preserve the old UID for this event, for tracking it */ | |
79 unsigned int old_uid = event->lheader.uid; | |
934 | 80 |
1204 | 81 for (i = 0; i < (int) (sizeof (Lisp_Event) / sizeof (int)); i++) |
82 ((int *) event) [i] = 0xdeadbeef; /* -559038737 base 10 */ | |
83 set_lheader_implementation (&event->lheader, &lrecord_event); | |
3063 | 84 event->lheader.uid = old_uid; |
934 | 85 set_event_type (event, dead_event); |
86 SET_EVENT_CHANNEL (event, Qnil); | |
428 | 87 XSET_EVENT_NEXT (ev, Qnil); |
88 } | |
89 | |
90 /* Set everything to zero or nil so that it's predictable. */ | |
91 void | |
440 | 92 zero_event (Lisp_Event *e) |
428 | 93 { |
3063 | 94 /* Preserve the old UID for this event, for tracking it */ |
95 unsigned int old_uid = e->lheader.uid; | |
96 | |
428 | 97 xzero (*e); |
442 | 98 set_lheader_implementation (&e->lheader, &lrecord_event); |
3063 | 99 e->lheader.uid = old_uid; |
1204 | 100 set_event_type (e, empty_event); |
101 SET_EVENT_CHANNEL (e, Qnil); | |
102 SET_EVENT_NEXT (e, Qnil); | |
428 | 103 } |
104 | |
1204 | 105 static const struct memory_description key_data_description_1 [] = { |
106 { XD_LISP_OBJECT, offsetof (struct Lisp_Key_Data, keysym) }, | |
107 { XD_END } | |
108 }; | |
109 | |
110 static const struct sized_memory_description key_data_description = { | |
111 sizeof (Lisp_Key_Data), key_data_description_1 | |
112 }; | |
113 | |
114 static const struct memory_description button_data_description_1 [] = { | |
115 { XD_END } | |
116 }; | |
117 | |
118 static const struct sized_memory_description button_data_description = { | |
119 sizeof (Lisp_Button_Data), button_data_description_1 | |
120 }; | |
121 | |
122 static const struct memory_description motion_data_description_1 [] = { | |
123 { XD_END } | |
124 }; | |
125 | |
126 static const struct sized_memory_description motion_data_description = { | |
127 sizeof (Lisp_Motion_Data), motion_data_description_1 | |
128 }; | |
129 | |
130 static const struct memory_description process_data_description_1 [] = { | |
131 { XD_LISP_OBJECT, offsetof (struct Lisp_Process_Data, process) }, | |
132 { XD_END } | |
133 }; | |
134 | |
135 static const struct sized_memory_description process_data_description = { | |
136 sizeof (Lisp_Process_Data), process_data_description_1 | |
137 }; | |
138 | |
139 static const struct memory_description timeout_data_description_1 [] = { | |
140 { XD_LISP_OBJECT, offsetof (struct Lisp_Timeout_Data, function) }, | |
141 { XD_LISP_OBJECT, offsetof (struct Lisp_Timeout_Data, object) }, | |
142 { XD_END } | |
143 }; | |
144 | |
145 static const struct sized_memory_description timeout_data_description = { | |
146 sizeof (Lisp_Timeout_Data), timeout_data_description_1 | |
147 }; | |
148 | |
149 static const struct memory_description eval_data_description_1 [] = { | |
150 { XD_LISP_OBJECT, offsetof (struct Lisp_Eval_Data, function) }, | |
151 { XD_LISP_OBJECT, offsetof (struct Lisp_Eval_Data, object) }, | |
152 { XD_END } | |
153 }; | |
154 | |
155 static const struct sized_memory_description eval_data_description = { | |
156 sizeof (Lisp_Eval_Data), eval_data_description_1 | |
157 }; | |
158 | |
159 static const struct memory_description misc_user_data_description_1 [] = { | |
160 { XD_LISP_OBJECT, offsetof (struct Lisp_Misc_User_Data, function) }, | |
161 { XD_LISP_OBJECT, offsetof (struct Lisp_Misc_User_Data, object) }, | |
162 { XD_END } | |
163 }; | |
164 | |
165 static const struct sized_memory_description misc_user_data_description = { | |
166 sizeof (Lisp_Misc_User_Data), misc_user_data_description_1 | |
167 }; | |
168 | |
169 static const struct memory_description magic_eval_data_description_1 [] = { | |
170 { XD_LISP_OBJECT, offsetof (struct Lisp_Magic_Eval_Data, object) }, | |
171 { XD_END } | |
172 }; | |
173 | |
174 static const struct sized_memory_description magic_eval_data_description = { | |
175 sizeof (Lisp_Magic_Eval_Data), magic_eval_data_description_1 | |
176 }; | |
177 | |
178 static const struct memory_description magic_data_description_1 [] = { | |
179 { XD_END } | |
180 }; | |
181 | |
182 static const struct sized_memory_description magic_data_description = { | |
183 sizeof (Lisp_Magic_Data), magic_data_description_1 | |
184 }; | |
185 | |
186 static const struct memory_description event_data_description_1 [] = { | |
2551 | 187 { XD_BLOCK_ARRAY, key_press_event, 1, { &key_data_description } }, |
188 { XD_BLOCK_ARRAY, button_press_event, 1, { &button_data_description } }, | |
189 { XD_BLOCK_ARRAY, button_release_event, 1, { &button_data_description } }, | |
190 { XD_BLOCK_ARRAY, pointer_motion_event, 1, { &motion_data_description } }, | |
191 { XD_BLOCK_ARRAY, process_event, 1, { &process_data_description } }, | |
192 { XD_BLOCK_ARRAY, timeout_event, 1, { &timeout_data_description } }, | |
193 { XD_BLOCK_ARRAY, magic_event, 1, { &magic_data_description } }, | |
194 { XD_BLOCK_ARRAY, magic_eval_event, 1, { &magic_eval_data_description } }, | |
195 { XD_BLOCK_ARRAY, eval_event, 1, { &eval_data_description } }, | |
196 { XD_BLOCK_ARRAY, misc_user_event, 1, { &misc_user_data_description } }, | |
1204 | 197 { XD_END } |
198 }; | |
199 | |
200 static const struct sized_memory_description event_data_description = { | |
201 0, event_data_description_1 | |
202 }; | |
203 | |
204 static const struct memory_description event_description [] = { | |
205 { XD_INT, offsetof (struct Lisp_Event, event_type) }, | |
206 { XD_LISP_OBJECT, offsetof (struct Lisp_Event, next) }, | |
207 { XD_LISP_OBJECT, offsetof (struct Lisp_Event, channel) }, | |
208 { XD_UNION, offsetof (struct Lisp_Event, event), | |
2551 | 209 XD_INDIRECT (0, 0), { &event_data_description } }, |
1204 | 210 { XD_END } |
211 }; | |
212 | |
213 #ifdef EVENT_DATA_AS_OBJECTS | |
214 | |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
215 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("key-data", key_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
216 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
217 key_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
218 Lisp_Key_Data); |
1204 | 219 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
220 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("button-data", button_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
221 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
222 button_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
223 Lisp_Button_Data); |
1204 | 224 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
225 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("motion-data", motion_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
226 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
227 motion_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
228 Lisp_Motion_Data); |
1204 | 229 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
230 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("process-data", process_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
231 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
232 process_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
233 Lisp_Process_Data); |
1204 | 234 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
235 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("timeout-data", timeout_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
236 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
237 timeout_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
238 Lisp_Timeout_Data); |
1204 | 239 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
240 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("eval-data", eval_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
241 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
242 eval_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
243 Lisp_Eval_Data); |
1204 | 244 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
245 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("misc-user-data", misc_user_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
246 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
247 misc_user_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
248 Lisp_Misc_User_Data); |
1204 | 249 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
250 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("magic-eval-data", magic_eval_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
251 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
252 magic_eval_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
253 Lisp_Magic_Eval_Data); |
1204 | 254 |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
255 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("magic-data", magic_data, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
256 0, internal_object_printer, 0, 0, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
257 magic_data_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
258 Lisp_Magic_Data); |
1204 | 259 |
260 #endif /* EVENT_DATA_AS_OBJECTS */ | |
261 | |
428 | 262 static Lisp_Object |
263 mark_event (Lisp_Object obj) | |
264 { | |
440 | 265 Lisp_Event *event = XEVENT (obj); |
428 | 266 |
267 switch (event->event_type) | |
268 { | |
269 case key_press_event: | |
1204 | 270 mark_object (EVENT_KEY_KEYSYM (event)); |
428 | 271 break; |
272 case process_event: | |
1204 | 273 mark_object (EVENT_PROCESS_PROCESS (event)); |
428 | 274 break; |
275 case timeout_event: | |
1204 | 276 mark_object (EVENT_TIMEOUT_FUNCTION (event)); |
277 mark_object (EVENT_TIMEOUT_OBJECT (event)); | |
428 | 278 break; |
279 case eval_event: | |
280 case misc_user_event: | |
1204 | 281 mark_object (EVENT_EVAL_FUNCTION (event)); |
282 mark_object (EVENT_EVAL_OBJECT (event)); | |
428 | 283 break; |
284 case magic_eval_event: | |
1204 | 285 mark_object (EVENT_MAGIC_EVAL_OBJECT (event)); |
428 | 286 break; |
287 case button_press_event: | |
288 case button_release_event: | |
289 case pointer_motion_event: | |
290 case magic_event: | |
291 case empty_event: | |
292 case dead_event: | |
293 break; | |
294 default: | |
2500 | 295 ABORT (); |
428 | 296 } |
297 mark_object (event->channel); | |
298 return event->next; | |
299 } | |
300 | |
301 static void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
302 print_event_1 (const Ascbyte *str, Lisp_Object obj, Lisp_Object printcharfun) |
428 | 303 { |
793 | 304 DECLARE_EISTRING_MALLOC (ei); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
305 write_ascstring (printcharfun, str); |
1204 | 306 format_event_object (ei, obj, 0); |
826 | 307 write_eistring (printcharfun, ei); |
793 | 308 eifree (ei); |
428 | 309 } |
310 | |
311 static void | |
2286 | 312 print_event (Lisp_Object obj, Lisp_Object printcharfun, |
313 int UNUSED (escapeflag)) | |
428 | 314 { |
315 if (print_readably) | |
563 | 316 printing_unreadable_object ("#<event>"); |
428 | 317 |
318 switch (XEVENT (obj)->event_type) | |
319 { | |
320 case key_press_event: | |
321 print_event_1 ("#<keypress-event ", obj, printcharfun); | |
322 break; | |
323 case button_press_event: | |
324 print_event_1 ("#<buttondown-event ", obj, printcharfun); | |
325 break; | |
326 case button_release_event: | |
327 print_event_1 ("#<buttonup-event ", obj, printcharfun); | |
328 break; | |
329 case magic_event: | |
330 case magic_eval_event: | |
331 print_event_1 ("#<magic-event ", obj, printcharfun); | |
332 break; | |
333 case pointer_motion_event: | |
334 { | |
335 Lisp_Object Vx, Vy; | |
336 Vx = Fevent_x_pixel (obj); | |
337 assert (INTP (Vx)); | |
338 Vy = Fevent_y_pixel (obj); | |
339 assert (INTP (Vy)); | |
793 | 340 write_fmt_string (printcharfun, "#<motion-event %ld, %ld", |
341 (long) XINT (Vx), (long) XINT (Vy)); | |
428 | 342 break; |
343 } | |
344 case process_event: | |
1204 | 345 write_fmt_string_lisp (printcharfun, "#<process-event %S", 1, |
346 XEVENT_PROCESS_PROCESS (obj)); | |
428 | 347 break; |
348 case timeout_event: | |
1204 | 349 write_fmt_string_lisp (printcharfun, "#<timeout-event %S", 1, |
350 XEVENT_TIMEOUT_OBJECT (obj)); | |
428 | 351 break; |
352 case empty_event: | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
353 write_ascstring (printcharfun, "#<empty-event"); |
428 | 354 break; |
355 case misc_user_event: | |
1204 | 356 write_fmt_string_lisp (printcharfun, "#<misc-user-event (%S", 1, |
357 XEVENT_MISC_USER_FUNCTION (obj)); | |
358 write_fmt_string_lisp (printcharfun, " %S)", 1, | |
359 XEVENT_MISC_USER_OBJECT (obj)); | |
428 | 360 break; |
361 case eval_event: | |
1204 | 362 write_fmt_string_lisp (printcharfun, "#<eval-event (%S", 1, |
363 XEVENT_EVAL_FUNCTION (obj)); | |
364 write_fmt_string_lisp (printcharfun, " %S)", 1, | |
365 XEVENT_EVAL_OBJECT (obj)); | |
428 | 366 break; |
367 case dead_event: | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
368 write_ascstring (printcharfun, "#<DEALLOCATED-EVENT"); |
428 | 369 break; |
370 default: | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
371 write_ascstring (printcharfun, "#<UNKNOWN-EVENT-TYPE"); |
428 | 372 break; |
373 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
374 write_ascstring (printcharfun, ">"); |
428 | 375 } |
376 | |
377 static int | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
378 event_equal (Lisp_Object obj1, Lisp_Object obj2, int UNUSED (depth), |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4780
diff
changeset
|
379 int UNUSED (foldcase)) |
428 | 380 { |
440 | 381 Lisp_Event *e1 = XEVENT (obj1); |
382 Lisp_Event *e2 = XEVENT (obj2); | |
428 | 383 |
384 if (e1->event_type != e2->event_type) return 0; | |
385 if (!EQ (e1->channel, e2->channel)) return 0; | |
386 /* if (e1->timestamp != e2->timestamp) return 0; */ | |
387 switch (e1->event_type) | |
388 { | |
2500 | 389 default: ABORT (); |
428 | 390 |
391 case process_event: | |
1204 | 392 return EQ (EVENT_PROCESS_PROCESS (e1), EVENT_PROCESS_PROCESS (e2)); |
428 | 393 |
394 case timeout_event: | |
1204 | 395 return (internal_equal (EVENT_TIMEOUT_FUNCTION (e1), |
396 EVENT_TIMEOUT_FUNCTION (e2), 0) && | |
397 internal_equal (EVENT_TIMEOUT_OBJECT (e1), | |
398 EVENT_TIMEOUT_OBJECT (e2), 0)); | |
428 | 399 |
400 case key_press_event: | |
1204 | 401 return (EQ (EVENT_KEY_KEYSYM (e1), EVENT_KEY_KEYSYM (e2)) && |
402 (EVENT_KEY_MODIFIERS (e1) == EVENT_KEY_MODIFIERS (e2))); | |
428 | 403 |
404 case button_press_event: | |
405 case button_release_event: | |
1204 | 406 return (EVENT_BUTTON_BUTTON (e1) == EVENT_BUTTON_BUTTON (e2) && |
407 EVENT_BUTTON_MODIFIERS (e1) == EVENT_BUTTON_MODIFIERS (e2)); | |
428 | 408 |
409 case pointer_motion_event: | |
1204 | 410 return (EVENT_MOTION_X (e1) == EVENT_MOTION_X (e2) && |
411 EVENT_MOTION_Y (e1) == EVENT_MOTION_Y (e2)); | |
428 | 412 |
413 case misc_user_event: | |
1204 | 414 return (internal_equal (EVENT_EVAL_FUNCTION (e1), |
415 EVENT_EVAL_FUNCTION (e2), 0) && | |
416 internal_equal (EVENT_EVAL_OBJECT (e1), | |
417 EVENT_EVAL_OBJECT (e2), 0) && | |
418 /* #### is this really needed for equality | |
428 | 419 or is x and y also important? */ |
1204 | 420 EVENT_MISC_USER_BUTTON (e1) == EVENT_MISC_USER_BUTTON (e2) && |
421 EVENT_MISC_USER_MODIFIERS (e1) == EVENT_MISC_USER_MODIFIERS (e2)); | |
428 | 422 |
423 case eval_event: | |
1204 | 424 return (internal_equal (EVENT_EVAL_FUNCTION (e1), |
425 EVENT_EVAL_FUNCTION (e2), 0) && | |
426 internal_equal (EVENT_EVAL_OBJECT (e1), | |
427 EVENT_EVAL_OBJECT (e2), 0)); | |
428 | 428 |
429 case magic_eval_event: | |
1204 | 430 return (EVENT_MAGIC_EVAL_INTERNAL_FUNCTION (e1) == |
431 EVENT_MAGIC_EVAL_INTERNAL_FUNCTION (e2) && | |
432 internal_equal (EVENT_MAGIC_EVAL_OBJECT (e1), | |
433 EVENT_MAGIC_EVAL_OBJECT (e2), 0)); | |
428 | 434 |
435 case magic_event: | |
788 | 436 return event_stream_compare_magic_event (e1, e2); |
428 | 437 |
438 case empty_event: /* Empty and deallocated events are equal. */ | |
439 case dead_event: | |
440 return 1; | |
441 } | |
442 } | |
443 | |
665 | 444 static Hashcode |
428 | 445 event_hash (Lisp_Object obj, int depth) |
446 { | |
440 | 447 Lisp_Event *e = XEVENT (obj); |
665 | 448 Hashcode hash; |
428 | 449 |
450 hash = HASH2 (e->event_type, LISP_HASH (e->channel)); | |
451 switch (e->event_type) | |
452 { | |
453 case process_event: | |
1204 | 454 return HASH2 (hash, LISP_HASH (EVENT_PROCESS_PROCESS (e))); |
428 | 455 |
456 case timeout_event: | |
1204 | 457 return HASH3 (hash, |
458 internal_hash (EVENT_TIMEOUT_FUNCTION (e), depth + 1), | |
459 internal_hash (EVENT_TIMEOUT_OBJECT (e), depth + 1)); | |
428 | 460 |
461 case key_press_event: | |
1204 | 462 return HASH3 (hash, LISP_HASH (EVENT_KEY_KEYSYM (e)), |
463 EVENT_KEY_MODIFIERS (e)); | |
428 | 464 |
465 case button_press_event: | |
466 case button_release_event: | |
1204 | 467 return HASH3 (hash, EVENT_BUTTON_BUTTON (e), EVENT_BUTTON_MODIFIERS (e)); |
428 | 468 |
469 case pointer_motion_event: | |
1204 | 470 return HASH3 (hash, EVENT_MOTION_X (e), EVENT_MOTION_Y (e)); |
428 | 471 |
472 case misc_user_event: | |
1204 | 473 return HASH5 (hash, |
474 internal_hash (EVENT_MISC_USER_FUNCTION (e), depth + 1), | |
475 internal_hash (EVENT_MISC_USER_OBJECT (e), depth + 1), | |
476 EVENT_MISC_USER_BUTTON (e), EVENT_MISC_USER_MODIFIERS (e)); | |
428 | 477 |
478 case eval_event: | |
1204 | 479 return HASH3 (hash, internal_hash (EVENT_EVAL_FUNCTION (e), depth + 1), |
480 internal_hash (EVENT_EVAL_OBJECT (e), depth + 1)); | |
428 | 481 |
482 case magic_eval_event: | |
483 return HASH3 (hash, | |
1204 | 484 (Hashcode) EVENT_MAGIC_EVAL_INTERNAL_FUNCTION (e), |
485 internal_hash (EVENT_MAGIC_EVAL_OBJECT (e), depth + 1)); | |
428 | 486 |
487 case magic_event: | |
788 | 488 return HASH2 (hash, event_stream_hash_magic_event (e)); |
428 | 489 |
490 case empty_event: | |
491 case dead_event: | |
492 return hash; | |
493 | |
494 default: | |
2500 | 495 ABORT (); |
428 | 496 } |
497 | |
498 return 0; /* unreached */ | |
499 } | |
934 | 500 |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
501 DEFINE_NODUMP_FROB_BLOCK_LISP_OBJECT ("event", event, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
502 mark_event, print_event, 0, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
503 event_equal, event_hash, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
504 event_description, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
505 Lisp_Event); |
428 | 506 |
507 DEFUN ("make-event", Fmake_event, 0, 2, 0, /* | |
508 Return a new event of type TYPE, with properties described by PLIST. | |
509 | |
510 TYPE is a symbol, either `empty', `key-press', `button-press', | |
511 `button-release', `misc-user' or `motion'. If TYPE is nil, it | |
512 defaults to `empty'. | |
513 | |
514 PLIST is a property list, the properties being compatible to those | |
515 returned by `event-properties'. The following properties are | |
516 allowed: | |
517 | |
518 channel -- The event channel, a frame or a console. For | |
519 button-press, button-release, misc-user and motion events, | |
520 this must be a frame. For key-press events, it must be | |
521 a console. If channel is unspecified, it will be set to | |
522 the selected frame or selected console, as appropriate. | |
523 key -- The event key, a symbol or character. Allowed only for | |
524 keypress events. | |
525 button -- The event button, integer 1, 2 or 3. Allowed for | |
526 button-press, button-release and misc-user events. | |
527 modifiers -- The event modifiers, a list of modifier symbols. Allowed | |
528 for key-press, button-press, button-release, motion and | |
529 misc-user events. | |
530 function -- Function. Allowed for misc-user events only. | |
531 object -- An object, function's parameter. Allowed for misc-user | |
532 events only. | |
533 x -- The event X coordinate, an integer. This is relative | |
534 to the left of CHANNEL's root window. Allowed for | |
535 motion, button-press, button-release and misc-user events. | |
536 y -- The event Y coordinate, an integer. This is relative | |
537 to the top of CHANNEL's root window. Allowed for | |
538 motion, button-press, button-release and misc-user events. | |
539 timestamp -- The event timestamp, a non-negative integer. Allowed for | |
540 all types of events. If unspecified, it will be set to 0 | |
541 by default. | |
542 | |
543 For event type `empty', PLIST must be nil. | |
544 `button-release', or `motion'. If TYPE is left out, it defaults to | |
545 `empty'. | |
546 PLIST is a list of properties, as returned by `event-properties'. Not | |
547 all properties are allowed for all kinds of events, and some are | |
548 required. | |
549 | |
550 WARNING: the event object returned may be a reused one; see the function | |
551 `deallocate-event'. | |
552 */ | |
553 (type, plist)) | |
554 { | |
555 Lisp_Object event = Qnil; | |
440 | 556 Lisp_Event *e; |
428 | 557 EMACS_INT coord_x = 0, coord_y = 0; |
558 struct gcpro gcpro1; | |
559 | |
560 GCPRO1 (event); | |
561 | |
562 if (NILP (type)) | |
563 type = Qempty; | |
564 | |
565 if (!NILP (Vevent_resource)) | |
566 { | |
567 event = Vevent_resource; | |
568 Vevent_resource = XEVENT_NEXT (event); | |
569 } | |
570 else | |
571 { | |
572 event = allocate_event (); | |
573 } | |
574 e = XEVENT (event); | |
575 zero_event (e); | |
576 | |
577 if (EQ (type, Qempty)) | |
578 { | |
579 /* For empty event, we return immediately, without processing | |
580 PLIST. In fact, processing PLIST would be wrong, because the | |
581 sanitizing process would fill in the properties | |
582 (e.g. CHANNEL), which we don't want in empty events. */ | |
934 | 583 set_event_type (e, empty_event); |
428 | 584 if (!NILP (plist)) |
563 | 585 invalid_operation ("Cannot set properties of empty event", plist); |
428 | 586 UNGCPRO; |
587 return event; | |
588 } | |
589 else if (EQ (type, Qkey_press)) | |
590 { | |
934 | 591 set_event_type (e, key_press_event); |
1204 | 592 SET_EVENT_KEY_KEYSYM (e, Qunbound); |
428 | 593 } |
594 else if (EQ (type, Qbutton_press)) | |
934 | 595 set_event_type (e, button_press_event); |
428 | 596 else if (EQ (type, Qbutton_release)) |
934 | 597 set_event_type (e, button_release_event); |
428 | 598 else if (EQ (type, Qmotion)) |
934 | 599 set_event_type (e, pointer_motion_event); |
428 | 600 else if (EQ (type, Qmisc_user)) |
601 { | |
934 | 602 set_event_type (e, misc_user_event); |
1204 | 603 SET_EVENT_MISC_USER_FUNCTION (e, Qnil); |
604 SET_EVENT_MISC_USER_OBJECT (e, Qnil); | |
428 | 605 } |
606 else | |
607 { | |
608 /* Not allowed: Qprocess, Qtimeout, Qmagic, Qeval, Qmagic_eval. */ | |
563 | 609 invalid_constant ("Invalid event type", type); |
428 | 610 } |
611 | |
612 EVENT_CHANNEL (e) = Qnil; | |
613 | |
614 plist = Fcopy_sequence (plist); | |
615 Fcanonicalize_plist (plist, Qnil); | |
616 | |
442 | 617 #define WRONG_EVENT_TYPE_FOR_PROPERTY(event_type, prop) \ |
563 | 618 invalid_argument_2 ("Invalid property for event type", prop, event_type) |
428 | 619 |
442 | 620 { |
621 EXTERNAL_PROPERTY_LIST_LOOP_3 (keyword, value, plist) | |
622 { | |
623 if (EQ (keyword, Qchannel)) | |
624 { | |
1204 | 625 if (EVENT_TYPE (e) == key_press_event) |
442 | 626 { |
627 if (!CONSOLEP (value)) | |
628 value = wrong_type_argument (Qconsolep, value); | |
629 } | |
630 else | |
631 { | |
632 if (!FRAMEP (value)) | |
633 value = wrong_type_argument (Qframep, value); | |
634 } | |
635 EVENT_CHANNEL (e) = value; | |
636 } | |
637 else if (EQ (keyword, Qkey)) | |
638 { | |
1204 | 639 switch (EVENT_TYPE (e)) |
442 | 640 { |
641 case key_press_event: | |
642 if (!SYMBOLP (value) && !CHARP (value)) | |
563 | 643 invalid_argument ("Invalid event key", value); |
1204 | 644 SET_EVENT_KEY_KEYSYM (e, value); |
442 | 645 break; |
646 default: | |
647 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
648 break; | |
649 } | |
650 } | |
651 else if (EQ (keyword, Qbutton)) | |
652 { | |
653 CHECK_NATNUM (value); | |
654 check_int_range (XINT (value), 0, 7); | |
428 | 655 |
1204 | 656 switch (EVENT_TYPE (e)) |
442 | 657 { |
658 case button_press_event: | |
659 case button_release_event: | |
1204 | 660 SET_EVENT_BUTTON_BUTTON (e, XINT (value)); |
442 | 661 break; |
662 case misc_user_event: | |
1204 | 663 SET_EVENT_MISC_USER_BUTTON (e, XINT (value)); |
442 | 664 break; |
665 default: | |
666 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
667 break; | |
668 } | |
669 } | |
670 else if (EQ (keyword, Qmodifiers)) | |
671 { | |
672 int modifiers = 0; | |
428 | 673 |
442 | 674 EXTERNAL_LIST_LOOP_2 (sym, value) |
675 { | |
676 if (EQ (sym, Qcontrol)) modifiers |= XEMACS_MOD_CONTROL; | |
677 else if (EQ (sym, Qmeta)) modifiers |= XEMACS_MOD_META; | |
678 else if (EQ (sym, Qsuper)) modifiers |= XEMACS_MOD_SUPER; | |
679 else if (EQ (sym, Qhyper)) modifiers |= XEMACS_MOD_HYPER; | |
680 else if (EQ (sym, Qalt)) modifiers |= XEMACS_MOD_ALT; | |
681 else if (EQ (sym, Qsymbol)) modifiers |= XEMACS_MOD_ALT; | |
682 else if (EQ (sym, Qshift)) modifiers |= XEMACS_MOD_SHIFT; | |
683 else if (EQ (sym, Qbutton1)) modifiers |= XEMACS_MOD_BUTTON1; | |
684 else if (EQ (sym, Qbutton2)) modifiers |= XEMACS_MOD_BUTTON2; | |
685 else if (EQ (sym, Qbutton3)) modifiers |= XEMACS_MOD_BUTTON3; | |
686 else if (EQ (sym, Qbutton4)) modifiers |= XEMACS_MOD_BUTTON4; | |
687 else if (EQ (sym, Qbutton5)) modifiers |= XEMACS_MOD_BUTTON5; | |
688 else | |
563 | 689 invalid_constant ("Invalid key modifier", sym); |
442 | 690 } |
428 | 691 |
1204 | 692 switch (EVENT_TYPE (e)) |
442 | 693 { |
694 case key_press_event: | |
1204 | 695 SET_EVENT_KEY_MODIFIERS (e, modifiers); |
442 | 696 break; |
697 case button_press_event: | |
698 case button_release_event: | |
1204 | 699 SET_EVENT_BUTTON_MODIFIERS (e, modifiers); |
442 | 700 break; |
701 case pointer_motion_event: | |
1204 | 702 SET_EVENT_MOTION_MODIFIERS (e, modifiers); |
442 | 703 break; |
704 case misc_user_event: | |
1204 | 705 SET_EVENT_MISC_USER_MODIFIERS (e, modifiers); |
442 | 706 break; |
707 default: | |
708 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
709 break; | |
710 } | |
711 } | |
712 else if (EQ (keyword, Qx)) | |
713 { | |
1204 | 714 switch (EVENT_TYPE (e)) |
442 | 715 { |
716 case pointer_motion_event: | |
717 case button_press_event: | |
718 case button_release_event: | |
719 case misc_user_event: | |
720 /* Allow negative values, so we can specify toolbar | |
721 positions. */ | |
722 CHECK_INT (value); | |
723 coord_x = XINT (value); | |
724 break; | |
725 default: | |
726 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
727 break; | |
728 } | |
729 } | |
730 else if (EQ (keyword, Qy)) | |
731 { | |
1204 | 732 switch (EVENT_TYPE (e)) |
442 | 733 { |
734 case pointer_motion_event: | |
735 case button_press_event: | |
736 case button_release_event: | |
737 case misc_user_event: | |
738 /* Allow negative values; see above. */ | |
739 CHECK_INT (value); | |
740 coord_y = XINT (value); | |
741 break; | |
742 default: | |
743 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
744 break; | |
745 } | |
746 } | |
747 else if (EQ (keyword, Qtimestamp)) | |
748 { | |
749 CHECK_NATNUM (value); | |
934 | 750 SET_EVENT_TIMESTAMP (e, XINT (value)); |
442 | 751 } |
752 else if (EQ (keyword, Qfunction)) | |
753 { | |
1204 | 754 switch (EVENT_TYPE (e)) |
442 | 755 { |
756 case misc_user_event: | |
1204 | 757 SET_EVENT_MISC_USER_FUNCTION (e, value); |
442 | 758 break; |
759 default: | |
760 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
761 break; | |
762 } | |
763 } | |
764 else if (EQ (keyword, Qobject)) | |
765 { | |
1204 | 766 switch (EVENT_TYPE (e)) |
442 | 767 { |
768 case misc_user_event: | |
1204 | 769 SET_EVENT_MISC_USER_OBJECT (e, value); |
442 | 770 break; |
771 default: | |
772 WRONG_EVENT_TYPE_FOR_PROPERTY (type, keyword); | |
773 break; | |
774 } | |
775 } | |
776 else | |
563 | 777 invalid_constant_2 ("Invalid property", keyword, value); |
442 | 778 } |
779 } | |
428 | 780 |
781 /* Insert the channel, if missing. */ | |
782 if (NILP (EVENT_CHANNEL (e))) | |
783 { | |
934 | 784 if (EVENT_TYPE (e) == key_press_event) |
428 | 785 EVENT_CHANNEL (e) = Vselected_console; |
786 else | |
787 EVENT_CHANNEL (e) = Fselected_frame (Qnil); | |
788 } | |
789 | |
790 /* Fevent_properties, Fevent_x_pixel, etc. work with pixels relative | |
791 to the frame, so we must adjust accordingly. */ | |
792 if (FRAMEP (EVENT_CHANNEL (e))) | |
793 { | |
794 coord_x += FRAME_REAL_LEFT_TOOLBAR_WIDTH (XFRAME (EVENT_CHANNEL (e))); | |
795 coord_y += FRAME_REAL_TOP_TOOLBAR_HEIGHT (XFRAME (EVENT_CHANNEL (e))); | |
796 | |
797 switch (e->event_type) | |
798 { | |
799 case pointer_motion_event: | |
1204 | 800 SET_EVENT_MOTION_X (e, coord_x); |
801 SET_EVENT_MOTION_Y (e, coord_y); | |
428 | 802 break; |
803 case button_press_event: | |
804 case button_release_event: | |
1204 | 805 SET_EVENT_BUTTON_X (e, coord_x); |
806 SET_EVENT_BUTTON_Y (e, coord_y); | |
428 | 807 break; |
808 case misc_user_event: | |
1204 | 809 SET_EVENT_MISC_USER_X (e, coord_x); |
810 SET_EVENT_MISC_USER_Y (e, coord_y); | |
428 | 811 break; |
812 default: | |
2500 | 813 ABORT (); |
428 | 814 } |
815 } | |
816 | |
817 /* Finally, do some more validation. */ | |
1204 | 818 switch (EVENT_TYPE (e)) |
428 | 819 { |
820 case key_press_event: | |
1204 | 821 if (UNBOUNDP (EVENT_KEY_KEYSYM (e))) |
563 | 822 sferror ("A key must be specified to make a keypress event", |
442 | 823 plist); |
428 | 824 break; |
825 case button_press_event: | |
1204 | 826 if (!EVENT_BUTTON_BUTTON (e)) |
563 | 827 sferror |
442 | 828 ("A button must be specified to make a button-press event", |
829 plist); | |
428 | 830 break; |
831 case button_release_event: | |
1204 | 832 if (!EVENT_BUTTON_BUTTON (e)) |
563 | 833 sferror |
442 | 834 ("A button must be specified to make a button-release event", |
835 plist); | |
428 | 836 break; |
837 case misc_user_event: | |
1204 | 838 if (NILP (EVENT_MISC_USER_FUNCTION (e))) |
563 | 839 sferror ("A function must be specified to make a misc-user event", |
442 | 840 plist); |
428 | 841 break; |
842 default: | |
843 break; | |
844 } | |
845 | |
846 UNGCPRO; | |
847 return event; | |
848 } | |
849 | |
850 DEFUN ("deallocate-event", Fdeallocate_event, 1, 1, 0, /* | |
851 Allow the given event structure to be reused. | |
852 You MUST NOT use this event object after calling this function with it. | |
853 You will lose. It is not necessary to call this function, as event | |
854 objects are garbage-collected like all other objects; however, it may | |
855 be more efficient to explicitly deallocate events when you are sure | |
856 that it is safe to do so. | |
857 */ | |
858 (event)) | |
859 { | |
860 CHECK_EVENT (event); | |
861 | |
862 if (XEVENT_TYPE (event) == dead_event) | |
563 | 863 invalid_argument ("this event is already deallocated!", Qunbound); |
428 | 864 |
865 assert (XEVENT_TYPE (event) <= last_event_type); | |
866 | |
867 #if 0 | |
868 { | |
869 int i, len; | |
870 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
871 assert (!(EQ (event, Vlast_command_event) || |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
872 EQ (event, Vlast_input_event) || |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
873 EQ (event, Vunread_command_event))); |
428 | 874 |
875 len = XVECTOR_LENGTH (Vthis_command_keys); | |
876 for (i = 0; i < len; i++) | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
877 assert (!EQ (event, XVECTOR_DATA (Vthis_command_keys) [i])); |
428 | 878 if (!NILP (Vrecent_keys_ring)) |
879 { | |
880 int recent_ring_len = XVECTOR_LENGTH (Vrecent_keys_ring); | |
881 for (i = 0; i < recent_ring_len; i++) | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
882 assert (!EQ (event, XVECTOR_DATA (Vrecent_keys_ring) [i])); |
428 | 883 } |
884 } | |
885 #endif /* 0 */ | |
886 | |
887 assert (!EQ (event, Vevent_resource)); | |
888 deinitialize_event (event); | |
889 #ifndef ALLOC_NO_POOLS | |
890 XSET_EVENT_NEXT (event, Vevent_resource); | |
891 Vevent_resource = event; | |
892 #endif | |
893 return Qnil; | |
894 } | |
895 | |
896 DEFUN ("copy-event", Fcopy_event, 1, 2, 0, /* | |
444 | 897 Make a copy of the event object EVENT1. |
898 If a second event argument EVENT2 is given, EVENT1 is copied into | |
899 EVENT2 and EVENT2 is returned. If EVENT2 is not supplied (or is nil) | |
900 then a new event will be made as with `make-event'. See also the | |
901 function `deallocate-event'. | |
428 | 902 */ |
903 (event1, event2)) | |
904 { | |
905 CHECK_LIVE_EVENT (event1); | |
906 if (NILP (event2)) | |
907 event2 = Fmake_event (Qnil, Qnil); | |
430 | 908 else |
909 { | |
910 CHECK_LIVE_EVENT (event2); | |
911 if (EQ (event1, event2)) | |
563 | 912 return signal_continuable_error_2 |
913 (Qinvalid_argument, | |
914 "copy-event called with `eq' events", event1, event2); | |
430 | 915 } |
428 | 916 |
917 assert (XEVENT_TYPE (event1) <= last_event_type); | |
918 assert (XEVENT_TYPE (event2) <= last_event_type); | |
919 | |
934 | 920 XSET_EVENT_TYPE (event2, XEVENT_TYPE (event1)); |
921 XSET_EVENT_CHANNEL (event2, XEVENT_CHANNEL (event1)); | |
922 XSET_EVENT_TIMESTAMP (event2, XEVENT_TIMESTAMP (event1)); | |
1204 | 923 |
924 #ifdef EVENT_DATA_AS_OBJECTS | |
925 copy_lisp_object (XEVENT_DATA (event2), XEVENT_DATA (event1)); | |
926 #else | |
927 XEVENT (event2)->event = XEVENT (event1)->event; | |
928 #endif | |
934 | 929 return event2; |
428 | 930 } |
931 | |
932 | |
771 | 933 /************************************************************************/ |
934 /* event chain functions */ | |
935 /************************************************************************/ | |
428 | 936 |
937 /* Given a chain of events (or possibly nil), deallocate them all. */ | |
938 | |
939 void | |
940 deallocate_event_chain (Lisp_Object event_chain) | |
941 { | |
942 while (!NILP (event_chain)) | |
943 { | |
944 Lisp_Object next = XEVENT_NEXT (event_chain); | |
945 Fdeallocate_event (event_chain); | |
946 event_chain = next; | |
947 } | |
948 } | |
949 | |
950 /* Return the last event in a chain. | |
951 NOTE: You cannot pass nil as a value here! The routine will | |
952 abort if you do. */ | |
953 | |
954 Lisp_Object | |
955 event_chain_tail (Lisp_Object event_chain) | |
956 { | |
957 while (1) | |
958 { | |
959 Lisp_Object next = XEVENT_NEXT (event_chain); | |
960 if (NILP (next)) | |
961 return event_chain; | |
962 event_chain = next; | |
963 } | |
964 } | |
965 | |
966 /* Enqueue a single event onto the end of a chain of events. | |
967 HEAD points to the first event in the chain, TAIL to the last event. | |
968 If the chain is empty, both values should be nil. */ | |
969 | |
970 void | |
971 enqueue_event (Lisp_Object event, Lisp_Object *head, Lisp_Object *tail) | |
972 { | |
973 assert (NILP (XEVENT_NEXT (event))); | |
974 assert (!EQ (*tail, event)); | |
975 | |
976 if (!NILP (*tail)) | |
977 XSET_EVENT_NEXT (*tail, event); | |
978 else | |
979 *head = event; | |
980 *tail = event; | |
981 | |
982 assert (!EQ (event, XEVENT_NEXT (event))); | |
983 } | |
984 | |
985 /* Remove an event off the head of a chain of events and return it. | |
986 HEAD points to the first event in the chain, TAIL to the last event. */ | |
987 | |
988 Lisp_Object | |
989 dequeue_event (Lisp_Object *head, Lisp_Object *tail) | |
990 { | |
991 Lisp_Object event; | |
992 | |
993 event = *head; | |
994 *head = XEVENT_NEXT (event); | |
995 XSET_EVENT_NEXT (event, Qnil); | |
996 if (NILP (*head)) | |
997 *tail = Qnil; | |
998 return event; | |
999 } | |
1000 | |
1001 /* Enqueue a chain of events (or possibly nil) onto the end of another | |
1002 chain of events. HEAD points to the first event in the chain being | |
1003 queued onto, TAIL to the last event. If the chain is empty, both values | |
1004 should be nil. */ | |
1005 | |
1006 void | |
1007 enqueue_event_chain (Lisp_Object event_chain, Lisp_Object *head, | |
1008 Lisp_Object *tail) | |
1009 { | |
1010 if (NILP (event_chain)) | |
1011 return; | |
1012 | |
1013 if (NILP (*head)) | |
1014 { | |
1015 *head = event_chain; | |
1016 *tail = event_chain; | |
1017 } | |
1018 else | |
1019 { | |
1020 XSET_EVENT_NEXT (*tail, event_chain); | |
1021 *tail = event_chain_tail (event_chain); | |
1022 } | |
1023 } | |
1024 | |
1204 | 1025 /* Map a function over each event in the chain. If the function returns |
1026 non-zero, remove the event just processed. Return the total number of | |
1027 items removed. | |
1028 | |
1029 NOTE: | |
1030 | |
1031 If you want a simple mapping over an event chain, with no intention to | |
1032 add or remove items, just use EVENT_CHAIN_LOOP(). | |
1033 */ | |
1034 | |
1035 int | |
1036 map_event_chain_remove (int (*fn) (Lisp_Object ev, void *user_data), | |
1037 Lisp_Object *head, Lisp_Object *tail, | |
1038 void *user_data, int flags) | |
1039 { | |
1040 Lisp_Object event; | |
1041 Lisp_Object previous_event = Qnil; | |
1042 int count = 0; | |
1043 | |
1044 EVENT_CHAIN_LOOP (event, *head) | |
1045 { | |
1046 if (fn (event, user_data)) | |
1047 { | |
1048 if (NILP (previous_event)) | |
1049 dequeue_event (head, tail); | |
1050 else | |
1051 { | |
1052 XSET_EVENT_NEXT (previous_event, XEVENT_NEXT (event)); | |
1053 if (EQ (*tail, event)) | |
1054 *tail = previous_event; | |
1055 } | |
1056 | |
1057 if (flags & MECR_DEALLOCATE_EVENT) | |
1058 Fdeallocate_event (event); | |
1059 count++; | |
1060 } | |
1061 else | |
1062 previous_event = event; | |
1063 } | |
1064 return count; | |
1065 } | |
1066 | |
428 | 1067 /* Return the number of events (possibly 0) on an event chain. */ |
1068 | |
1069 int | |
1070 event_chain_count (Lisp_Object event_chain) | |
1071 { | |
1072 Lisp_Object event; | |
1073 int n = 0; | |
1074 | |
1075 EVENT_CHAIN_LOOP (event, event_chain) | |
1076 n++; | |
1077 | |
1078 return n; | |
1079 } | |
1080 | |
1081 /* Find the event before EVENT in an event chain. This aborts | |
1082 if the event is not in the chain. */ | |
1083 | |
1084 Lisp_Object | |
1085 event_chain_find_previous (Lisp_Object event_chain, Lisp_Object event) | |
1086 { | |
1087 Lisp_Object previous = Qnil; | |
1088 | |
1089 while (!NILP (event_chain)) | |
1090 { | |
1091 if (EQ (event_chain, event)) | |
1092 return previous; | |
1093 previous = event_chain; | |
1094 event_chain = XEVENT_NEXT (event_chain); | |
1095 } | |
1096 | |
2500 | 1097 ABORT (); |
428 | 1098 return Qnil; |
1099 } | |
1100 | |
1101 Lisp_Object | |
1102 event_chain_nth (Lisp_Object event_chain, int n) | |
1103 { | |
1104 Lisp_Object event; | |
1105 EVENT_CHAIN_LOOP (event, event_chain) | |
1106 { | |
1107 if (!n) | |
1108 return event; | |
1109 n--; | |
1110 } | |
1111 return Qnil; | |
1112 } | |
1113 | |
771 | 1114 /* Return a freshly allocated copy of all events in the given chain. */ |
1115 | |
428 | 1116 Lisp_Object |
1117 copy_event_chain (Lisp_Object event_chain) | |
1118 { | |
1119 Lisp_Object new_chain = Qnil; | |
1120 Lisp_Object new_chain_tail = Qnil; | |
1121 Lisp_Object event; | |
1122 | |
1123 EVENT_CHAIN_LOOP (event, event_chain) | |
1124 { | |
1125 Lisp_Object copy = Fcopy_event (event, Qnil); | |
1126 enqueue_event (copy, &new_chain, &new_chain_tail); | |
1127 } | |
1128 | |
1129 return new_chain; | |
1130 } | |
1131 | |
771 | 1132 /* Given a pointer (maybe nil) into an old chain (also maybe nil, if |
1133 pointer is nil) and a new chain which is a copy of the old, return | |
1134 the corresponding new pointer. */ | |
1135 Lisp_Object | |
1136 transfer_event_chain_pointer (Lisp_Object pointer, Lisp_Object old_chain, | |
1137 Lisp_Object new_chain) | |
1138 { | |
1139 if (NILP (pointer)) | |
1140 return Qnil; | |
1141 assert (!NILP (old_chain)); | |
800 | 1142 #ifdef ERROR_CHECK_STRUCTURES |
771 | 1143 /* make sure we're actually in the chain */ |
1144 event_chain_find_previous (old_chain, pointer); | |
1145 assert (event_chain_count (old_chain) == event_chain_count (new_chain)); | |
800 | 1146 #endif /* ERROR_CHECK_STRUCTURES */ |
771 | 1147 return event_chain_nth (new_chain, |
1148 event_chain_count (old_chain) - | |
1149 event_chain_count (pointer)); | |
1150 } | |
1151 | |
428 | 1152 |
771 | 1153 /************************************************************************/ |
1154 /* higher level functions */ | |
1155 /************************************************************************/ | |
428 | 1156 |
1157 Lisp_Object QKbackspace, QKtab, QKlinefeed, QKreturn, QKescape, | |
1158 QKspace, QKdelete; | |
1159 | |
1160 int | |
1161 command_event_p (Lisp_Object event) | |
1162 { | |
1163 switch (XEVENT_TYPE (event)) | |
1164 { | |
1165 case key_press_event: | |
1166 case button_press_event: | |
1167 case button_release_event: | |
1168 case misc_user_event: | |
1169 return 1; | |
1170 default: | |
1171 return 0; | |
1172 } | |
1173 } | |
1174 | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1175 /* META_BEHAVIOR can be one of the following values, defined in events.h: |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1176 |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1177 high_bit_is_meta |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1178 use_console_meta_flag |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1179 latin_1_maps_to_itself |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1180 |
1204 | 1181 DO_BACKSPACE_MAPPING means that if CON is a TTY, and C is a the TTY's |
1182 backspace character, the event will have keysym `backspace' instead of | |
1183 '(control h). It is clearly correct to do this conversion is the | |
1184 character was just read from a TTY, clearly incorrect inside of | |
1185 define-key, which must be able to handle all consoles. #### What about | |
1186 in other circumstances? #### Should the user have access to this flag? | |
1187 | |
1188 #### We need to go through and review all the flags in | |
1189 character_to_event() and event_to_character() and figure out exactly | |
1190 under what circumstances they should or should not be set, then go | |
1191 through and review all callers of character_to_event(), | |
1192 Fcharacter_to_event(), event_to_character(), and Fevent_to_character() | |
1193 and check that they are passing the correct flags in for their varied | |
1194 circumstances. | |
1195 | |
1196 #### Some of this garbage, and some of the flags, could go away if we | |
1197 implemented the suggestion, originally from event-Xt.c: | |
1198 | |
2828 | 1199 [[ The way that keysym correspondence to characters should work: |
1204 | 1200 - a Lisp_Event should contain a keysym AND a character slot. |
1201 - keybindings are tried with the keysym. If no binding can be found, | |
2828 | 1202 and there is a corresponding character, call self-insert-command. ]] |
1203 | |
1204 That's an X-specific way of thinking. All the other platforms--even | |
1205 the TTY, make sure you've done (set-input-mode t nil 1) and set your | |
1206 console coding system appropriately when checking--just use | |
1207 characters as emacs keysyms, and, together with defaulting to | |
1208 self-insert-command if an unbound key with a character correspondence | |
1209 is typed, that works fine for them. (Yes, this ignores GTK.) | |
1210 | |
1211 [[ [... snipping other suggestions which I've implemented.] | |
1212 Nuke the Qascii_character property. ]] | |
1204 | 1213 |
2828 | 1214 Well, we've renamed it anyway--it was badly named. |
1215 Qcharacter_of_keysym, here we go. It's really only with X11 that how | |
1216 to map between adiaeresis and (int-to-char #xE4), or ellipsis and | |
1217 whatever, becomes an issue, and IMO the property approach to this is | |
1218 fine. Aidan Kehoe, 2005-05-15. | |
1204 | 1219 |
2828 | 1220 [[ This would apparently solve a lot of different problems. ]] |
1221 | |
1222 I'd be interested to know what's left. Removing the allow-meta | |
1223 argument from event-to-character would be a Good Thing, IMO, but | |
1224 beyond that, I'm not sure what else there is to do wrt. key | |
1225 mappings. Of course, feedback from users of the Russian C-x facility | |
1226 is still needed. */ | |
428 | 1227 |
1228 void | |
867 | 1229 character_to_event (Ichar c, Lisp_Event *event, struct console *con, |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1230 character_to_event_meta_behavior meta_behavior, |
2340 | 1231 int USED_IF_TTY (do_backspace_mapping)) |
428 | 1232 { |
1233 Lisp_Object k = Qnil; | |
442 | 1234 int m = 0; |
934 | 1235 if (EVENT_TYPE (event) == dead_event) |
563 | 1236 invalid_argument ("character-to-event called with a deallocated event!", Qunbound); |
428 | 1237 |
1238 #ifndef MULE | |
1239 c &= 255; | |
1240 #endif | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1241 if (meta_behavior != latin_1_maps_to_itself && c > 127 && c <= 255) |
428 | 1242 { |
1243 int meta_flag = 1; | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1244 if (meta_behavior == use_console_meta_flag && CONSOLE_TTY_P (con)) |
428 | 1245 meta_flag = TTY_FLAGS (con).meta_key; |
1246 switch (meta_flag) | |
1247 { | |
1248 case 0: /* ignore top bit; it's parity */ | |
1249 c -= 128; | |
1250 break; | |
1251 case 1: /* top bit is meta */ | |
1252 c -= 128; | |
442 | 1253 m = XEMACS_MOD_META; |
428 | 1254 break; |
1255 default: /* this is a real character */ | |
1256 break; | |
1257 } | |
1258 } | |
442 | 1259 if (c < ' ') c += '@', m |= XEMACS_MOD_CONTROL; |
1260 if (m & XEMACS_MOD_CONTROL) | |
428 | 1261 { |
1262 switch (c) | |
1263 { | |
442 | 1264 case 'I': k = QKtab; m &= ~XEMACS_MOD_CONTROL; break; |
1265 case 'J': k = QKlinefeed; m &= ~XEMACS_MOD_CONTROL; break; | |
1266 case 'M': k = QKreturn; m &= ~XEMACS_MOD_CONTROL; break; | |
1267 case '[': k = QKescape; m &= ~XEMACS_MOD_CONTROL; break; | |
428 | 1268 default: |
1204 | 1269 #if defined (HAVE_TTY) |
428 | 1270 if (do_backspace_mapping && |
1271 CHARP (con->tty_erase_char) && | |
1272 c - '@' == XCHAR (con->tty_erase_char)) | |
1273 { | |
1274 k = QKbackspace; | |
442 | 1275 m &= ~XEMACS_MOD_CONTROL; |
428 | 1276 } |
1204 | 1277 #endif /* defined (HAVE_TTY) */ |
428 | 1278 break; |
1279 } | |
1280 if (c >= 'A' && c <= 'Z') c -= 'A'-'a'; | |
1281 } | |
1204 | 1282 #if defined (HAVE_TTY) |
428 | 1283 else if (do_backspace_mapping && |
1284 CHARP (con->tty_erase_char) && c == XCHAR (con->tty_erase_char)) | |
1285 k = QKbackspace; | |
1204 | 1286 #endif /* defined (HAVE_TTY) */ |
428 | 1287 else if (c == 127) |
1288 k = QKdelete; | |
1289 else if (c == ' ') | |
1290 k = QKspace; | |
1291 | |
934 | 1292 set_event_type (event, key_press_event); |
1293 SET_EVENT_TIMESTAMP_ZERO (event); /* #### */ | |
1294 SET_EVENT_CHANNEL (event, wrap_console (con)); | |
1204 | 1295 SET_EVENT_KEY_KEYSYM (event, (!NILP (k) ? k : make_char (c))); |
1296 SET_EVENT_KEY_MODIFIERS (event, m); | |
428 | 1297 } |
1298 | |
867 | 1299 Ichar |
1204 | 1300 event_to_character (Lisp_Object event, |
428 | 1301 int allow_extra_modifiers, |
2828 | 1302 int allow_meta) |
428 | 1303 { |
867 | 1304 Ichar c = 0; |
428 | 1305 Lisp_Object code; |
1306 | |
1204 | 1307 if (XEVENT_TYPE (event) != key_press_event) |
428 | 1308 { |
1204 | 1309 assert (XEVENT_TYPE (event) != dead_event); |
428 | 1310 return -1; |
1311 } | |
1312 if (!allow_extra_modifiers && | |
2828 | 1313 XEVENT_KEY_MODIFIERS (event) & |
1314 (XEMACS_MOD_SUPER|XEMACS_MOD_HYPER|XEMACS_MOD_ALT)) | |
428 | 1315 return -1; |
1204 | 1316 if (CHAR_OR_CHAR_INTP (XEVENT_KEY_KEYSYM (event))) |
1317 c = XCHAR_OR_CHAR_INT (XEVENT_KEY_KEYSYM (event)); | |
1318 else if (!SYMBOLP (XEVENT_KEY_KEYSYM (event))) | |
2500 | 1319 ABORT (); |
1204 | 1320 else if (CHAR_OR_CHAR_INTP (code = Fget (XEVENT_KEY_KEYSYM (event), |
2828 | 1321 Qcharacter_of_keysym, Qnil))) |
428 | 1322 c = XCHAR_OR_CHAR_INT (code); |
1323 else | |
2828 | 1324 { |
1325 Lisp_Object thekeysym = XEVENT_KEY_KEYSYM (event); | |
1326 | |
1327 if (CHAR_OR_CHAR_INTP (code = Fget (thekeysym, Qascii_character, Qnil))) | |
1328 { | |
1329 c = XCHAR_OR_CHAR_INT (code); | |
1330 warn_when_safe(Qkey_mapping, Qwarning, | |
1331 "Obsolete key binding technique.\n" | |
428 | 1332 |
2828 | 1333 "Some code you're using bound %s to `self-insert-command' and messed around\n" |
1334 "with its `ascii-character' property. Doing this is deprecated, and the code\n" | |
1335 "should be updated to use the `set-character-of-keysym' interface.\n" | |
1336 "If you're the one updating the code, first check if there's still a need\n" | |
1337 "for it; we support many more X11 keysyms out of the box now than we did\n" | |
1338 "in the past. ", XSTRING_DATA(XSYMBOL_NAME(thekeysym))); | |
1339 /* Only show the warning once for each keysym. */ | |
1340 Fput(thekeysym, Qcharacter_of_keysym, code); | |
1341 } | |
1342 else | |
1343 { | |
1344 return -1; | |
1345 } | |
1346 } | |
1204 | 1347 if (XEVENT_KEY_MODIFIERS (event) & XEMACS_MOD_CONTROL) |
428 | 1348 { |
1349 if (c >= 'a' && c <= 'z') | |
1350 c -= ('a' - 'A'); | |
1351 else | |
1352 /* reject Control-Shift- keys */ | |
1353 if (c >= 'A' && c <= 'Z' && !allow_extra_modifiers) | |
1354 return -1; | |
1355 | |
1356 if (c >= '@' && c <= '_') | |
1357 c -= '@'; | |
1358 else if (c == ' ') /* C-space and C-@ are the same. */ | |
1359 c = 0; | |
1360 else | |
1361 /* reject keys that can't take Control- modifiers */ | |
1362 if (! allow_extra_modifiers) return -1; | |
1363 } | |
1364 | |
1204 | 1365 if (XEVENT_KEY_MODIFIERS (event) & XEMACS_MOD_META) |
428 | 1366 { |
1367 if (! allow_meta) return -1; | |
1204 | 1368 if (c >= 128) return -1; /* don't allow M-oslash (overlap) */ |
428 | 1369 c |= 0200; |
1370 } | |
1371 return c; | |
1372 } | |
1373 | |
2862 | 1374 DEFUN ("event-to-character", Fevent_to_character, 1, 4, 0, /* |
2828 | 1375 Return the closest character approximation to the given event object. |
428 | 1376 If the event isn't a keypress, this returns nil. |
1377 If the ALLOW-EXTRA-MODIFIERS argument is non-nil, then this is lenient in | |
1378 its translation; it will ignore modifier keys other than control and meta, | |
1379 and will ignore the shift modifier on those characters which have no | |
1380 shifted ASCII equivalent (Control-Shift-A for example, will be mapped to | |
1381 the same ASCII code as Control-A). | |
1382 If the ALLOW-META argument is non-nil, then the Meta modifier will be | |
1383 represented by turning on the high bit of the byte returned; otherwise, nil | |
1384 will be returned for events containing the Meta modifier. | |
1204 | 1385 Note that ALLOW-META may cause ambiguity between meta characters and |
1386 Latin-1 characters. | |
2862 | 1387 ALLOW-NON-ASCII is unused, and retained for compatibility. |
428 | 1388 */ |
2862 | 1389 (event, allow_extra_modifiers, allow_meta, UNUSED(allow_non_ascii))) |
428 | 1390 { |
867 | 1391 Ichar c; |
428 | 1392 CHECK_LIVE_EVENT (event); |
1204 | 1393 c = event_to_character (event, |
428 | 1394 !NILP (allow_extra_modifiers), |
2828 | 1395 !NILP (allow_meta)); |
428 | 1396 return c < 0 ? Qnil : make_char (c); |
1397 } | |
1398 | |
1399 DEFUN ("character-to-event", Fcharacter_to_event, 1, 4, 0, /* | |
444 | 1400 Convert KEY-DESCRIPTION into an event structure, replete with bucky bits. |
428 | 1401 |
444 | 1402 KEY-DESCRIPTION is the first argument, and the event to fill in is the |
1403 second. This function contains knowledge about what various kinds of | |
1404 arguments ``mean'' -- for example, the number 9 is converted to the | |
1405 character ``Tab'', not the distinct character ``Control-I''. | |
428 | 1406 |
3025 | 1407 KEY-DESCRIPTION can be an integer, a character, a symbol such as `clear', |
444 | 1408 or a list such as '(control backspace). |
1409 | |
1410 If the optional second argument EVENT is an event, it is modified and | |
1411 returned; otherwise, a new event object is created and returned. | |
428 | 1412 |
1413 Optional third arg CONSOLE is the console to store in the event, and | |
1414 defaults to the selected console. | |
1415 | |
444 | 1416 If KEY-DESCRIPTION is an integer or character, the high bit may be |
1204 | 1417 interpreted as the meta key. (This is done for backward compatibility in |
1418 lots of places -- specifically, because lots of Lisp code uses specs like | |
1419 ?\M-d and "\M-d" in key code, expecting this to work; yet these are in | |
1420 reality converted directly to 8-bit characters by the Lisp reader.) If | |
1421 USE-CONSOLE-META-FLAG is nil or CONSOLE is not a TTY, this will always be | |
1422 the case. If USE-CONSOLE-META-FLAG is non-nil and CONSOLE is a TTY, the | |
1423 `meta' flag for CONSOLE affects whether the high bit is interpreted as a | |
1424 meta key. (See `set-input-mode'.) Don't set this flag to non-nil unless | |
1425 you know what you're doing (more specifically, only if the character came | |
1426 directly from a TTY, not from the user). If you don't want this silly meta | |
1427 interpretation done, you should pass in a list containing the character. | |
428 | 1428 |
1429 Beware that character-to-event and event-to-character are not strictly | |
1430 inverse functions, since events contain much more information than the | |
444 | 1431 Lisp character object type can encode. |
428 | 1432 */ |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1433 (keystroke, event, console, use_console_meta_flag_)) |
428 | 1434 { |
1435 struct console *con = decode_console (console); | |
1436 if (NILP (event)) | |
1437 event = Fmake_event (Qnil, Qnil); | |
1438 else | |
1439 CHECK_LIVE_EVENT (event); | |
444 | 1440 if (CONSP (keystroke) || SYMBOLP (keystroke)) |
1441 key_desc_list_to_event (keystroke, event, 1); | |
428 | 1442 else |
1443 { | |
444 | 1444 CHECK_CHAR_COERCE_INT (keystroke); |
1445 character_to_event (XCHAR (keystroke), XEVENT (event), con, | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1446 (NILP (use_console_meta_flag_) ? |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
3092
diff
changeset
|
1447 high_bit_is_meta : use_console_meta_flag), 1); |
428 | 1448 } |
1449 return event; | |
1450 } | |
1451 | |
1452 void | |
1453 nth_of_key_sequence_as_event (Lisp_Object seq, int n, Lisp_Object event) | |
1454 { | |
1455 assert (STRINGP (seq) || VECTORP (seq)); | |
1456 assert (n < XINT (Flength (seq))); | |
1457 | |
1458 if (STRINGP (seq)) | |
1459 { | |
867 | 1460 Ichar ch = string_ichar (seq, n); |
428 | 1461 Fcharacter_to_event (make_char (ch), event, Qnil, Qnil); |
1462 } | |
1463 else | |
1464 { | |
1465 Lisp_Object keystroke = XVECTOR_DATA (seq)[n]; | |
1466 if (EVENTP (keystroke)) | |
1467 Fcopy_event (keystroke, event); | |
1468 else | |
1469 Fcharacter_to_event (keystroke, event, Qnil, Qnil); | |
1470 } | |
1471 } | |
1472 | |
1473 Lisp_Object | |
1474 key_sequence_to_event_chain (Lisp_Object seq) | |
1475 { | |
1476 int len = XINT (Flength (seq)); | |
1477 int i; | |
1478 Lisp_Object head = Qnil, tail = Qnil; | |
1479 | |
1480 for (i = 0; i < len; i++) | |
1481 { | |
1482 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
1483 nth_of_key_sequence_as_event (seq, i, event); | |
1484 enqueue_event (event, &head, &tail); | |
1485 } | |
1486 | |
1487 return head; | |
1488 } | |
1489 | |
934 | 1490 |
793 | 1491 /* Concatenate a string description of EVENT onto the end of BUF. If |
1492 BRIEF, use short forms for keys, e.g. C- instead of control-. */ | |
1493 | |
934 | 1494 void |
1495 format_event_object (Eistring *buf, Lisp_Object event, int brief) | |
428 | 1496 { |
1497 int mouse_p = 0; | |
1498 int mod = 0; | |
1499 Lisp_Object key; | |
1500 | |
1204 | 1501 switch (XEVENT_TYPE (event)) |
428 | 1502 { |
1503 case key_press_event: | |
1504 { | |
1204 | 1505 mod = XEVENT_KEY_MODIFIERS (event); |
1506 key = XEVENT_KEY_KEYSYM (event); | |
428 | 1507 /* Hack. */ |
1508 if (! brief && CHARP (key) && | |
793 | 1509 mod & (XEMACS_MOD_CONTROL | XEMACS_MOD_META | XEMACS_MOD_SUPER | |
1510 XEMACS_MOD_HYPER)) | |
428 | 1511 { |
1512 int k = XCHAR (key); | |
1513 if (k >= 'a' && k <= 'z') | |
1514 key = make_char (k - ('a' - 'A')); | |
1515 else if (k >= 'A' && k <= 'Z') | |
442 | 1516 mod |= XEMACS_MOD_SHIFT; |
428 | 1517 } |
1518 break; | |
1519 } | |
1520 case button_release_event: | |
1521 mouse_p++; | |
1522 /* Fall through */ | |
1523 case button_press_event: | |
1524 { | |
1525 mouse_p++; | |
1204 | 1526 mod = XEVENT_BUTTON_MODIFIERS (event); |
1527 key = make_char (XEVENT_BUTTON_BUTTON (event) + '0'); | |
428 | 1528 break; |
1529 } | |
1530 case magic_event: | |
1531 { | |
788 | 1532 Lisp_Object stream; |
1533 struct gcpro gcpro1; | |
1534 GCPRO1 (stream); | |
428 | 1535 |
788 | 1536 stream = make_resizing_buffer_output_stream (); |
1204 | 1537 event_stream_format_magic_event (XEVENT (event), stream); |
788 | 1538 Lstream_flush (XLSTREAM (stream)); |
793 | 1539 eicat_raw (buf, resizing_buffer_stream_ptr (XLSTREAM (stream)), |
1540 Lstream_byte_count (XLSTREAM (stream))); | |
788 | 1541 Lstream_delete (XLSTREAM (stream)); |
1542 UNGCPRO; | |
428 | 1543 return; |
1544 } | |
2421 | 1545 case magic_eval_event: eicat_ascii (buf, "magic-eval"); return; |
1546 case pointer_motion_event: eicat_ascii (buf, "motion"); return; | |
1547 case misc_user_event: eicat_ascii (buf, "misc-user"); return; | |
1548 case eval_event: eicat_ascii (buf, "eval"); return; | |
1549 case process_event: eicat_ascii (buf, "process"); return; | |
1550 case timeout_event: eicat_ascii (buf, "timeout"); return; | |
1551 case empty_event: eicat_ascii (buf, "empty"); return; | |
1552 case dead_event: eicat_ascii (buf, "DEAD-EVENT"); return; | |
428 | 1553 default: |
2500 | 1554 ABORT (); |
442 | 1555 return; |
428 | 1556 } |
793 | 1557 #define modprint(x,y) \ |
2421 | 1558 do { if (brief) eicat_ascii (buf, (y)); else eicat_ascii (buf, (x)); } while (0) |
442 | 1559 if (mod & XEMACS_MOD_CONTROL) modprint ("control-", "C-"); |
1560 if (mod & XEMACS_MOD_META) modprint ("meta-", "M-"); | |
1561 if (mod & XEMACS_MOD_SUPER) modprint ("super-", "S-"); | |
1562 if (mod & XEMACS_MOD_HYPER) modprint ("hyper-", "H-"); | |
1563 if (mod & XEMACS_MOD_ALT) modprint ("alt-", "A-"); | |
1564 if (mod & XEMACS_MOD_SHIFT) modprint ("shift-", "Sh-"); | |
428 | 1565 if (mouse_p) |
1566 { | |
2421 | 1567 eicat_ascii (buf, "button"); |
428 | 1568 --mouse_p; |
1569 } | |
1570 | |
1571 #undef modprint | |
1572 | |
1573 if (CHARP (key)) | |
793 | 1574 eicat_ch (buf, XCHAR (key)); |
428 | 1575 else if (SYMBOLP (key)) |
1576 { | |
2367 | 1577 const Ascbyte *str = 0; |
428 | 1578 if (brief) |
1579 { | |
1580 if (EQ (key, QKlinefeed)) str = "LFD"; | |
1581 else if (EQ (key, QKtab)) str = "TAB"; | |
1582 else if (EQ (key, QKreturn)) str = "RET"; | |
1583 else if (EQ (key, QKescape)) str = "ESC"; | |
1584 else if (EQ (key, QKdelete)) str = "DEL"; | |
1585 else if (EQ (key, QKspace)) str = "SPC"; | |
1586 else if (EQ (key, QKbackspace)) str = "BS"; | |
1587 } | |
1588 if (str) | |
2421 | 1589 eicat_ascii (buf, str); |
428 | 1590 else |
793 | 1591 eicat_lstr (buf, XSYMBOL (key)->name); |
428 | 1592 } |
1593 else | |
2500 | 1594 ABORT (); |
428 | 1595 if (mouse_p) |
2421 | 1596 eicat_ascii (buf, "up"); |
428 | 1597 } |
1598 | |
1204 | 1599 void |
1600 upshift_event (Lisp_Object event) | |
1601 { | |
1602 Lisp_Object keysym = XEVENT_KEY_KEYSYM (event); | |
1603 Ichar c = 0; | |
1604 | |
1605 if (CHAR_OR_CHAR_INTP (keysym) | |
1606 && ((c = XCHAR_OR_CHAR_INT (keysym)), | |
1607 c >= 'a' && c <= 'z')) | |
1608 XSET_EVENT_KEY_KEYSYM (event, make_char (c + 'A' - 'a')); | |
1609 else | |
1610 if (!(XEVENT_KEY_MODIFIERS (event) & XEMACS_MOD_SHIFT)) | |
1611 XSET_EVENT_KEY_MODIFIERS | |
1612 (event, XEVENT_KEY_MODIFIERS (event) |= XEMACS_MOD_SHIFT); | |
1613 } | |
1614 | |
1615 void | |
1616 downshift_event (Lisp_Object event) | |
1617 { | |
1618 Lisp_Object keysym = XEVENT_KEY_KEYSYM (event); | |
1619 Ichar c = 0; | |
1620 | |
1621 if (XEVENT_KEY_MODIFIERS (event) & XEMACS_MOD_SHIFT) | |
1622 XSET_EVENT_KEY_MODIFIERS | |
1623 (event, XEVENT_KEY_MODIFIERS (event) & ~XEMACS_MOD_SHIFT); | |
1624 else if (CHAR_OR_CHAR_INTP (keysym) | |
1625 && ((c = XCHAR_OR_CHAR_INT (keysym)), | |
1626 c >= 'A' && c <= 'Z')) | |
1627 XSET_EVENT_KEY_KEYSYM (event, make_char (c + 'a' - 'A')); | |
1628 } | |
1629 | |
1630 int | |
1631 event_upshifted_p (Lisp_Object event) | |
1632 { | |
1633 Lisp_Object keysym = XEVENT_KEY_KEYSYM (event); | |
1634 Ichar c = 0; | |
1635 | |
1636 if ((XEVENT_KEY_MODIFIERS (event) & XEMACS_MOD_SHIFT) | |
1637 || (CHAR_OR_CHAR_INTP (keysym) | |
1638 && ((c = XCHAR_OR_CHAR_INT (keysym)), | |
1639 c >= 'A' && c <= 'Z'))) | |
1640 return 1; | |
1641 else | |
1642 return 0; | |
1643 } | |
934 | 1644 |
428 | 1645 DEFUN ("eventp", Feventp, 1, 1, 0, /* |
1646 True if OBJECT is an event object. | |
1647 */ | |
1648 (object)) | |
1649 { | |
1650 return EVENTP (object) ? Qt : Qnil; | |
1651 } | |
1652 | |
1653 DEFUN ("event-live-p", Fevent_live_p, 1, 1, 0, /* | |
1654 True if OBJECT is an event object that has not been deallocated. | |
1655 */ | |
1656 (object)) | |
1657 { | |
934 | 1658 return EVENTP (object) && XEVENT_TYPE (object) != dead_event ? |
1659 Qt : Qnil; | |
428 | 1660 } |
1661 | |
1662 #if 0 /* debugging functions */ | |
1663 | |
826 | 1664 DEFUN ("event-next", Fevent_next, 1, 1, 0, /* |
428 | 1665 Return the event object's `next' event, or nil if it has none. |
1666 The `next-event' field is changed by calling `set-next-event'. | |
1667 */ | |
1668 (event)) | |
1669 { | |
440 | 1670 Lisp_Event *e; |
428 | 1671 CHECK_LIVE_EVENT (event); |
1672 | |
1673 return XEVENT_NEXT (event); | |
1674 } | |
1675 | |
826 | 1676 DEFUN ("set-event-next", Fset_event_next, 2, 2, 0, /* |
428 | 1677 Set the `next event' of EVENT to NEXT-EVENT. |
1678 NEXT-EVENT must be an event object or nil. | |
1679 */ | |
1680 (event, next_event)) | |
1681 { | |
1682 Lisp_Object ev; | |
1683 | |
1684 CHECK_LIVE_EVENT (event); | |
1685 if (NILP (next_event)) | |
1686 { | |
1687 XSET_EVENT_NEXT (event, Qnil); | |
1688 return Qnil; | |
1689 } | |
1690 | |
1691 CHECK_LIVE_EVENT (next_event); | |
1692 | |
1693 EVENT_CHAIN_LOOP (ev, XEVENT_NEXT (event)) | |
1694 { | |
1695 QUIT; | |
1696 if (EQ (ev, event)) | |
563 | 1697 invalid_operation_2 ("Cyclic event-next", event, next_event); |
428 | 1698 } |
1699 XSET_EVENT_NEXT (event, next_event); | |
1700 return next_event; | |
1701 } | |
1702 | |
1703 #endif /* 0 */ | |
1704 | |
1705 DEFUN ("event-type", Fevent_type, 1, 1, 0, /* | |
1706 Return the type of EVENT. | |
1707 This will be a symbol; one of | |
1708 | |
1709 key-press A key was pressed. | |
1710 button-press A mouse button was pressed. | |
1711 button-release A mouse button was released. | |
1712 misc-user Some other user action happened; typically, this is | |
1713 a menu selection or scrollbar action. | |
1714 motion The mouse moved. | |
1715 process Input is available from a subprocess. | |
1716 timeout A timeout has expired. | |
1717 eval This causes a specified action to occur when dispatched. | |
1718 magic Some window-system-specific event has occurred. | |
1719 empty The event has been allocated but not assigned. | |
1720 | |
1721 */ | |
1722 (event)) | |
1723 { | |
1724 CHECK_LIVE_EVENT (event); | |
934 | 1725 switch (XEVENT_TYPE (event)) |
428 | 1726 { |
1727 case key_press_event: return Qkey_press; | |
1728 case button_press_event: return Qbutton_press; | |
1729 case button_release_event: return Qbutton_release; | |
1730 case misc_user_event: return Qmisc_user; | |
1731 case pointer_motion_event: return Qmotion; | |
1732 case process_event: return Qprocess; | |
1733 case timeout_event: return Qtimeout; | |
1734 case eval_event: return Qeval; | |
1735 case magic_event: | |
1736 case magic_eval_event: | |
1737 return Qmagic; | |
1738 | |
1739 case empty_event: | |
1740 return Qempty; | |
1741 | |
1742 default: | |
2500 | 1743 ABORT (); |
428 | 1744 return Qnil; |
1745 } | |
1746 } | |
1747 | |
1748 DEFUN ("event-timestamp", Fevent_timestamp, 1, 1, 0, /* | |
1749 Return the timestamp of the event object EVENT. | |
442 | 1750 Timestamps are measured in milliseconds since the start of the window system. |
1751 They are NOT related to any current time measurement. | |
1752 They should be compared with `event-timestamp<'. | |
1753 See also `current-event-timestamp'. | |
428 | 1754 */ |
1755 (event)) | |
1756 { | |
1757 CHECK_LIVE_EVENT (event); | |
1758 /* This junk is so that timestamps don't get to be negative, but contain | |
1759 as many bits as this particular emacs will allow. | |
1760 */ | |
2039 | 1761 return make_int (EMACS_INT_MAX & XEVENT_TIMESTAMP (event)); |
428 | 1762 } |
1763 | |
2039 | 1764 #define TIMESTAMP_HALFSPACE (1L << (INT_VALBITS - 2)) |
442 | 1765 |
1766 DEFUN ("event-timestamp<", Fevent_timestamp_lessp, 2, 2, 0, /* | |
1767 Return true if timestamp TIME1 is earlier than timestamp TIME2. | |
1768 This correctly handles timestamp wrap. | |
1769 See also `event-timestamp' and `current-event-timestamp'. | |
1770 */ | |
1771 (time1, time2)) | |
1772 { | |
1773 EMACS_INT t1, t2; | |
1774 | |
1775 CHECK_NATNUM (time1); | |
1776 CHECK_NATNUM (time2); | |
1777 t1 = XINT (time1); | |
1778 t2 = XINT (time2); | |
1779 | |
1780 if (t1 < t2) | |
1781 return t2 - t1 < TIMESTAMP_HALFSPACE ? Qt : Qnil; | |
1782 else | |
1783 return t1 - t2 < TIMESTAMP_HALFSPACE ? Qnil : Qt; | |
1784 } | |
1785 | |
934 | 1786 #define CHECK_EVENT_TYPE(e,t1,sym) do { \ |
1787 CHECK_LIVE_EVENT (e); \ | |
1788 if (XEVENT_TYPE (e) != (t1)) \ | |
1789 e = wrong_type_argument (sym,e); \ | |
1790 } while (0) | |
1791 | |
1792 #define CHECK_EVENT_TYPE2(e,t1,t2,sym) do { \ | |
1793 CHECK_LIVE_EVENT (e); \ | |
1794 { \ | |
1795 emacs_event_type CET_type = XEVENT_TYPE (e); \ | |
1796 if (CET_type != (t1) && \ | |
1797 CET_type != (t2)) \ | |
1798 e = wrong_type_argument (sym,e); \ | |
1799 } \ | |
1800 } while (0) | |
1801 | |
1802 #define CHECK_EVENT_TYPE3(e,t1,t2,t3,sym) do { \ | |
1803 CHECK_LIVE_EVENT (e); \ | |
1804 { \ | |
1805 emacs_event_type CET_type = XEVENT_TYPE (e); \ | |
1806 if (CET_type != (t1) && \ | |
1807 CET_type != (t2) && \ | |
1808 CET_type != (t3)) \ | |
1809 e = wrong_type_argument (sym,e); \ | |
1810 } \ | |
1811 } while (0) | |
428 | 1812 |
1813 DEFUN ("event-key", Fevent_key, 1, 1, 0, /* | |
1814 Return the Keysym of the key-press event EVENT. | |
1815 This will be a character if the event is associated with one, else a symbol. | |
1816 */ | |
1817 (event)) | |
1818 { | |
1819 CHECK_EVENT_TYPE (event, key_press_event, Qkey_press_event_p); | |
1204 | 1820 return XEVENT_KEY_KEYSYM (event); |
428 | 1821 } |
1822 | |
1823 DEFUN ("event-button", Fevent_button, 1, 1, 0, /* | |
444 | 1824 Return the button-number of the button-press or button-release event EVENT. |
428 | 1825 */ |
1826 (event)) | |
1827 { | |
1828 CHECK_EVENT_TYPE3 (event, button_press_event, button_release_event, | |
1829 misc_user_event, Qbutton_event_p); | |
1830 #ifdef HAVE_WINDOW_SYSTEM | |
1204 | 1831 if (XEVENT_TYPE (event) == misc_user_event) |
1832 return make_int (XEVENT_MISC_USER_BUTTON (event)); | |
934 | 1833 else |
1204 | 1834 return make_int (XEVENT_BUTTON_BUTTON (event)); |
428 | 1835 #else /* !HAVE_WINDOW_SYSTEM */ |
1836 return Qzero; | |
1837 #endif /* !HAVE_WINDOW_SYSTEM */ | |
1838 } | |
1839 | |
1840 DEFUN ("event-modifier-bits", Fevent_modifier_bits, 1, 1, 0, /* | |
442 | 1841 Return a number representing the modifier keys and buttons which were down |
428 | 1842 when the given mouse or keyboard event was produced. |
442 | 1843 See also the function `event-modifiers'. |
428 | 1844 */ |
1845 (event)) | |
1846 { | |
1847 again: | |
1848 CHECK_LIVE_EVENT (event); | |
934 | 1849 switch (XEVENT_TYPE (event)) |
1850 { | |
1851 case key_press_event: | |
1204 | 1852 return make_int (XEVENT_KEY_MODIFIERS (event)); |
934 | 1853 case button_press_event: |
1854 case button_release_event: | |
1204 | 1855 return make_int (XEVENT_BUTTON_MODIFIERS (event)); |
934 | 1856 case pointer_motion_event: |
1204 | 1857 return make_int (XEVENT_MOTION_MODIFIERS (event)); |
934 | 1858 case misc_user_event: |
1204 | 1859 return make_int (XEVENT_MISC_USER_MODIFIERS (event)); |
934 | 1860 default: |
1861 event = wrong_type_argument (intern ("key-or-mouse-event-p"), event); | |
1862 goto again; | |
1863 } | |
428 | 1864 } |
1865 | |
1866 DEFUN ("event-modifiers", Fevent_modifiers, 1, 1, 0, /* | |
442 | 1867 Return a list of symbols, the names of the modifier keys and buttons |
428 | 1868 which were down when the given mouse or keyboard event was produced. |
442 | 1869 See also the function `event-modifier-bits'. |
1870 | |
1871 The possible symbols in the list are | |
1872 | |
1873 `shift': The Shift key. Will not appear, in general, on key events | |
1874 where the keysym is an ASCII character, because using Shift | |
1875 on such a character converts it into another character rather | |
1876 than actually just adding a Shift modifier. | |
1877 | |
1878 `control': The Control key. | |
1879 | |
1880 `meta': The Meta key. On PC's and PC-style keyboards, this is generally | |
1881 labelled \"Alt\"; Meta is a holdover from early Lisp Machines and | |
1882 such, propagated through the X Window System. On Sun keyboards, | |
1883 this key is labelled with a diamond. | |
1884 | |
1885 `alt': The \"Alt\" key. Alt is in quotes because this does not refer | |
1886 to what it obviously should refer to, namely the Alt key on PC | |
1887 keyboards. Instead, it refers to the key labelled Alt on Sun | |
1888 keyboards, and to no key at all on PC keyboards. | |
1889 | |
1890 `super': The Super key. Most keyboards don't have any such key, but | |
1891 under X Windows using `xmodmap' you can assign any key (such as | |
1892 an underused right-shift, right-control, or right-alt key) to | |
1893 this key modifier. No support currently exists under MS Windows | |
1894 for generating these modifiers. | |
1895 | |
1896 `hyper': The Hyper key. Works just like the Super key. | |
1897 | |
1898 `button1': The mouse buttons. This means that the specified button was held | |
1899 `button2': down at the time the event occurred. NOTE: For button-press | |
1900 `button3': events, the button that was just pressed down does NOT appear in | |
1901 `button4': the modifiers. | |
1902 `button5': | |
1903 | |
1904 Button modifiers are currently ignored when defining and looking up key and | |
1905 mouse strokes in keymaps. This could be changed, which would allow a user to | |
1906 create button-chord actions, use a button as a key modifier and do other | |
1907 clever things. | |
428 | 1908 */ |
1909 (event)) | |
1910 { | |
1911 int mod = XINT (Fevent_modifier_bits (event)); | |
1912 Lisp_Object result = Qnil; | |
442 | 1913 struct gcpro gcpro1; |
1914 | |
1915 GCPRO1 (result); | |
1916 if (mod & XEMACS_MOD_SHIFT) result = Fcons (Qshift, result); | |
1917 if (mod & XEMACS_MOD_ALT) result = Fcons (Qalt, result); | |
1918 if (mod & XEMACS_MOD_HYPER) result = Fcons (Qhyper, result); | |
1919 if (mod & XEMACS_MOD_SUPER) result = Fcons (Qsuper, result); | |
1920 if (mod & XEMACS_MOD_META) result = Fcons (Qmeta, result); | |
1921 if (mod & XEMACS_MOD_CONTROL) result = Fcons (Qcontrol, result); | |
1922 if (mod & XEMACS_MOD_BUTTON1) result = Fcons (Qbutton1, result); | |
1923 if (mod & XEMACS_MOD_BUTTON2) result = Fcons (Qbutton2, result); | |
1924 if (mod & XEMACS_MOD_BUTTON3) result = Fcons (Qbutton3, result); | |
1925 if (mod & XEMACS_MOD_BUTTON4) result = Fcons (Qbutton4, result); | |
1926 if (mod & XEMACS_MOD_BUTTON5) result = Fcons (Qbutton5, result); | |
1927 RETURN_UNGCPRO (Fnreverse (result)); | |
428 | 1928 } |
1929 | |
1930 static int | |
1931 event_x_y_pixel_internal (Lisp_Object event, int *x, int *y, int relative) | |
1932 { | |
1933 struct window *w; | |
1934 struct frame *f; | |
1935 | |
934 | 1936 if (XEVENT_TYPE (event) == pointer_motion_event) |
1937 { | |
1204 | 1938 *x = XEVENT_MOTION_X (event); |
1939 *y = XEVENT_MOTION_Y (event); | |
934 | 1940 } |
1941 else if (XEVENT_TYPE (event) == button_press_event || | |
1942 XEVENT_TYPE (event) == button_release_event) | |
1943 { | |
1204 | 1944 *x = XEVENT_BUTTON_X (event); |
1945 *y = XEVENT_BUTTON_Y (event); | |
934 | 1946 } |
1947 else if (XEVENT_TYPE (event) == misc_user_event) | |
1948 { | |
1204 | 1949 *x = XEVENT_MISC_USER_X (event); |
1950 *y = XEVENT_MISC_USER_Y (event); | |
934 | 1951 } |
1952 else | |
1953 return 0; | |
428 | 1954 f = XFRAME (EVENT_CHANNEL (XEVENT (event))); |
1955 | |
1956 if (relative) | |
1957 { | |
1958 w = find_window_by_pixel_pos (*x, *y, f->root_window); | |
1959 | |
1960 if (!w) | |
442 | 1961 return 1; /* #### What should really happen here? */ |
428 | 1962 |
1963 *x -= w->pixel_left; | |
1964 *y -= w->pixel_top; | |
1965 } | |
1966 else | |
1967 { | |
1968 *y -= FRAME_REAL_TOP_TOOLBAR_HEIGHT (f) - | |
1969 FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH (f); | |
1970 *x -= FRAME_REAL_LEFT_TOOLBAR_WIDTH (f) - | |
1971 FRAME_REAL_LEFT_TOOLBAR_BORDER_WIDTH (f); | |
1972 } | |
1973 | |
1974 return 1; | |
1975 } | |
1976 | |
1977 DEFUN ("event-window-x-pixel", Fevent_window_x_pixel, 1, 1, 0, /* | |
1978 Return the X position in pixels of mouse event EVENT. | |
1979 The value returned is relative to the window the event occurred in. | |
1980 This will signal an error if the event is not a mouse event. | |
1981 See also `mouse-event-p' and `event-x-pixel'. | |
1982 */ | |
1983 (event)) | |
1984 { | |
1985 int x, y; | |
1986 | |
1987 CHECK_LIVE_EVENT (event); | |
1988 | |
1989 if (!event_x_y_pixel_internal (event, &x, &y, 1)) | |
1990 return wrong_type_argument (Qmouse_event_p, event); | |
1991 else | |
1992 return make_int (x); | |
1993 } | |
1994 | |
1995 DEFUN ("event-window-y-pixel", Fevent_window_y_pixel, 1, 1, 0, /* | |
1996 Return the Y position in pixels of mouse event EVENT. | |
1997 The value returned is relative to the window the event occurred in. | |
1998 This will signal an error if the event is not a mouse event. | |
1999 See also `mouse-event-p' and `event-y-pixel'. | |
2000 */ | |
2001 (event)) | |
2002 { | |
2003 int x, y; | |
2004 | |
2005 CHECK_LIVE_EVENT (event); | |
2006 | |
2007 if (!event_x_y_pixel_internal (event, &x, &y, 1)) | |
2008 return wrong_type_argument (Qmouse_event_p, event); | |
2009 else | |
2010 return make_int (y); | |
2011 } | |
2012 | |
2013 DEFUN ("event-x-pixel", Fevent_x_pixel, 1, 1, 0, /* | |
2014 Return the X position in pixels of mouse event EVENT. | |
2015 The value returned is relative to the frame the event occurred in. | |
2016 This will signal an error if the event is not a mouse event. | |
2017 See also `mouse-event-p' and `event-window-x-pixel'. | |
2018 */ | |
2019 (event)) | |
2020 { | |
2021 int x, y; | |
2022 | |
2023 CHECK_LIVE_EVENT (event); | |
2024 | |
2025 if (!event_x_y_pixel_internal (event, &x, &y, 0)) | |
2026 return wrong_type_argument (Qmouse_event_p, event); | |
2027 else | |
2028 return make_int (x); | |
2029 } | |
2030 | |
2031 DEFUN ("event-y-pixel", Fevent_y_pixel, 1, 1, 0, /* | |
2032 Return the Y position in pixels of mouse event EVENT. | |
2033 The value returned is relative to the frame the event occurred in. | |
2034 This will signal an error if the event is not a mouse event. | |
2035 See also `mouse-event-p' `event-window-y-pixel'. | |
2036 */ | |
2037 (event)) | |
2038 { | |
2039 int x, y; | |
2040 | |
2041 CHECK_LIVE_EVENT (event); | |
2042 | |
2043 if (!event_x_y_pixel_internal (event, &x, &y, 0)) | |
2044 return wrong_type_argument (Qmouse_event_p, event); | |
2045 else | |
2046 return make_int (y); | |
2047 } | |
2048 | |
2049 /* Given an event, return a value: | |
2050 | |
2051 OVER_TOOLBAR: over one of the 4 frame toolbars | |
2052 OVER_MODELINE: over a modeline | |
2053 OVER_BORDER: over an internal border | |
2054 OVER_NOTHING: over the text area, but not over text | |
2055 OVER_OUTSIDE: outside of the frame border | |
2056 OVER_TEXT: over text in the text area | |
2057 OVER_V_DIVIDER: over windows vertical divider | |
2058 | |
2059 and return: | |
2060 | |
2061 The X char position in CHAR_X, if not a null pointer. | |
2062 The Y char position in CHAR_Y, if not a null pointer. | |
2063 (These last two values are relative to the window the event is over.) | |
2064 The window it's over in W, if not a null pointer. | |
2065 The buffer position it's over in BUFP, if not a null pointer. | |
2066 The closest buffer position in CLOSEST, if not a null pointer. | |
2067 | |
2068 OBJ_X, OBJ_Y, OBJ1, and OBJ2 are as in pixel_to_glyph_translation(). | |
2069 */ | |
2070 | |
2071 static int | |
2072 event_pixel_translation (Lisp_Object event, int *char_x, int *char_y, | |
2073 int *obj_x, int *obj_y, | |
665 | 2074 struct window **w, Charbpos *bufp, Charbpos *closest, |
428 | 2075 Charcount *modeline_closest, |
2076 Lisp_Object *obj1, Lisp_Object *obj2) | |
2077 { | |
2078 int pix_x = 0; | |
2079 int pix_y = 0; | |
2080 int result; | |
2081 Lisp_Object frame; | |
2082 | |
2083 int ret_x, ret_y, ret_obj_x, ret_obj_y; | |
2084 struct window *ret_w; | |
665 | 2085 Charbpos ret_bufp, ret_closest; |
428 | 2086 Charcount ret_modeline_closest; |
2087 Lisp_Object ret_obj1, ret_obj2; | |
2088 | |
2089 CHECK_LIVE_EVENT (event); | |
934 | 2090 frame = XEVENT_CHANNEL (event); |
2091 switch (XEVENT_TYPE (event)) | |
2092 { | |
2093 case pointer_motion_event : | |
1204 | 2094 pix_x = XEVENT_MOTION_X (event); |
2095 pix_y = XEVENT_MOTION_Y (event); | |
934 | 2096 break; |
2097 case button_press_event : | |
2098 case button_release_event : | |
1204 | 2099 pix_x = XEVENT_BUTTON_X (event); |
2100 pix_y = XEVENT_BUTTON_Y (event); | |
934 | 2101 break; |
2102 case misc_user_event : | |
1204 | 2103 pix_x = XEVENT_MISC_USER_X (event); |
2104 pix_y = XEVENT_MISC_USER_Y (event); | |
934 | 2105 break; |
2106 default: | |
2107 dead_wrong_type_argument (Qmouse_event_p, event); | |
2108 } | |
428 | 2109 |
2110 result = pixel_to_glyph_translation (XFRAME (frame), pix_x, pix_y, | |
2111 &ret_x, &ret_y, &ret_obj_x, &ret_obj_y, | |
2112 &ret_w, &ret_bufp, &ret_closest, | |
2113 &ret_modeline_closest, | |
2114 &ret_obj1, &ret_obj2); | |
2115 | |
2116 if (result == OVER_NOTHING || result == OVER_OUTSIDE) | |
2117 ret_bufp = 0; | |
2118 else if (ret_w && NILP (ret_w->buffer)) | |
2119 /* Why does this happen? (Does it still happen?) | |
2120 I guess the window has gotten reused as a non-leaf... */ | |
2121 ret_w = 0; | |
2122 | |
2123 /* #### pixel_to_glyph_translation() sometimes returns garbage... | |
2124 The word has type Lisp_Type_Record (presumably meaning `extent') but the | |
2125 pointer points to random memory, often filled with 0, sometimes not. | |
2126 */ | |
2127 /* #### Chuck, do we still need this crap? */ | |
5055
79564cbad5f3
Simplify assertion in events.c so it will build under Visual Studio 6
Vin Shelton <acs@xemacs.org>
parents:
5052
diff
changeset
|
2128 #ifdef HAVE_TOOLBARS |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
2129 assert (NILP (ret_obj1) || GLYPHP (ret_obj1) |
5055
79564cbad5f3
Simplify assertion in events.c so it will build under Visual Studio 6
Vin Shelton <acs@xemacs.org>
parents:
5052
diff
changeset
|
2130 || TOOLBAR_BUTTONP (ret_obj1)); |
79564cbad5f3
Simplify assertion in events.c so it will build under Visual Studio 6
Vin Shelton <acs@xemacs.org>
parents:
5052
diff
changeset
|
2131 #else |
79564cbad5f3
Simplify assertion in events.c so it will build under Visual Studio 6
Vin Shelton <acs@xemacs.org>
parents:
5052
diff
changeset
|
2132 assert (NILP (ret_obj1) || GLYPHP (ret_obj1)); |
428 | 2133 #endif |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
2134 assert (NILP (ret_obj2) || EXTENTP (ret_obj2) || CONSP (ret_obj2)); |
428 | 2135 |
2136 if (char_x) | |
2137 *char_x = ret_x; | |
2138 if (char_y) | |
2139 *char_y = ret_y; | |
2140 if (obj_x) | |
2141 *obj_x = ret_obj_x; | |
2142 if (obj_y) | |
2143 *obj_y = ret_obj_y; | |
2144 if (w) | |
2145 *w = ret_w; | |
2146 if (bufp) | |
2147 *bufp = ret_bufp; | |
2148 if (closest) | |
2149 *closest = ret_closest; | |
2150 if (modeline_closest) | |
2151 *modeline_closest = ret_modeline_closest; | |
2152 if (obj1) | |
2153 *obj1 = ret_obj1; | |
2154 if (obj2) | |
2155 *obj2 = ret_obj2; | |
2156 | |
2157 return result; | |
2158 } | |
2159 | |
2160 DEFUN ("event-over-text-area-p", Fevent_over_text_area_p, 1, 1, 0, /* | |
2161 Return t if the mouse event EVENT occurred over the text area of a window. | |
2162 The modeline is not considered to be part of the text area. | |
2163 */ | |
2164 (event)) | |
2165 { | |
2166 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2167 | |
2168 return result == OVER_TEXT || result == OVER_NOTHING ? Qt : Qnil; | |
2169 } | |
2170 | |
2171 DEFUN ("event-over-modeline-p", Fevent_over_modeline_p, 1, 1, 0, /* | |
2172 Return t if the mouse event EVENT occurred over the modeline of a window. | |
2173 */ | |
2174 (event)) | |
2175 { | |
2176 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2177 | |
2178 return result == OVER_MODELINE ? Qt : Qnil; | |
2179 } | |
2180 | |
2181 DEFUN ("event-over-border-p", Fevent_over_border_p, 1, 1, 0, /* | |
2182 Return t if the mouse event EVENT occurred over an internal border. | |
2183 */ | |
2184 (event)) | |
2185 { | |
2186 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2187 | |
2188 return result == OVER_BORDER ? Qt : Qnil; | |
2189 } | |
2190 | |
2191 DEFUN ("event-over-toolbar-p", Fevent_over_toolbar_p, 1, 1, 0, /* | |
2192 Return t if the mouse event EVENT occurred over a toolbar. | |
2193 */ | |
2194 (event)) | |
2195 { | |
2196 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2197 | |
2198 return result == OVER_TOOLBAR ? Qt : Qnil; | |
2199 } | |
2200 | |
2201 DEFUN ("event-over-vertical-divider-p", Fevent_over_vertical_divider_p, 1, 1, 0, /* | |
2202 Return t if the mouse event EVENT occurred over a window divider. | |
2203 */ | |
2204 (event)) | |
2205 { | |
2206 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2207 | |
2208 return result == OVER_V_DIVIDER ? Qt : Qnil; | |
2209 } | |
2210 | |
2211 struct console * | |
2212 event_console_or_selected (Lisp_Object event) | |
2213 { | |
2214 Lisp_Object channel = EVENT_CHANNEL (XEVENT (event)); | |
2215 Lisp_Object console = CDFW_CONSOLE (channel); | |
2216 | |
2217 if (NILP (console)) | |
2218 console = Vselected_console; | |
2219 | |
2220 return XCONSOLE (console); | |
2221 } | |
2222 | |
2223 DEFUN ("event-channel", Fevent_channel, 1, 1, 0, /* | |
2224 Return the channel that the event EVENT occurred on. | |
2225 This will be a frame, device, console, or nil for some types | |
2226 of events (e.g. eval events). | |
2227 */ | |
2228 (event)) | |
2229 { | |
2230 CHECK_LIVE_EVENT (event); | |
2231 return EVENT_CHANNEL (XEVENT (event)); | |
2232 } | |
2233 | |
2234 DEFUN ("event-window", Fevent_window, 1, 1, 0, /* | |
2235 Return the window over which mouse event EVENT occurred. | |
2236 This may be nil if the event occurred in the border or over a toolbar. | |
2237 The modeline is considered to be within the window it describes. | |
2238 */ | |
2239 (event)) | |
2240 { | |
2241 struct window *w; | |
2242 | |
2243 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, 0, 0); | |
2244 | |
2245 if (!w) | |
2246 return Qnil; | |
2247 else | |
2248 { | |
793 | 2249 return wrap_window (w); |
428 | 2250 } |
2251 } | |
2252 | |
2253 DEFUN ("event-point", Fevent_point, 1, 1, 0, /* | |
2254 Return the character position of the mouse event EVENT. | |
2255 If the event did not occur over a window, or did not occur over text, | |
2256 then this returns nil. Otherwise, it returns a position in the buffer | |
2257 visible in the event's window. | |
2258 */ | |
2259 (event)) | |
2260 { | |
665 | 2261 Charbpos bufp; |
428 | 2262 struct window *w; |
2263 | |
2264 event_pixel_translation (event, 0, 0, 0, 0, &w, &bufp, 0, 0, 0, 0); | |
2265 | |
2266 return w && bufp ? make_int (bufp) : Qnil; | |
2267 } | |
2268 | |
2269 DEFUN ("event-closest-point", Fevent_closest_point, 1, 1, 0, /* | |
2270 Return the character position closest to the mouse event EVENT. | |
2271 If the event did not occur over a window or over text, return the | |
2272 closest point to the location of the event. If the Y pixel position | |
2273 overlaps a window and the X pixel position is to the left of that | |
2274 window, the closest point is the beginning of the line containing the | |
2275 Y position. If the Y pixel position overlaps a window and the X pixel | |
2276 position is to the right of that window, the closest point is the end | |
2277 of the line containing the Y position. If the Y pixel position is | |
2278 above a window, return 0. If it is below the last character in a window, | |
2279 return the value of (window-end). | |
2280 */ | |
2281 (event)) | |
2282 { | |
665 | 2283 Charbpos bufp; |
428 | 2284 |
2285 event_pixel_translation (event, 0, 0, 0, 0, 0, 0, &bufp, 0, 0, 0); | |
2286 | |
2287 return bufp ? make_int (bufp) : Qnil; | |
2288 } | |
2289 | |
2290 DEFUN ("event-x", Fevent_x, 1, 1, 0, /* | |
2291 Return the X position of the mouse event EVENT in characters. | |
2292 This is relative to the window the event occurred over. | |
2293 */ | |
2294 (event)) | |
2295 { | |
2296 int char_x; | |
2297 | |
2298 event_pixel_translation (event, &char_x, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
2299 | |
2300 return make_int (char_x); | |
2301 } | |
2302 | |
2303 DEFUN ("event-y", Fevent_y, 1, 1, 0, /* | |
2304 Return the Y position of the mouse event EVENT in characters. | |
2305 This is relative to the window the event occurred over. | |
2306 */ | |
2307 (event)) | |
2308 { | |
2309 int char_y; | |
2310 | |
2311 event_pixel_translation (event, 0, &char_y, 0, 0, 0, 0, 0, 0, 0, 0); | |
2312 | |
2313 return make_int (char_y); | |
2314 } | |
2315 | |
2316 DEFUN ("event-modeline-position", Fevent_modeline_position, 1, 1, 0, /* | |
2317 Return the character position in the modeline that EVENT occurred over. | |
2318 EVENT should be a mouse event. If EVENT did not occur over a modeline, | |
2319 nil is returned. You can determine the actual character that the | |
2320 event occurred over by looking in `generated-modeline-string' at the | |
2321 returned character position. Note that `generated-modeline-string' | |
2322 is buffer-local, and you must use EVENT's buffer when retrieving | |
2323 `generated-modeline-string' in order to get accurate results. | |
2324 */ | |
2325 (event)) | |
2326 { | |
2327 Charcount mbufp; | |
2328 int where; | |
2329 | |
2330 where = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, &mbufp, 0, 0); | |
2331 | |
2332 return (mbufp < 0 || where != OVER_MODELINE) ? Qnil : make_int (mbufp); | |
2333 } | |
2334 | |
2335 DEFUN ("event-glyph", Fevent_glyph, 1, 1, 0, /* | |
2336 Return the glyph that the mouse event EVENT occurred over, or nil. | |
2337 */ | |
2338 (event)) | |
2339 { | |
2340 Lisp_Object glyph; | |
2341 struct window *w; | |
2342 | |
2343 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, &glyph, 0); | |
2344 | |
2345 return w && GLYPHP (glyph) ? glyph : Qnil; | |
2346 } | |
2347 | |
2348 DEFUN ("event-glyph-extent", Fevent_glyph_extent, 1, 1, 0, /* | |
2349 Return the extent of the glyph that the mouse event EVENT occurred over. | |
2350 If the event did not occur over a glyph, nil is returned. | |
2351 */ | |
2352 (event)) | |
2353 { | |
2354 Lisp_Object extent; | |
2355 struct window *w; | |
2356 | |
2357 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, 0, &extent); | |
2358 | |
2359 return w && EXTENTP (extent) ? extent : Qnil; | |
2360 } | |
2361 | |
2362 DEFUN ("event-glyph-x-pixel", Fevent_glyph_x_pixel, 1, 1, 0, /* | |
2363 Return the X pixel position of EVENT relative to the glyph it occurred over. | |
2364 EVENT should be a mouse event. If the event did not occur over a glyph, | |
2365 nil is returned. | |
2366 */ | |
2367 (event)) | |
2368 { | |
2369 Lisp_Object extent; | |
2370 struct window *w; | |
2371 int obj_x; | |
2372 | |
2373 event_pixel_translation (event, 0, 0, &obj_x, 0, &w, 0, 0, 0, 0, &extent); | |
2374 | |
2375 return w && EXTENTP (extent) ? make_int (obj_x) : Qnil; | |
2376 } | |
2377 | |
2378 DEFUN ("event-glyph-y-pixel", Fevent_glyph_y_pixel, 1, 1, 0, /* | |
2379 Return the Y pixel position of EVENT relative to the glyph it occurred over. | |
2380 EVENT should be a mouse event. If the event did not occur over a glyph, | |
2381 nil is returned. | |
2382 */ | |
2383 (event)) | |
2384 { | |
2385 Lisp_Object extent; | |
2386 struct window *w; | |
2387 int obj_y; | |
2388 | |
2389 event_pixel_translation (event, 0, 0, 0, &obj_y, &w, 0, 0, 0, 0, &extent); | |
2390 | |
2391 return w && EXTENTP (extent) ? make_int (obj_y) : Qnil; | |
2392 } | |
2393 | |
2394 DEFUN ("event-toolbar-button", Fevent_toolbar_button, 1, 1, 0, /* | |
2395 Return the toolbar button that the mouse event EVENT occurred over. | |
2396 If the event did not occur over a toolbar button, nil is returned. | |
2397 */ | |
2340 | 2398 (USED_IF_TOOLBARS (event))) |
428 | 2399 { |
2400 #ifdef HAVE_TOOLBARS | |
2401 Lisp_Object button; | |
2402 | |
2403 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, &button, 0); | |
2404 | |
2405 return result == OVER_TOOLBAR && TOOLBAR_BUTTONP (button) ? button : Qnil; | |
2406 #else | |
2407 return Qnil; | |
2408 #endif | |
2409 } | |
2410 | |
2411 DEFUN ("event-process", Fevent_process, 1, 1, 0, /* | |
444 | 2412 Return the process of the process-output event EVENT. |
428 | 2413 */ |
2414 (event)) | |
2415 { | |
934 | 2416 CHECK_EVENT_TYPE (event, process_event, Qprocess_event_p); |
1204 | 2417 return XEVENT_PROCESS_PROCESS (event); |
428 | 2418 } |
2419 | |
2420 DEFUN ("event-function", Fevent_function, 1, 1, 0, /* | |
2421 Return the callback function of EVENT. | |
2422 EVENT should be a timeout, misc-user, or eval event. | |
2423 */ | |
2424 (event)) | |
2425 { | |
2426 again: | |
2427 CHECK_LIVE_EVENT (event); | |
934 | 2428 switch (XEVENT_TYPE (event)) |
2429 { | |
2430 case timeout_event: | |
1204 | 2431 return XEVENT_TIMEOUT_FUNCTION (event); |
934 | 2432 case misc_user_event: |
1204 | 2433 return XEVENT_MISC_USER_FUNCTION (event); |
934 | 2434 case eval_event: |
1204 | 2435 return XEVENT_EVAL_FUNCTION (event); |
934 | 2436 default: |
2437 event = wrong_type_argument (intern ("timeout-or-eval-event-p"), event); | |
2438 goto again; | |
2439 } | |
428 | 2440 } |
2441 | |
2442 DEFUN ("event-object", Fevent_object, 1, 1, 0, /* | |
2443 Return the callback function argument of EVENT. | |
2444 EVENT should be a timeout, misc-user, or eval event. | |
2445 */ | |
2446 (event)) | |
2447 { | |
2448 again: | |
2449 CHECK_LIVE_EVENT (event); | |
934 | 2450 switch (XEVENT_TYPE (event)) |
2451 { | |
2452 case timeout_event: | |
1204 | 2453 return XEVENT_TIMEOUT_OBJECT (event); |
934 | 2454 case misc_user_event: |
1204 | 2455 return XEVENT_MISC_USER_OBJECT (event); |
934 | 2456 case eval_event: |
1204 | 2457 return XEVENT_EVAL_OBJECT (event); |
934 | 2458 default: |
2459 event = wrong_type_argument (intern ("timeout-or-eval-event-p"), event); | |
2460 goto again; | |
2461 } | |
428 | 2462 } |
2463 | |
2464 DEFUN ("event-properties", Fevent_properties, 1, 1, 0, /* | |
2465 Return a list of all of the properties of EVENT. | |
2466 This is in the form of a property list (alternating keyword/value pairs). | |
2467 */ | |
2468 (event)) | |
2469 { | |
2470 Lisp_Object props = Qnil; | |
440 | 2471 Lisp_Event *e; |
428 | 2472 struct gcpro gcpro1; |
2473 | |
2474 CHECK_LIVE_EVENT (event); | |
2475 e = XEVENT (event); | |
2476 GCPRO1 (props); | |
2477 | |
2478 props = cons3 (Qtimestamp, Fevent_timestamp (event), props); | |
2479 | |
934 | 2480 switch (EVENT_TYPE (e)) |
428 | 2481 { |
2500 | 2482 default: ABORT (); |
428 | 2483 |
2484 case process_event: | |
1204 | 2485 props = cons3 (Qprocess, EVENT_PROCESS_PROCESS (e), props); |
428 | 2486 break; |
2487 | |
2488 case timeout_event: | |
2489 props = cons3 (Qobject, Fevent_object (event), props); | |
2490 props = cons3 (Qfunction, Fevent_function (event), props); | |
1204 | 2491 props = cons3 (Qid, make_int (EVENT_TIMEOUT_ID_NUMBER (e)), props); |
428 | 2492 break; |
2493 | |
2494 case key_press_event: | |
2495 props = cons3 (Qmodifiers, Fevent_modifiers (event), props); | |
2496 props = cons3 (Qkey, Fevent_key (event), props); | |
2497 break; | |
2498 | |
2499 case button_press_event: | |
2500 case button_release_event: | |
2501 props = cons3 (Qy, Fevent_y_pixel (event), props); | |
2502 props = cons3 (Qx, Fevent_x_pixel (event), props); | |
2503 props = cons3 (Qmodifiers, Fevent_modifiers (event), props); | |
2504 props = cons3 (Qbutton, Fevent_button (event), props); | |
2505 break; | |
2506 | |
2507 case pointer_motion_event: | |
2508 props = cons3 (Qmodifiers, Fevent_modifiers (event), props); | |
2509 props = cons3 (Qy, Fevent_y_pixel (event), props); | |
2510 props = cons3 (Qx, Fevent_x_pixel (event), props); | |
2511 break; | |
2512 | |
2513 case misc_user_event: | |
2514 props = cons3 (Qobject, Fevent_object (event), props); | |
2515 props = cons3 (Qfunction, Fevent_function (event), props); | |
2516 props = cons3 (Qy, Fevent_y_pixel (event), props); | |
2517 props = cons3 (Qx, Fevent_x_pixel (event), props); | |
2518 props = cons3 (Qmodifiers, Fevent_modifiers (event), props); | |
2519 props = cons3 (Qbutton, Fevent_button (event), props); | |
2520 break; | |
2521 | |
2522 case eval_event: | |
2523 props = cons3 (Qobject, Fevent_object (event), props); | |
2524 props = cons3 (Qfunction, Fevent_function (event), props); | |
2525 break; | |
2526 | |
2527 case magic_eval_event: | |
2528 case magic_event: | |
2529 break; | |
2530 | |
2531 case empty_event: | |
2532 RETURN_UNGCPRO (Qnil); | |
2533 break; | |
2534 } | |
2535 | |
2536 props = cons3 (Qchannel, Fevent_channel (event), props); | |
2537 UNGCPRO; | |
2538 | |
2539 return props; | |
2540 } | |
2541 | |
2542 | |
2543 /************************************************************************/ | |
2544 /* initialization */ | |
2545 /************************************************************************/ | |
2546 | |
2547 void | |
2548 syms_of_events (void) | |
2549 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2550 INIT_LISP_OBJECT (event); |
1204 | 2551 #ifdef EVENT_DATA_AS_OBJECTS |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2552 INIT_LISP_OBJECT (key_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2553 INIT_LISP_OBJECT (button_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2554 INIT_LISP_OBJECT (motion_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2555 INIT_LISP_OBJECT (process_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2556 INIT_LISP_OBJECT (timeout_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2557 INIT_LISP_OBJECT (eval_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2558 INIT_LISP_OBJECT (misc_user_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2559 INIT_LISP_OBJECT (magic_eval_data); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3063
diff
changeset
|
2560 INIT_LISP_OBJECT (magic_data); |
1204 | 2561 #endif /* EVENT_DATA_AS_OBJECTS */ |
442 | 2562 |
428 | 2563 DEFSUBR (Fcharacter_to_event); |
2564 DEFSUBR (Fevent_to_character); | |
2565 | |
2566 DEFSUBR (Fmake_event); | |
2567 DEFSUBR (Fdeallocate_event); | |
2568 DEFSUBR (Fcopy_event); | |
2569 DEFSUBR (Feventp); | |
2570 DEFSUBR (Fevent_live_p); | |
2571 DEFSUBR (Fevent_type); | |
2572 DEFSUBR (Fevent_properties); | |
2573 | |
2574 DEFSUBR (Fevent_timestamp); | |
442 | 2575 DEFSUBR (Fevent_timestamp_lessp); |
428 | 2576 DEFSUBR (Fevent_key); |
2577 DEFSUBR (Fevent_button); | |
2578 DEFSUBR (Fevent_modifier_bits); | |
2579 DEFSUBR (Fevent_modifiers); | |
2580 DEFSUBR (Fevent_x_pixel); | |
2581 DEFSUBR (Fevent_y_pixel); | |
2582 DEFSUBR (Fevent_window_x_pixel); | |
2583 DEFSUBR (Fevent_window_y_pixel); | |
2584 DEFSUBR (Fevent_over_text_area_p); | |
2585 DEFSUBR (Fevent_over_modeline_p); | |
2586 DEFSUBR (Fevent_over_border_p); | |
2587 DEFSUBR (Fevent_over_toolbar_p); | |
2588 DEFSUBR (Fevent_over_vertical_divider_p); | |
2589 DEFSUBR (Fevent_channel); | |
2590 DEFSUBR (Fevent_window); | |
2591 DEFSUBR (Fevent_point); | |
2592 DEFSUBR (Fevent_closest_point); | |
2593 DEFSUBR (Fevent_x); | |
2594 DEFSUBR (Fevent_y); | |
2595 DEFSUBR (Fevent_modeline_position); | |
2596 DEFSUBR (Fevent_glyph); | |
2597 DEFSUBR (Fevent_glyph_extent); | |
2598 DEFSUBR (Fevent_glyph_x_pixel); | |
2599 DEFSUBR (Fevent_glyph_y_pixel); | |
2600 DEFSUBR (Fevent_toolbar_button); | |
2601 DEFSUBR (Fevent_process); | |
2602 DEFSUBR (Fevent_function); | |
2603 DEFSUBR (Fevent_object); | |
2604 | |
563 | 2605 DEFSYMBOL (Qeventp); |
2606 DEFSYMBOL (Qevent_live_p); | |
2607 DEFSYMBOL (Qkey_press_event_p); | |
2608 DEFSYMBOL (Qbutton_event_p); | |
2609 DEFSYMBOL (Qmouse_event_p); | |
2610 DEFSYMBOL (Qprocess_event_p); | |
2611 DEFSYMBOL (Qkey_press); | |
2612 DEFSYMBOL (Qbutton_press); | |
2613 DEFSYMBOL (Qbutton_release); | |
2614 DEFSYMBOL (Qmisc_user); | |
2828 | 2615 DEFSYMBOL (Qcharacter_of_keysym); |
563 | 2616 DEFSYMBOL (Qascii_character); |
428 | 2617 |
2618 defsymbol (&QKbackspace, "backspace"); | |
2619 defsymbol (&QKtab, "tab"); | |
2620 defsymbol (&QKlinefeed, "linefeed"); | |
2621 defsymbol (&QKreturn, "return"); | |
2622 defsymbol (&QKescape, "escape"); | |
2623 defsymbol (&QKspace, "space"); | |
2624 defsymbol (&QKdelete, "delete"); | |
2625 } | |
2626 | |
2627 | |
2628 void | |
2629 reinit_vars_of_events (void) | |
2630 { | |
2631 Vevent_resource = Qnil; | |
3092 | 2632 #ifdef NEW_GC |
2633 staticpro (&Vevent_resource); | |
2634 #endif /* NEW_GC */ | |
428 | 2635 } |
2636 | |
2637 void | |
2638 vars_of_events (void) | |
2639 { | |
2640 } |