Mercurial > hg > xemacs-beta
annotate src/event-stream.c @ 5801:0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
lisp/ChangeLog addition:
2014-07-02 Aidan Kehoe <kehoea@parhasard.net>
* cmdloop.el:
* cmdloop.el (read-char-1): New.
* cmdloop.el (read-char, read-char-exclusive):
Use #'read-char-1 in these function; sync their API with that of
GNU, respect `function-key-map' where we didn't before, add
initial support for Quail input methods.
* keymap.el (next-key-event):
Accept EVENT and PROMPT arguments, as does #'next-command-event.
* keymap.el (event-apply-modifiers):
Use #'functionp here, no need to exclude lambdas from
`function-key-map'.
* keymap.el (synthesize-keysym):
Correct this function's docstring.
src/ChangeLog addition:
2014-07-02 Aidan Kehoe <kehoea@parhasard.net>
* event-stream.c (Fnext_command_event):
Only snooze displaying keystrokes if PROMPT is nil. If prompt is
non-nil, our callers want to see it.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 02 Jul 2014 16:32:19 +0100 |
parents | 3192994c49ca |
children | b79e1e02bf01 |
rev | line source |
---|---|
428 | 1 /* The portable interface to event streams. |
2 Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
3 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
4 Copyright (C) 1995 Sun Microsystems, Inc. | |
5125 | 5 Copyright (C) 1995, 1996, 2001, 2002, 2003, 2005, 2010 Ben Wing. |
428 | 6 |
7 This file is part of XEmacs. | |
8 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
9 XEmacs is free software: you can redistribute it and/or modify it |
428 | 10 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
11 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
12 option) any later version. |
428 | 13 |
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
20 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 21 |
22 /* Synched up with: Not in FSF. */ | |
23 | |
442 | 24 /* Authorship: |
25 | |
26 Created 1991 by Jamie Zawinski. | |
27 A great deal of work over the ages by Ben Wing (Mule-ization for 19.12, | |
28 device abstraction for 19.12/19.13, async timers for 19.14, | |
29 rewriting of focus code for 19.12, pre-idle hook for 19.12, | |
30 redoing of signal and quit handling for 19.9 and 19.12, | |
31 misc-user events to clean up menu/scrollbar handling for 19.11, | |
32 function-key-map/key-translation-map/keyboard-translate-table for | |
33 19.13/19.14, open-dribble-file for 19.13, much other cleanup). | |
34 focus-follows-mouse from Chuck Thompson, 1995. | |
35 XIM stuff by Martin Buchholz, c. 1996?. | |
36 */ | |
37 | |
428 | 38 /* This file has been Mule-ized. */ |
39 | |
40 /* | |
41 * DANGER!! | |
42 * | |
43 * If you ever change ANYTHING in this file, you MUST run the | |
44 * testcases at the end to make sure that you haven't changed | |
45 * the semantics of recent-keys, last-input-char, or keyboard | |
46 * macros. You'd be surprised how easy it is to break this. | |
47 * | |
48 */ | |
49 | |
50 /* TODO: | |
1204 | 51 [This stuff is way too hard to maintain - needs rework.] |
52 I don't think it's that bad in the main. I've done a fair amount of | |
53 cleanup work over the ages; the only stuff that's probably still somewhat | |
54 messy is the command-builder handling, which is that way because it's | |
55 trying to be "compatible" with pseudo-standards established by Emacs | |
56 v18. | |
428 | 57 |
58 The command builder should deal only with key and button events. | |
59 Other command events should be able to come in the MIDDLE of a key | |
60 sequence, without disturbing the key sequence composition, or the | |
61 command builder structure representing it. | |
62 | |
63 Someone should rethink universal-argument and figure out how an | |
64 arbitrary command can influence the next command (universal-argument | |
65 or universal-coding-system-argument) or the next key (hyperify). | |
66 | |
67 Both C-h and Help in the middle of a key sequence should trigger | |
68 prefix-help-command. help-char is stupid. Maybe we need | |
69 keymap-of-last-resort? | |
70 | |
71 After prefix-help is run, one should be able to CONTINUE TYPING, | |
72 instead of RETYPING, the key sequence. | |
73 */ | |
74 | |
75 #include <config.h> | |
76 #include "lisp.h" | |
77 | |
78 #include "blocktype.h" | |
79 #include "buffer.h" | |
80 #include "commands.h" | |
872 | 81 #include "device-impl.h" |
428 | 82 #include "elhash.h" |
83 #include "events.h" | |
872 | 84 #include "frame-impl.h" |
428 | 85 #include "insdel.h" /* for buffer_reset_changes */ |
86 #include "keymap.h" | |
87 #include "lstream.h" | |
88 #include "macros.h" /* for defining_keyboard_macro */ | |
442 | 89 #include "menubar.h" /* #### for evil kludges. */ |
428 | 90 #include "process.h" |
1292 | 91 #include "profile.h" |
872 | 92 #include "window-impl.h" |
428 | 93 |
94 #include "sysdep.h" /* init_poll_for_quit() */ | |
95 #include "syssignal.h" /* SIGCHLD, etc. */ | |
96 #include "sysfile.h" | |
97 #include "systime.h" /* to set Vlast_input_time */ | |
98 | |
99 #include "file-coding.h" | |
100 | |
101 #include <errno.h> | |
102 | |
103 /* The number of keystrokes between auto-saves. */ | |
458 | 104 static Fixnum auto_save_interval; |
428 | 105 |
106 Lisp_Object Qundefined_keystroke_sequence; | |
563 | 107 Lisp_Object Qinvalid_key_binding; |
428 | 108 |
109 Lisp_Object Qcommand_event_p; | |
110 | |
111 /* Hooks to run before and after each command. */ | |
112 Lisp_Object Vpre_command_hook, Vpost_command_hook; | |
113 Lisp_Object Qpre_command_hook, Qpost_command_hook; | |
114 | |
442 | 115 /* See simple.el */ |
116 Lisp_Object Qhandle_pre_motion_command, Qhandle_post_motion_command; | |
117 | |
428 | 118 /* Hook run when XEmacs is about to be idle. */ |
119 Lisp_Object Qpre_idle_hook, Vpre_idle_hook; | |
120 | |
121 /* Control gratuitous keyboard focus throwing. */ | |
122 int focus_follows_mouse; | |
123 | |
444 | 124 /* When true, modifier keys are sticky. */ |
442 | 125 int modifier_keys_are_sticky; |
444 | 126 /* Modifier keys are sticky for this many milliseconds. */ |
127 Lisp_Object Vmodifier_keys_sticky_time; | |
128 | |
2828 | 129 /* If true, "Russian C-x processing" is enabled. */ |
130 int try_alternate_layouts_for_commands; | |
131 | |
444 | 132 /* Here FSF Emacs 20.7 defines Vpost_command_idle_hook, |
133 post_command_idle_delay, Vdeferred_action_list, and | |
134 Vdeferred_action_function, but we don't because that stuff is crap, | |
1315 | 135 and we're smarter than them, and their mommas are fat. */ |
444 | 136 |
137 /* FSF Emacs 20.7 also defines Vinput_method_function, | |
138 Qinput_method_exit_on_first_char and Qinput_method_use_echo_area. | |
1315 | 139 I don't know whether this should be imported or not. */ |
428 | 140 |
141 /* Non-nil disable property on a command means | |
142 do not execute it; call disabled-command-hook's value instead. */ | |
733 | 143 Lisp_Object Qdisabled; |
428 | 144 |
145 /* Last keyboard or mouse input event read as a command. */ | |
146 Lisp_Object Vlast_command_event; | |
147 | |
148 /* The nearest ASCII equivalent of the above. */ | |
149 Lisp_Object Vlast_command_char; | |
150 | |
151 /* Last keyboard or mouse event read for any purpose. */ | |
152 Lisp_Object Vlast_input_event; | |
153 | |
154 /* The nearest ASCII equivalent of the above. */ | |
155 Lisp_Object Vlast_input_char; | |
156 | |
157 Lisp_Object Vcurrent_mouse_event; | |
158 | |
159 /* This is fbound in cmdloop.el, see the commentary there */ | |
160 Lisp_Object Qcancel_mode_internal; | |
161 | |
162 /* If not Qnil, event objects to be read as the next command input */ | |
163 Lisp_Object Vunread_command_events; | |
164 Lisp_Object Vunread_command_event; /* obsoleteness support */ | |
165 | |
166 static Lisp_Object Qunread_command_events, Qunread_command_event; | |
167 | |
168 /* Previous command, represented by a Lisp object. | |
442 | 169 Does not include prefix commands and arg setting commands. */ |
428 | 170 Lisp_Object Vlast_command; |
171 | |
442 | 172 /* Contents of this-command-properties for the last command. */ |
173 Lisp_Object Vlast_command_properties; | |
174 | |
428 | 175 /* If a command sets this, the value goes into |
442 | 176 last-command for the next command. */ |
428 | 177 Lisp_Object Vthis_command; |
178 | |
442 | 179 /* If a command sets this, the value goes into |
180 last-command-properties for the next command. */ | |
181 Lisp_Object Vthis_command_properties; | |
182 | |
428 | 183 /* The value of point when the last command was executed. */ |
665 | 184 Charbpos last_point_position; |
428 | 185 |
186 /* The frame that was current when the last command was started. */ | |
187 Lisp_Object Vlast_selected_frame; | |
188 | |
189 /* The buffer that was current when the last command was started. */ | |
190 Lisp_Object last_point_position_buffer; | |
191 | |
192 /* A (16bit . 16bit) representation of the time of the last-command-event. */ | |
193 Lisp_Object Vlast_input_time; | |
194 | |
195 /* A (16bit 16bit usec) representation of the time | |
196 of the last-command-event. */ | |
197 Lisp_Object Vlast_command_event_time; | |
198 | |
199 /* Character to recognize as the help char. */ | |
200 Lisp_Object Vhelp_char; | |
201 | |
202 /* Form to execute when help char is typed. */ | |
203 Lisp_Object Vhelp_form; | |
204 | |
205 /* Command to run when the help character follows a prefix key. */ | |
206 Lisp_Object Vprefix_help_command; | |
207 | |
208 /* Flag to tell QUIT that some interesting occurrence (e.g. a keypress) | |
209 may have happened. */ | |
210 volatile int something_happened; | |
211 | |
212 /* Hash table to translate keysyms through */ | |
213 Lisp_Object Vkeyboard_translate_table; | |
214 | |
215 /* If control-meta-super-shift-X is undefined, try control-meta-super-x */ | |
216 Lisp_Object Vretry_undefined_key_binding_unshifted; | |
217 Lisp_Object Qretry_undefined_key_binding_unshifted; | |
218 | |
219 /* Console that corresponds to our controlling terminal */ | |
220 Lisp_Object Vcontrolling_terminal; | |
221 | |
222 /* An event (actually an event chain linked through event_next) or Qnil. | |
223 */ | |
224 Lisp_Object Vthis_command_keys; | |
225 Lisp_Object Vthis_command_keys_tail; | |
226 | |
227 /* #### kludge! */ | |
228 Lisp_Object Qauto_show_make_point_visible; | |
229 | |
230 /* File in which we write all commands we read; an lstream */ | |
231 static Lisp_Object Vdribble_file; | |
232 | |
233 /* Recent keys ring location; a vector of events or nil-s */ | |
234 Lisp_Object Vrecent_keys_ring; | |
235 int recent_keys_ring_size; | |
236 int recent_keys_ring_index; | |
237 | |
238 /* Boolean specifying whether keystrokes should be added to | |
239 recent-keys. */ | |
240 int inhibit_input_event_recording; | |
241 | |
430 | 242 Lisp_Object Qself_insert_defer_undo; |
243 | |
5139
a48ef26d87ee
Clean up prototypes for Lisp variables/symbols. Put decls for them with
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
244 Lisp_Object Qsans_modifiers; |
a48ef26d87ee
Clean up prototypes for Lisp variables/symbols. Put decls for them with
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
245 |
1268 | 246 int in_modal_loop; |
247 | |
248 /* the number of keyboard characters read. callint.c wants this. */ | |
249 Charcount num_input_chars; | |
428 | 250 |
1292 | 251 static Lisp_Object Qnext_event, Qdispatch_event, QSnext_event_internal; |
252 static Lisp_Object QSexecute_internal_event; | |
253 | |
428 | 254 #ifdef DEBUG_XEMACS |
458 | 255 Fixnum debug_emacs_events; |
428 | 256 |
257 static void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
258 external_debugging_print_event (const Ascbyte *event_description, |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
259 Lisp_Object event) |
428 | 260 { |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
261 write_ascstring (Qexternal_debugging_output, "("); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
262 write_ascstring (Qexternal_debugging_output, event_description); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
263 write_ascstring (Qexternal_debugging_output, ") "); |
428 | 264 print_internal (event, Qexternal_debugging_output, 1); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
265 write_ascstring (Qexternal_debugging_output, "\n"); |
428 | 266 } |
267 #define DEBUG_PRINT_EMACS_EVENT(event_description, event) do { \ | |
268 if (debug_emacs_events) \ | |
269 external_debugging_print_event (event_description, event); \ | |
270 } while (0) | |
271 #else | |
272 #define DEBUG_PRINT_EMACS_EVENT(string, event) | |
273 #endif | |
274 | |
275 | |
276 /* The callback routines for the window system or terminal driver */ | |
277 struct event_stream *event_stream; | |
278 | |
2367 | 279 |
280 /* | |
281 | |
282 See also | |
283 | |
284 (Info-goto-node "(internals)Event Stream Callback Routines") | |
285 */ | |
1204 | 286 |
428 | 287 static Lisp_Object command_event_queue; |
288 static Lisp_Object command_event_queue_tail; | |
289 | |
1204 | 290 Lisp_Object dispatch_event_queue; |
291 static Lisp_Object dispatch_event_queue_tail; | |
292 | |
428 | 293 /* Nonzero means echo unfinished commands after this many seconds of pause. */ |
294 static Lisp_Object Vecho_keystrokes; | |
295 | |
296 /* The number of keystrokes since the last auto-save. */ | |
297 static int keystrokes_since_auto_save; | |
298 | |
299 /* Used by the C-g signal handler so that it will never "hard quit" | |
300 when waiting for an event. Otherwise holding down C-g could | |
301 cause a suspension back to the shell, which is generally | |
302 undesirable. (#### This doesn't fully work.) */ | |
303 | |
304 int emacs_is_blocking; | |
305 | |
306 /* Handlers which run during sit-for, sleep-for and accept-process-output | |
307 are not allowed to recursively call these routines. We record here | |
308 if we are in that situation. */ | |
309 | |
1268 | 310 static int recursive_sit_for; |
311 | |
312 static void pre_command_hook (void); | |
313 static void post_command_hook (void); | |
314 static void maybe_kbd_translate (Lisp_Object event); | |
315 static void push_this_command_keys (Lisp_Object event); | |
316 static void push_recent_keys (Lisp_Object event); | |
317 static void dribble_out_event (Lisp_Object event); | |
318 static void execute_internal_event (Lisp_Object event); | |
319 static int is_scrollbar_event (Lisp_Object event); | |
428 | 320 |
321 | |
322 /**********************************************************************/ | |
323 /* Command-builder object */ | |
324 /**********************************************************************/ | |
325 | |
326 #define XCOMMAND_BUILDER(x) \ | |
327 XRECORD (x, command_builder, struct command_builder) | |
771 | 328 #define wrap_command_builder(p) wrap_record (p, command_builder) |
428 | 329 #define COMMAND_BUILDERP(x) RECORDP (x, command_builder) |
330 #define CHECK_COMMAND_BUILDER(x) CHECK_RECORD (x, command_builder) | |
771 | 331 #define CONCHECK_COMMAND_BUILDER(x) CONCHECK_RECORD (x, command_builder) |
332 | |
1204 | 333 static const struct memory_description command_builder_description [] = { |
934 | 334 { XD_LISP_OBJECT, offsetof (struct command_builder, current_events) }, |
335 { XD_LISP_OBJECT, offsetof (struct command_builder, most_current_event) }, | |
336 { XD_LISP_OBJECT, offsetof (struct command_builder, last_non_munged_event) }, | |
337 { XD_LISP_OBJECT, offsetof (struct command_builder, console) }, | |
1204 | 338 { XD_LISP_OBJECT_ARRAY, offsetof (struct command_builder, first_mungeable_event), 2 }, |
934 | 339 { XD_END } |
340 }; | |
341 | |
428 | 342 static Lisp_Object |
343 mark_command_builder (Lisp_Object obj) | |
344 { | |
345 struct command_builder *builder = XCOMMAND_BUILDER (obj); | |
346 mark_object (builder->current_events); | |
347 mark_object (builder->most_current_event); | |
348 mark_object (builder->last_non_munged_event); | |
1204 | 349 mark_object (builder->first_mungeable_event[0]); |
350 mark_object (builder->first_mungeable_event[1]); | |
428 | 351 return builder->console; |
352 } | |
353 | |
354 static void | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
355 finalize_command_builder (Lisp_Object obj) |
428 | 356 { |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
357 struct command_builder *b = XCOMMAND_BUILDER (obj); |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
358 if (b->echo_buf) |
428 | 359 { |
5125 | 360 xfree (b->echo_buf); |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
361 b->echo_buf = 0; |
428 | 362 } |
363 } | |
364 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
365 DEFINE_NODUMP_LISP_OBJECT ("command-builder", command_builder, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
366 mark_command_builder, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
367 internal_object_printer, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
368 finalize_command_builder, 0, 0, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
369 command_builder_description, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
370 struct command_builder); |
771 | 371 |
428 | 372 static void |
373 reset_command_builder_event_chain (struct command_builder *builder) | |
374 { | |
375 builder->current_events = Qnil; | |
376 builder->most_current_event = Qnil; | |
377 builder->last_non_munged_event = Qnil; | |
1204 | 378 builder->first_mungeable_event[0] = Qnil; |
379 builder->first_mungeable_event[1] = Qnil; | |
428 | 380 } |
381 | |
382 Lisp_Object | |
771 | 383 allocate_command_builder (Lisp_Object console, int with_echo_buf) |
428 | 384 { |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
385 Lisp_Object builder_obj = ALLOC_NORMAL_LISP_OBJECT (command_builder); |
771 | 386 struct command_builder *builder = XCOMMAND_BUILDER (builder_obj); |
428 | 387 |
388 builder->console = console; | |
389 reset_command_builder_event_chain (builder); | |
771 | 390 if (with_echo_buf) |
391 { | |
392 /* #### This badly needs to be turned into a Dynarr */ | |
393 builder->echo_buf_length = 300; /* #### Kludge */ | |
867 | 394 builder->echo_buf = xnew_array (Ibyte, builder->echo_buf_length); |
771 | 395 builder->echo_buf[0] = 0; |
396 } | |
397 else | |
398 { | |
399 builder->echo_buf_length = 0; | |
400 builder->echo_buf = NULL; | |
401 } | |
428 | 402 builder->echo_buf_index = -1; |
403 builder->self_insert_countdown = 0; | |
404 | |
405 return builder_obj; | |
406 } | |
407 | |
771 | 408 /* Copy or clone COLLAPSING (copy to NEW_BUILDINGS if non-zero, |
409 otherwise clone); but don't copy the echo-buf stuff. (The calling | |
410 routines don't need it and will reset it, and we would rather avoid | |
411 malloc.) */ | |
412 | |
413 static Lisp_Object | |
414 copy_command_builder (struct command_builder *collapsing, | |
415 struct command_builder *new_buildings) | |
416 { | |
417 if (!new_buildings) | |
418 new_buildings = XCOMMAND_BUILDER (allocate_command_builder (Qnil, 0)); | |
419 | |
3358 | 420 new_buildings->console = collapsing->console; |
421 | |
771 | 422 new_buildings->self_insert_countdown = collapsing->self_insert_countdown; |
423 | |
424 deallocate_event_chain (new_buildings->current_events); | |
425 new_buildings->current_events = | |
426 copy_event_chain (collapsing->current_events); | |
427 | |
428 new_buildings->most_current_event = | |
429 transfer_event_chain_pointer (collapsing->most_current_event, | |
430 collapsing->current_events, | |
431 new_buildings->current_events); | |
432 new_buildings->last_non_munged_event = | |
433 transfer_event_chain_pointer (collapsing->last_non_munged_event, | |
434 collapsing->current_events, | |
435 new_buildings->current_events); | |
1204 | 436 new_buildings->first_mungeable_event[0] = |
437 transfer_event_chain_pointer (collapsing->first_mungeable_event[0], | |
771 | 438 collapsing->current_events, |
439 new_buildings->current_events); | |
1204 | 440 new_buildings->first_mungeable_event[1] = |
441 transfer_event_chain_pointer (collapsing->first_mungeable_event[1], | |
771 | 442 collapsing->current_events, |
443 new_buildings->current_events); | |
444 | |
445 return wrap_command_builder (new_buildings); | |
446 } | |
447 | |
448 static void | |
449 free_command_builder (struct command_builder *builder) | |
450 { | |
451 if (builder->echo_buf) | |
452 { | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
453 xfree (builder->echo_buf); |
771 | 454 builder->echo_buf = NULL; |
455 } | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
456 free_normal_lisp_object (wrap_command_builder (builder)); |
771 | 457 } |
458 | |
428 | 459 static void |
460 command_builder_append_event (struct command_builder *builder, | |
461 Lisp_Object event) | |
462 { | |
463 assert (EVENTP (event)); | |
464 | |
771 | 465 event = Fcopy_event (event, Qnil); |
428 | 466 if (EVENTP (builder->most_current_event)) |
467 XSET_EVENT_NEXT (builder->most_current_event, event); | |
468 else | |
469 builder->current_events = event; | |
470 | |
471 builder->most_current_event = event; | |
1204 | 472 if (NILP (builder->first_mungeable_event[0])) |
473 builder->first_mungeable_event[0] = event; | |
474 if (NILP (builder->first_mungeable_event[1])) | |
475 builder->first_mungeable_event[1] = event; | |
428 | 476 } |
477 | |
478 | |
479 /**********************************************************************/ | |
480 /* Low-level interfaces onto event methods */ | |
481 /**********************************************************************/ | |
482 | |
483 static void | |
1268 | 484 check_event_stream_ok (void) |
428 | 485 { |
486 if (!event_stream && noninteractive) | |
814 | 487 /* See comment in init_event_stream() */ |
488 init_event_stream (); | |
489 else assert (event_stream); | |
428 | 490 } |
491 | |
492 void | |
440 | 493 event_stream_handle_magic_event (Lisp_Event *event) |
428 | 494 { |
1268 | 495 check_event_stream_ok (); |
428 | 496 event_stream->handle_magic_event_cb (event); |
497 } | |
498 | |
788 | 499 void |
500 event_stream_format_magic_event (Lisp_Event *event, Lisp_Object pstream) | |
501 { | |
1268 | 502 check_event_stream_ok (); |
788 | 503 event_stream->format_magic_event_cb (event, pstream); |
504 } | |
505 | |
506 int | |
507 event_stream_compare_magic_event (Lisp_Event *e1, Lisp_Event *e2) | |
508 { | |
1268 | 509 check_event_stream_ok (); |
788 | 510 return event_stream->compare_magic_event_cb (e1, e2); |
511 } | |
512 | |
513 Hashcode | |
514 event_stream_hash_magic_event (Lisp_Event *e) | |
515 { | |
1268 | 516 check_event_stream_ok (); |
788 | 517 return event_stream->hash_magic_event_cb (e); |
518 } | |
519 | |
428 | 520 static int |
521 event_stream_add_timeout (EMACS_TIME timeout) | |
522 { | |
1268 | 523 check_event_stream_ok (); |
428 | 524 return event_stream->add_timeout_cb (timeout); |
525 } | |
526 | |
527 static void | |
528 event_stream_remove_timeout (int id) | |
529 { | |
1268 | 530 check_event_stream_ok (); |
428 | 531 event_stream->remove_timeout_cb (id); |
532 } | |
533 | |
534 void | |
535 event_stream_select_console (struct console *con) | |
536 { | |
1268 | 537 check_event_stream_ok (); |
428 | 538 if (!con->input_enabled) |
539 { | |
540 event_stream->select_console_cb (con); | |
541 con->input_enabled = 1; | |
542 } | |
543 } | |
544 | |
545 void | |
546 event_stream_unselect_console (struct console *con) | |
547 { | |
1268 | 548 check_event_stream_ok (); |
428 | 549 if (con->input_enabled) |
550 { | |
551 event_stream->unselect_console_cb (con); | |
552 con->input_enabled = 0; | |
553 } | |
554 } | |
555 | |
556 void | |
853 | 557 event_stream_select_process (Lisp_Process *proc, int doin, int doerr) |
428 | 558 { |
853 | 559 int cur_in, cur_err; |
560 | |
1268 | 561 check_event_stream_ok (); |
853 | 562 |
563 cur_in = get_process_selected_p (proc, 0); | |
564 if (cur_in) | |
565 doin = 0; | |
566 | |
567 if (!process_has_separate_stderr (wrap_process (proc))) | |
428 | 568 { |
853 | 569 doerr = 0; |
570 cur_err = 0; | |
571 } | |
572 else | |
573 { | |
574 cur_err = get_process_selected_p (proc, 1); | |
575 if (cur_err) | |
576 doerr = 0; | |
577 } | |
578 | |
579 if (doin || doerr) | |
580 { | |
581 event_stream->select_process_cb (proc, doin, doerr); | |
582 set_process_selected_p (proc, cur_in || doin, cur_err || doerr); | |
428 | 583 } |
584 } | |
585 | |
586 void | |
853 | 587 event_stream_unselect_process (Lisp_Process *proc, int doin, int doerr) |
428 | 588 { |
853 | 589 int cur_in, cur_err; |
590 | |
1268 | 591 check_event_stream_ok (); |
853 | 592 |
593 cur_in = get_process_selected_p (proc, 0); | |
594 if (!cur_in) | |
595 doin = 0; | |
596 | |
597 if (!process_has_separate_stderr (wrap_process (proc))) | |
428 | 598 { |
853 | 599 doerr = 0; |
600 cur_err = 0; | |
601 } | |
602 else | |
603 { | |
604 cur_err = get_process_selected_p (proc, 1); | |
605 if (!cur_err) | |
606 doerr = 0; | |
607 } | |
608 | |
609 if (doin || doerr) | |
610 { | |
611 event_stream->unselect_process_cb (proc, doin, doerr); | |
612 set_process_selected_p (proc, cur_in && !doin, cur_err && !doerr); | |
428 | 613 } |
614 } | |
615 | |
853 | 616 void |
617 event_stream_create_io_streams (void *inhandle, void *outhandle, | |
618 void *errhandle, Lisp_Object *instream, | |
619 Lisp_Object *outstream, | |
620 Lisp_Object *errstream, | |
621 USID *in_usid, | |
622 USID *err_usid, | |
623 int flags) | |
428 | 624 { |
1268 | 625 check_event_stream_ok (); |
853 | 626 event_stream->create_io_streams_cb |
627 (inhandle, outhandle, errhandle, instream, outstream, errstream, | |
628 in_usid, err_usid, flags); | |
428 | 629 } |
630 | |
853 | 631 void |
632 event_stream_delete_io_streams (Lisp_Object instream, | |
633 Lisp_Object outstream, | |
634 Lisp_Object errstream, | |
635 USID *in_usid, | |
636 USID *err_usid) | |
428 | 637 { |
1268 | 638 check_event_stream_ok (); |
853 | 639 event_stream->delete_io_streams_cb (instream, outstream, errstream, |
640 in_usid, err_usid); | |
428 | 641 } |
642 | |
442 | 643 static int |
644 event_stream_current_event_timestamp (struct console *c) | |
645 { | |
646 if (event_stream && event_stream->current_event_timestamp_cb) | |
647 return event_stream->current_event_timestamp_cb (c); | |
648 else | |
649 return 0; | |
650 } | |
428 | 651 |
652 | |
653 /**********************************************************************/ | |
654 /* Character prompting */ | |
655 /**********************************************************************/ | |
656 | |
657 static void | |
658 echo_key_event (struct command_builder *command_builder, | |
659 Lisp_Object event) | |
660 { | |
661 /* This function can GC */ | |
793 | 662 DECLARE_EISTRING_MALLOC (buf); |
428 | 663 Bytecount buf_index = command_builder->echo_buf_index; |
867 | 664 Ibyte *e; |
428 | 665 Bytecount len; |
666 | |
667 if (buf_index < 0) | |
668 { | |
669 buf_index = 0; /* We're echoing now */ | |
670 clear_echo_area (selected_frame (), Qnil, 0); | |
671 } | |
672 | |
934 | 673 format_event_object (buf, event, 1); |
793 | 674 len = eilen (buf); |
428 | 675 |
676 if (len + buf_index + 4 > command_builder->echo_buf_length) | |
793 | 677 { |
678 eifree (buf); | |
679 return; | |
680 } | |
428 | 681 e = command_builder->echo_buf + buf_index; |
793 | 682 memcpy (e, eidata (buf), len); |
428 | 683 e += len; |
793 | 684 eifree (buf); |
428 | 685 |
686 e[0] = ' '; | |
687 e[1] = '-'; | |
688 e[2] = ' '; | |
689 e[3] = 0; | |
690 | |
691 command_builder->echo_buf_index = buf_index + len + 1; | |
692 } | |
693 | |
694 static void | |
695 regenerate_echo_keys_from_this_command_keys (struct command_builder * | |
696 builder) | |
697 { | |
698 Lisp_Object event; | |
699 | |
700 builder->echo_buf_index = 0; | |
701 | |
702 EVENT_CHAIN_LOOP (event, Vthis_command_keys) | |
703 echo_key_event (builder, event); | |
704 } | |
705 | |
706 static void | |
707 maybe_echo_keys (struct command_builder *command_builder, int no_snooze) | |
708 { | |
709 /* This function can GC */ | |
710 double echo_keystrokes; | |
711 struct frame *f = selected_frame (); | |
853 | 712 int depth = begin_dont_check_for_quit (); |
713 | |
428 | 714 /* Message turns off echoing unless more keystrokes turn it on again. */ |
715 if (echo_area_active (f) && !EQ (Qcommand, echo_area_status (f))) | |
853 | 716 goto done; |
428 | 717 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
718 if (FIXNUMP (Vecho_keystrokes) || FLOATP (Vecho_keystrokes)) |
428 | 719 echo_keystrokes = extract_float (Vecho_keystrokes); |
720 else | |
721 echo_keystrokes = 0; | |
722 | |
723 if (minibuf_level == 0 | |
724 && echo_keystrokes > 0.0 | |
442 | 725 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID) |
726 && !x_kludge_lw_menu_active () | |
727 #endif | |
728 ) | |
428 | 729 { |
730 if (!no_snooze) | |
731 { | |
732 if (NILP (Fsit_for (Vecho_keystrokes, Qnil))) | |
733 /* input came in, so don't echo. */ | |
853 | 734 goto done; |
428 | 735 } |
736 | |
737 echo_area_message (f, command_builder->echo_buf, Qnil, 0, | |
738 /* not echo_buf_index. That doesn't include | |
739 the terminating " - ". */ | |
740 strlen ((char *) command_builder->echo_buf), | |
741 Qcommand); | |
742 } | |
853 | 743 |
744 done: | |
745 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */ | |
746 unbind_to (depth); | |
428 | 747 } |
748 | |
749 static void | |
750 reset_key_echo (struct command_builder *command_builder, | |
751 int remove_echo_area_echo) | |
752 { | |
753 /* This function can GC */ | |
754 struct frame *f = selected_frame (); | |
755 | |
757 | 756 if (command_builder) |
757 command_builder->echo_buf_index = -1; | |
428 | 758 |
759 if (remove_echo_area_echo) | |
760 clear_echo_area (f, Qcommand, 0); | |
761 } | |
762 | |
763 | |
764 /**********************************************************************/ | |
765 /* random junk */ | |
766 /**********************************************************************/ | |
767 | |
768 /* NB: The following auto-save stuff is in keyboard.c in FSFmacs, and | |
769 keystrokes_since_auto_save is equivalent to the difference between | |
770 num_nonmacro_input_chars and last_auto_save. */ | |
771 | |
444 | 772 /* When an auto-save happens, record the number of keystrokes, and |
773 don't do again soon. */ | |
428 | 774 |
775 void | |
776 record_auto_save (void) | |
777 { | |
778 keystrokes_since_auto_save = 0; | |
779 } | |
780 | |
781 /* Make an auto save happen as soon as possible at command level. */ | |
782 | |
783 void | |
784 force_auto_save_soon (void) | |
785 { | |
786 keystrokes_since_auto_save = 1 + max (auto_save_interval, 20); | |
787 } | |
788 | |
789 static void | |
790 maybe_do_auto_save (void) | |
791 { | |
792 /* This function can call lisp */ | |
793 keystrokes_since_auto_save++; | |
794 if (auto_save_interval > 0 && | |
795 keystrokes_since_auto_save > max (auto_save_interval, 20) && | |
1268 | 796 !detect_input_pending (1)) |
428 | 797 { |
798 Fdo_auto_save (Qnil, Qnil); | |
799 record_auto_save (); | |
800 } | |
801 } | |
802 | |
803 static Lisp_Object | |
804 print_help (Lisp_Object object) | |
805 { | |
806 Fprinc (object, Qnil); | |
807 return Qnil; | |
808 } | |
809 | |
810 static void | |
811 execute_help_form (struct command_builder *command_builder, | |
812 Lisp_Object event) | |
813 { | |
814 /* This function can GC */ | |
815 Lisp_Object help = Qnil; | |
816 int speccount = specpdl_depth (); | |
817 Bytecount buf_index = command_builder->echo_buf_index; | |
818 Lisp_Object echo = ((buf_index <= 0) | |
819 ? Qnil | |
820 : make_string (command_builder->echo_buf, | |
821 buf_index)); | |
822 struct gcpro gcpro1, gcpro2; | |
823 GCPRO2 (echo, help); | |
824 | |
4775
1d61580e0cf7
Remove Fsave_window_excursion from window.c, it's overridden by Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4718
diff
changeset
|
825 record_unwind_protect (Feval, |
1d61580e0cf7
Remove Fsave_window_excursion from window.c, it's overridden by Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4718
diff
changeset
|
826 list2 (Qset_window_configuration, |
1d61580e0cf7
Remove Fsave_window_excursion from window.c, it's overridden by Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4718
diff
changeset
|
827 call0 (Qcurrent_window_configuration))); |
428 | 828 reset_key_echo (command_builder, 1); |
829 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4528
diff
changeset
|
830 help = IGNORE_MULTIPLE_VALUES (Feval (Vhelp_form)); |
428 | 831 if (STRINGP (help)) |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
832 internal_with_output_to_temp_buffer (build_ascstring ("*Help*"), |
428 | 833 print_help, help, Qnil); |
834 Fnext_command_event (event, Qnil); | |
835 /* Remove the help from the frame */ | |
771 | 836 unbind_to (speccount); |
428 | 837 /* Hmmmm. Tricky. The unbind restores an old window configuration, |
838 apparently bypassing any setting of windows_structure_changed. | |
839 So we need to set it so that things get redrawn properly. */ | |
840 /* #### This is massive overkill. Look at doing it better once the | |
841 new redisplay is fully in place. */ | |
842 { | |
843 Lisp_Object frmcons, devcons, concons; | |
844 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons) | |
845 { | |
846 struct frame *f = XFRAME (XCAR (frmcons)); | |
847 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f); | |
848 } | |
849 } | |
850 | |
851 redisplay (); | |
1204 | 852 if (event_matches_key_specifier_p (event, make_char (' '))) |
428 | 853 { |
854 /* Discard next key if it is a space */ | |
855 reset_key_echo (command_builder, 1); | |
856 Fnext_command_event (event, Qnil); | |
857 } | |
858 | |
859 command_builder->echo_buf_index = buf_index; | |
860 if (buf_index > 0) | |
861 memcpy (command_builder->echo_buf, | |
862 XSTRING_DATA (echo), buf_index + 1); /* terminating 0 */ | |
863 UNGCPRO; | |
864 } | |
865 | |
866 | |
867 /**********************************************************************/ | |
868 /* timeouts */ | |
869 /**********************************************************************/ | |
870 | |
593 | 871 /* NOTE: "Low-level" or "interval" timeouts are one-shot timeouts that |
872 measure single intervals. "High-level timeouts" or "wakeups" are | |
873 the objects generated by `add-timeout' or `add-async-timout' -- | |
874 they can fire repeatedly (and in fact can have a different initial | |
875 time and resignal time). Given the nature of both setitimer() and | |
876 select() -- i.e. all we get is a single one-shot timer -- we have | |
877 to decompose all high-level timeouts into a series of intervals or | |
878 low-level timeouts. | |
879 | |
880 Low-level timeouts are of two varieties: synchronous and asynchronous. | |
881 The former are handled at the window-system level, the latter in | |
882 signal.c. | |
883 */ | |
884 | |
885 /**** Low-level timeout helper functions. **** | |
428 | 886 |
887 These functions maintain a sorted list of one-shot timeouts (where | |
593 | 888 the timeouts are in absolute time so we never lose any time as a |
889 result of the delay between noting an interval and firing the next | |
890 one). They are intended for use by functions that need to convert | |
891 a list of absolute timeouts into a series of intervals to wait | |
892 for. */ | |
428 | 893 |
894 /* We ensure that 0 is never a valid ID, so that a value of 0 can be | |
895 used to indicate an absence of a timer. */ | |
896 static int low_level_timeout_id_tick; | |
897 | |
898 static struct low_level_timeout_blocktype | |
899 { | |
900 Blocktype_declare (struct low_level_timeout); | |
901 } *the_low_level_timeout_blocktype; | |
902 | |
903 /* Add a one-shot timeout at time TIME to TIMEOUT_LIST. Return | |
904 a unique ID identifying the timeout. */ | |
905 | |
906 int | |
907 add_low_level_timeout (struct low_level_timeout **timeout_list, | |
908 EMACS_TIME thyme) | |
909 { | |
910 struct low_level_timeout *tm; | |
911 struct low_level_timeout *t, **tt; | |
912 | |
913 /* Allocate a new time struct. */ | |
914 | |
915 tm = Blocktype_alloc (the_low_level_timeout_blocktype); | |
916 tm->next = NULL; | |
593 | 917 /* Don't just use ++low_level_timeout_id_tick, for the (admittedly |
918 rare) case in which numbers wrap around. */ | |
428 | 919 if (low_level_timeout_id_tick == 0) |
920 low_level_timeout_id_tick++; | |
921 tm->id = low_level_timeout_id_tick++; | |
922 tm->time = thyme; | |
923 | |
924 /* Add it to the queue. */ | |
925 | |
926 tt = timeout_list; | |
927 t = *tt; | |
928 while (t && EMACS_TIME_EQUAL_OR_GREATER (tm->time, t->time)) | |
929 { | |
930 tt = &t->next; | |
931 t = *tt; | |
932 } | |
933 tm->next = t; | |
934 *tt = tm; | |
935 | |
936 return tm->id; | |
937 } | |
938 | |
939 /* Remove the low-level timeout identified by ID from TIMEOUT_LIST. | |
940 If the timeout is not there, do nothing. */ | |
941 | |
942 void | |
943 remove_low_level_timeout (struct low_level_timeout **timeout_list, int id) | |
944 { | |
945 struct low_level_timeout *t, *prev; | |
946 | |
947 /* find it */ | |
948 | |
949 for (t = *timeout_list, prev = NULL; t && t->id != id; t = t->next) | |
950 prev = t; | |
951 | |
952 if (!t) | |
953 return; /* couldn't find it */ | |
954 | |
955 if (!prev) | |
956 *timeout_list = t->next; | |
957 else prev->next = t->next; | |
958 | |
959 Blocktype_free (the_low_level_timeout_blocktype, t); | |
960 } | |
961 | |
962 /* If there are timeouts on TIMEOUT_LIST, store the relative time | |
963 interval to the first timeout on the list into INTERVAL and | |
964 return 1. Otherwise, return 0. */ | |
965 | |
966 int | |
967 get_low_level_timeout_interval (struct low_level_timeout *timeout_list, | |
968 EMACS_TIME *interval) | |
969 { | |
970 if (!timeout_list) /* no timer events; block indefinitely */ | |
971 return 0; | |
972 else | |
973 { | |
974 EMACS_TIME current_time; | |
975 | |
976 /* The time to block is the difference between the first | |
977 (earliest) timer on the queue and the current time. | |
978 If that is negative, then the timer will fire immediately | |
979 but we still have to call select(), with a zero-valued | |
980 timeout: user events must have precedence over timer events. */ | |
981 EMACS_GET_TIME (current_time); | |
982 if (EMACS_TIME_GREATER (timeout_list->time, current_time)) | |
983 EMACS_SUB_TIME (*interval, timeout_list->time, | |
984 current_time); | |
985 else | |
986 EMACS_SET_SECS_USECS (*interval, 0, 0); | |
987 return 1; | |
988 } | |
989 } | |
990 | |
991 /* Pop the first (i.e. soonest) timeout off of TIMEOUT_LIST and return | |
992 its ID. Also, if TIME_OUT is not 0, store the absolute time of the | |
993 timeout into TIME_OUT. */ | |
994 | |
995 int | |
996 pop_low_level_timeout (struct low_level_timeout **timeout_list, | |
997 EMACS_TIME *time_out) | |
998 { | |
999 struct low_level_timeout *tm = *timeout_list; | |
1000 int id; | |
1001 | |
1002 assert (tm); | |
1003 id = tm->id; | |
1004 if (time_out) | |
1005 *time_out = tm->time; | |
1006 *timeout_list = tm->next; | |
1007 Blocktype_free (the_low_level_timeout_blocktype, tm); | |
1008 return id; | |
1009 } | |
1010 | |
1011 | |
593 | 1012 /**** High-level timeout functions. **** */ |
1013 | |
1014 /* We ensure that 0 is never a valid ID, so that a value of 0 can be | |
1015 used to indicate an absence of a timer. */ | |
428 | 1016 static int timeout_id_tick; |
1017 | |
1018 static Lisp_Object pending_timeout_list, pending_async_timeout_list; | |
1019 | |
1020 static Lisp_Object | |
1021 mark_timeout (Lisp_Object obj) | |
1022 { | |
440 | 1023 Lisp_Timeout *tm = XTIMEOUT (obj); |
428 | 1024 mark_object (tm->function); |
1025 return tm->object; | |
1026 } | |
1027 | |
1204 | 1028 static const struct memory_description timeout_description[] = { |
440 | 1029 { XD_LISP_OBJECT, offsetof (Lisp_Timeout, function) }, |
1030 { XD_LISP_OBJECT, offsetof (Lisp_Timeout, object) }, | |
428 | 1031 { XD_END } |
1032 }; | |
1033 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
1034 DEFINE_DUMPABLE_INTERNAL_LISP_OBJECT ("timeout", timeout, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
1035 mark_timeout, timeout_description, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
1036 Lisp_Timeout); |
428 | 1037 |
1038 /* Generate a timeout and return its ID. */ | |
1039 | |
1040 int | |
1041 event_stream_generate_wakeup (unsigned int milliseconds, | |
1042 unsigned int vanilliseconds, | |
1043 Lisp_Object function, Lisp_Object object, | |
1044 int async_p) | |
1045 { | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
1046 Lisp_Object op = ALLOC_NORMAL_LISP_OBJECT (timeout); |
440 | 1047 Lisp_Timeout *timeout = XTIMEOUT (op); |
428 | 1048 EMACS_TIME current_time; |
1049 EMACS_TIME interval; | |
1050 | |
593 | 1051 /* Don't just use ++timeout_id_tick, for the (admittedly rare) case |
1052 in which numbers wrap around. */ | |
1053 if (timeout_id_tick == 0) | |
1054 timeout_id_tick++; | |
428 | 1055 timeout->id = timeout_id_tick++; |
1056 timeout->resignal_msecs = vanilliseconds; | |
1057 timeout->function = function; | |
1058 timeout->object = object; | |
1059 | |
1060 EMACS_GET_TIME (current_time); | |
1061 EMACS_SET_SECS_USECS (interval, milliseconds / 1000, | |
1062 1000 * (milliseconds % 1000)); | |
1063 EMACS_ADD_TIME (timeout->next_signal_time, current_time, interval); | |
1064 | |
1065 if (async_p) | |
1066 { | |
1067 timeout->interval_id = | |
593 | 1068 signal_add_async_interval_timeout (timeout->next_signal_time); |
1069 pending_async_timeout_list = | |
1070 noseeum_cons (op, pending_async_timeout_list); | |
428 | 1071 } |
1072 else | |
1073 { | |
1074 timeout->interval_id = | |
1075 event_stream_add_timeout (timeout->next_signal_time); | |
1076 pending_timeout_list = noseeum_cons (op, pending_timeout_list); | |
1077 } | |
1078 return timeout->id; | |
1079 } | |
1080 | |
1081 /* Given the INTERVAL-ID of a timeout just signalled, resignal the timeout | |
1082 as necessary and return the timeout's ID and function and object slots. | |
1083 | |
1084 This should be called as a result of receiving notice that a timeout | |
1085 has fired. INTERVAL-ID is *not* the timeout's ID, but is the ID that | |
1086 identifies this particular firing of the timeout. INTERVAL-ID's and | |
1087 timeout ID's are in separate number spaces and bear no relation to | |
1088 each other. The INTERVAL-ID is all that the event callback routines | |
1089 work with: they work only with one-shot intervals, not with timeouts | |
1090 that may fire repeatedly. | |
1091 | |
1092 NOTE: The returned FUNCTION and OBJECT are *not* GC-protected at all. | |
1093 */ | |
1094 | |
593 | 1095 int |
428 | 1096 event_stream_resignal_wakeup (int interval_id, int async_p, |
1097 Lisp_Object *function, Lisp_Object *object) | |
1098 { | |
1099 Lisp_Object op = Qnil, rest; | |
440 | 1100 Lisp_Timeout *timeout; |
428 | 1101 Lisp_Object *timeout_list; |
1102 struct gcpro gcpro1; | |
1103 int id; | |
1104 | |
1105 GCPRO1 (op); /* just in case ... because it's removed from the list | |
1106 for awhile. */ | |
1107 | |
1108 timeout_list = async_p ? &pending_async_timeout_list : &pending_timeout_list; | |
1109 | |
1110 /* Find the timeout on the list of pending ones. */ | |
1111 LIST_LOOP (rest, *timeout_list) | |
1112 { | |
1113 timeout = XTIMEOUT (XCAR (rest)); | |
1114 if (timeout->interval_id == interval_id) | |
1115 break; | |
1116 } | |
1117 | |
1118 assert (!NILP (rest)); | |
1119 op = XCAR (rest); | |
1120 timeout = XTIMEOUT (op); | |
1121 /* We make sure to snarf the data out of the timeout object before | |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
1122 we free it with free_normal_lisp_object(). */ |
428 | 1123 id = timeout->id; |
1124 *function = timeout->function; | |
1125 *object = timeout->object; | |
1126 | |
1127 /* Remove this one from the list of pending timeouts */ | |
1128 *timeout_list = delq_no_quit_and_free_cons (op, *timeout_list); | |
1129 | |
1130 /* If this timeout wants to be resignalled, do it now. */ | |
1131 if (timeout->resignal_msecs) | |
1132 { | |
1133 EMACS_TIME current_time; | |
1134 EMACS_TIME interval; | |
1135 | |
1136 /* Determine the time that the next resignalling should occur. | |
1137 We do that by adding the interval time to the last signalled | |
1138 time until we get a time that's current. | |
1139 | |
1140 (This way, it doesn't matter if the timeout was signalled | |
1141 exactly when we asked for it, or at some time later.) | |
1142 */ | |
1143 EMACS_GET_TIME (current_time); | |
1144 EMACS_SET_SECS_USECS (interval, timeout->resignal_msecs / 1000, | |
1145 1000 * (timeout->resignal_msecs % 1000)); | |
1146 do | |
1147 { | |
1148 EMACS_ADD_TIME (timeout->next_signal_time, timeout->next_signal_time, | |
1149 interval); | |
1150 } while (EMACS_TIME_GREATER (current_time, timeout->next_signal_time)); | |
1151 | |
1152 if (async_p) | |
1153 timeout->interval_id = | |
593 | 1154 signal_add_async_interval_timeout (timeout->next_signal_time); |
428 | 1155 else |
1156 timeout->interval_id = | |
1157 event_stream_add_timeout (timeout->next_signal_time); | |
1158 /* Add back onto the list. Note that the effect of this | |
1159 is to move frequently-hit timeouts to the front of the | |
1160 list, which is a good thing. */ | |
1161 *timeout_list = noseeum_cons (op, *timeout_list); | |
1162 } | |
1163 else | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
1164 free_normal_lisp_object (op); |
428 | 1165 |
1166 UNGCPRO; | |
1167 return id; | |
1168 } | |
1169 | |
1170 void | |
1171 event_stream_disable_wakeup (int id, int async_p) | |
1172 { | |
440 | 1173 Lisp_Timeout *timeout = 0; |
428 | 1174 Lisp_Object rest; |
1175 Lisp_Object *timeout_list; | |
1176 | |
1177 if (async_p) | |
1178 timeout_list = &pending_async_timeout_list; | |
1179 else | |
1180 timeout_list = &pending_timeout_list; | |
1181 | |
1182 /* Find the timeout on the list of pending ones, if it's still there. */ | |
1183 LIST_LOOP (rest, *timeout_list) | |
1184 { | |
1185 timeout = XTIMEOUT (XCAR (rest)); | |
1186 if (timeout->id == id) | |
1187 break; | |
1188 } | |
1189 | |
1190 /* If we found it, remove it from the list and disable the pending | |
1191 one-shot. */ | |
1192 if (!NILP (rest)) | |
1193 { | |
1194 Lisp_Object op = XCAR (rest); | |
1195 *timeout_list = | |
1196 delq_no_quit_and_free_cons (op, *timeout_list); | |
1197 if (async_p) | |
593 | 1198 signal_remove_async_interval_timeout (timeout->interval_id); |
428 | 1199 else |
1200 event_stream_remove_timeout (timeout->interval_id); | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
1201 free_normal_lisp_object (op); |
428 | 1202 } |
1203 } | |
1204 | |
1205 static int | |
1206 event_stream_wakeup_pending_p (int id, int async_p) | |
1207 { | |
440 | 1208 Lisp_Timeout *timeout; |
428 | 1209 Lisp_Object rest; |
1210 Lisp_Object timeout_list; | |
1211 int found = 0; | |
1212 | |
1213 | |
1214 if (async_p) | |
1215 timeout_list = pending_async_timeout_list; | |
1216 else | |
1217 timeout_list = pending_timeout_list; | |
1218 | |
1219 /* Find the element on the list of pending ones, if it's still there. */ | |
1220 LIST_LOOP (rest, timeout_list) | |
1221 { | |
1222 timeout = XTIMEOUT (XCAR (rest)); | |
1223 if (timeout->id == id) | |
1224 { | |
1225 found = 1; | |
1226 break; | |
1227 } | |
1228 } | |
1229 | |
1230 return found; | |
1231 } | |
1232 | |
1233 | |
1234 /**** Lisp-level timeout functions. ****/ | |
1235 | |
1236 static unsigned long | |
1237 lisp_number_to_milliseconds (Lisp_Object secs, int allow_0) | |
1238 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1239 Lisp_Object args[] = { allow_0 ? Qzero : make_fixnum (1), |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1240 secs, |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1241 /* (((unsigned int) 0xFFFFFFFF) / 1000) - 1 */ |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1242 make_fixnum (4294967 - 1) }; |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1243 |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1244 if (!allow_0 && FLOATP (secs) && XFLOAT_DATA (secs) > 0) |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1245 { |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1246 args[0] = secs; |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1247 } |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1248 |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1249 if (NILP (Fleq (countof (args), args))) |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1250 { |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1251 args_out_of_range_3 (secs, args[0], args[2]); |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1252 } |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1253 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1254 args[0] = make_fixnum (1000); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1255 args[0] = Ftimes (2, args); |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1256 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1257 if (FIXNUMP (args[0])) |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1258 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1259 return XFIXNUM (args[0]); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1260 } |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1261 |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
1262 return (unsigned long) extract_float (args[0]); |
428 | 1263 } |
1264 | |
1265 DEFUN ("add-timeout", Fadd_timeout, 3, 4, 0, /* | |
1266 Add a timeout, to be signaled after the timeout period has elapsed. | |
1267 SECS is a number of seconds, expressed as an integer or a float. | |
1268 FUNCTION will be called after that many seconds have elapsed, with one | |
1269 argument, the given OBJECT. If the optional RESIGNAL argument is provided, | |
1270 then after this timeout expires, `add-timeout' will automatically be called | |
1271 again with RESIGNAL as the first argument. | |
1272 | |
1273 This function returns an object which is the id number of this particular | |
1274 timeout. You can pass that object to `disable-timeout' to turn off the | |
1275 timeout before it has been signalled. | |
1276 | |
1277 NOTE: Id numbers as returned by this function are in a distinct namespace | |
1278 from those returned by `add-async-timeout'. This means that the same id | |
1279 number could refer to a pending synchronous timeout and a different pending | |
1280 asynchronous timeout, and that you cannot pass an id from `add-timeout' | |
1281 to `disable-async-timeout', or vice-versa. | |
1282 | |
1283 The number of seconds may be expressed as a floating-point number, in which | |
1284 case some fractional part of a second will be used. Caveat: the usable | |
1285 timeout granularity will vary from system to system. | |
1286 | |
1287 Adding a timeout causes a timeout event to be returned by `next-event', and | |
1288 the function will be invoked by `dispatch-event,' so if emacs is in a tight | |
1289 loop, the function will not be invoked until the next call to sit-for or | |
1290 until the return to top-level (the same is true of process filters). | |
1291 | |
1292 If you need to have a timeout executed even when XEmacs is in the midst of | |
1293 running Lisp code, use `add-async-timeout'. | |
1294 | |
1295 WARNING: if you are thinking of calling add-timeout from inside of a | |
1296 callback function as a way of resignalling a timeout, think again. There | |
1297 is a race condition. That's why the RESIGNAL argument exists. | |
1298 */ | |
1299 (secs, function, object, resignal)) | |
1300 { | |
1301 unsigned long msecs = lisp_number_to_milliseconds (secs, 0); | |
1302 unsigned long msecs2 = (NILP (resignal) ? 0 : | |
1303 lisp_number_to_milliseconds (resignal, 0)); | |
1304 int id; | |
1305 Lisp_Object lid; | |
1306 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 0); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1307 lid = make_fixnum (id); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1308 assert (id == XFIXNUM (lid)); |
428 | 1309 return lid; |
1310 } | |
1311 | |
1312 DEFUN ("disable-timeout", Fdisable_timeout, 1, 1, 0, /* | |
1313 Disable a timeout from signalling any more. | |
1314 ID should be a timeout id number as returned by `add-timeout'. If ID | |
1315 corresponds to a one-shot timeout that has already signalled, nothing | |
1316 will happen. | |
1317 | |
1318 It will not work to call this function on an id number returned by | |
1319 `add-async-timeout'. Use `disable-async-timeout' for that. | |
1320 */ | |
1321 (id)) | |
1322 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1323 CHECK_FIXNUM (id); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1324 event_stream_disable_wakeup (XFIXNUM (id), 0); |
428 | 1325 return Qnil; |
1326 } | |
1327 | |
1328 DEFUN ("add-async-timeout", Fadd_async_timeout, 3, 4, 0, /* | |
1329 Add an asynchronous timeout, to be signaled after an interval has elapsed. | |
1330 SECS is a number of seconds, expressed as an integer or a float. | |
1331 FUNCTION will be called after that many seconds have elapsed, with one | |
1332 argument, the given OBJECT. If the optional RESIGNAL argument is provided, | |
1333 then after this timeout expires, `add-async-timeout' will automatically be | |
1334 called again with RESIGNAL as the first argument. | |
1335 | |
1336 This function returns an object which is the id number of this particular | |
1337 timeout. You can pass that object to `disable-async-timeout' to turn off | |
1338 the timeout before it has been signalled. | |
1339 | |
1340 NOTE: Id numbers as returned by this function are in a distinct namespace | |
1341 from those returned by `add-timeout'. This means that the same id number | |
1342 could refer to a pending synchronous timeout and a different pending | |
1343 asynchronous timeout, and that you cannot pass an id from | |
1344 `add-async-timeout' to `disable-timeout', or vice-versa. | |
1345 | |
1346 The number of seconds may be expressed as a floating-point number, in which | |
1347 case some fractional part of a second will be used. Caveat: the usable | |
1348 timeout granularity will vary from system to system. | |
1349 | |
1350 Adding an asynchronous timeout causes the function to be invoked as soon | |
1351 as the timeout occurs, even if XEmacs is in the midst of executing some | |
1352 other code. (This is unlike the synchronous timeouts added with | |
1353 `add-timeout', where the timeout will only be signalled when XEmacs is | |
1354 waiting for events, i.e. the next return to top-level or invocation of | |
1355 `sit-for' or related functions.) This means that the function that is | |
1356 called *must* not signal an error or change any global state (e.g. switch | |
1357 buffers or windows) except when locking code is in place to make sure | |
1358 that race conditions don't occur in the interaction between the | |
1359 asynchronous timeout function and other code. | |
1360 | |
1361 Under most circumstances, you should use `add-timeout' instead, as it is | |
1362 much safer. Asynchronous timeouts should only be used when such behavior | |
1363 is really necessary. | |
1364 | |
1365 Asynchronous timeouts are blocked and will not occur when `inhibit-quit' | |
1366 is non-nil. As soon as `inhibit-quit' becomes nil again, any pending | |
1367 asynchronous timeouts will get called immediately. (Multiple occurrences | |
1368 of the same asynchronous timeout are not queued, however.) While the | |
1369 callback function of an asynchronous timeout is invoked, `inhibit-quit' | |
1370 is automatically bound to non-nil, and thus other asynchronous timeouts | |
1371 will be blocked unless the callback function explicitly sets `inhibit-quit' | |
1372 to nil. | |
1373 | |
1374 WARNING: if you are thinking of calling `add-async-timeout' from inside of a | |
1375 callback function as a way of resignalling a timeout, think again. There | |
1376 is a race condition. That's why the RESIGNAL argument exists. | |
1377 */ | |
1378 (secs, function, object, resignal)) | |
1379 { | |
1380 unsigned long msecs = lisp_number_to_milliseconds (secs, 0); | |
1381 unsigned long msecs2 = (NILP (resignal) ? 0 : | |
1382 lisp_number_to_milliseconds (resignal, 0)); | |
1383 int id; | |
1384 Lisp_Object lid; | |
1385 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 1); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1386 lid = make_fixnum (id); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1387 assert (id == XFIXNUM (lid)); |
428 | 1388 return lid; |
1389 } | |
1390 | |
1391 DEFUN ("disable-async-timeout", Fdisable_async_timeout, 1, 1, 0, /* | |
1392 Disable an asynchronous timeout from signalling any more. | |
1393 ID should be a timeout id number as returned by `add-async-timeout'. If ID | |
1394 corresponds to a one-shot timeout that has already signalled, nothing | |
1395 will happen. | |
1396 | |
1397 It will not work to call this function on an id number returned by | |
1398 `add-timeout'. Use `disable-timeout' for that. | |
1399 */ | |
1400 (id)) | |
1401 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1402 CHECK_FIXNUM (id); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1403 event_stream_disable_wakeup (XFIXNUM (id), 1); |
428 | 1404 return Qnil; |
1405 } | |
1406 | |
1407 | |
1408 /**********************************************************************/ | |
1409 /* enqueuing and dequeuing events */ | |
1410 /**********************************************************************/ | |
1411 | |
1412 /* Add an event to the back of the command-event queue: it will be the next | |
1413 event read after all pending events. This only works on keyboard, | |
1414 mouse-click, misc-user, and eval events. | |
1415 */ | |
1416 static void | |
1417 enqueue_command_event (Lisp_Object event) | |
1418 { | |
1419 enqueue_event (event, &command_event_queue, &command_event_queue_tail); | |
1420 } | |
1421 | |
1422 static Lisp_Object | |
1423 dequeue_command_event (void) | |
1424 { | |
1425 return dequeue_event (&command_event_queue, &command_event_queue_tail); | |
1426 } | |
1427 | |
1204 | 1428 void |
1429 enqueue_dispatch_event (Lisp_Object event) | |
1430 { | |
1431 enqueue_event (event, &dispatch_event_queue, &dispatch_event_queue_tail); | |
1432 } | |
1433 | |
1434 Lisp_Object | |
1435 dequeue_dispatch_event (void) | |
1436 { | |
1437 return dequeue_event (&dispatch_event_queue, &dispatch_event_queue_tail); | |
1438 } | |
1439 | |
428 | 1440 static void |
1441 enqueue_command_event_1 (Lisp_Object event_to_copy) | |
1442 { | |
853 | 1443 enqueue_command_event (Fcopy_event (event_to_copy, Qnil)); |
428 | 1444 } |
1445 | |
1446 void | |
1447 enqueue_magic_eval_event (void (*fun) (Lisp_Object), Lisp_Object object) | |
1448 { | |
1449 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
934 | 1450 XSET_EVENT_TYPE (event, magic_eval_event); |
1451 /* channel for magic_eval events is nil */ | |
1204 | 1452 XSET_EVENT_MAGIC_EVAL_INTERNAL_FUNCTION (event, fun); |
1453 XSET_EVENT_MAGIC_EVAL_OBJECT (event, object); | |
428 | 1454 enqueue_command_event (event); |
1455 } | |
1456 | |
1457 DEFUN ("enqueue-eval-event", Fenqueue_eval_event, 2, 2, 0, /* | |
1458 Add an eval event to the back of the eval event queue. | |
1459 When this event is dispatched, FUNCTION (which should be a function | |
1460 of one argument) will be called with OBJECT as its argument. | |
1461 See `next-event' for a description of event types and how events | |
1462 are received. | |
1463 */ | |
1464 (function, object)) | |
1465 { | |
1466 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
1467 | |
934 | 1468 XSET_EVENT_TYPE (event, eval_event); |
1469 /* channel for eval events is nil */ | |
1204 | 1470 XSET_EVENT_EVAL_FUNCTION (event, function); |
1471 XSET_EVENT_EVAL_OBJECT (event, object); | |
428 | 1472 enqueue_command_event (event); |
1473 | |
1474 return event; | |
1475 } | |
1476 | |
1477 Lisp_Object | |
1478 enqueue_misc_user_event (Lisp_Object channel, Lisp_Object function, | |
1479 Lisp_Object object) | |
1480 { | |
1481 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
934 | 1482 XSET_EVENT_TYPE (event, misc_user_event); |
1483 XSET_EVENT_CHANNEL (event, channel); | |
1204 | 1484 XSET_EVENT_MISC_USER_FUNCTION (event, function); |
1485 XSET_EVENT_MISC_USER_OBJECT (event, object); | |
1486 XSET_EVENT_MISC_USER_BUTTON (event, 0); | |
1487 XSET_EVENT_MISC_USER_MODIFIERS (event, 0); | |
1488 XSET_EVENT_MISC_USER_X (event, -1); | |
1489 XSET_EVENT_MISC_USER_Y (event, -1); | |
428 | 1490 enqueue_command_event (event); |
1491 | |
1492 return event; | |
1493 } | |
1494 | |
1495 Lisp_Object | |
1496 enqueue_misc_user_event_pos (Lisp_Object channel, Lisp_Object function, | |
1497 Lisp_Object object, | |
1498 int button, int modifiers, int x, int y) | |
1499 { | |
1500 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
1501 | |
934 | 1502 XSET_EVENT_TYPE (event, misc_user_event); |
1503 XSET_EVENT_CHANNEL (event, channel); | |
1204 | 1504 XSET_EVENT_MISC_USER_FUNCTION (event, function); |
1505 XSET_EVENT_MISC_USER_OBJECT (event, object); | |
1506 XSET_EVENT_MISC_USER_BUTTON (event, button); | |
1507 XSET_EVENT_MISC_USER_MODIFIERS (event, modifiers); | |
1508 XSET_EVENT_MISC_USER_X (event, x); | |
1509 XSET_EVENT_MISC_USER_Y (event, y); | |
428 | 1510 enqueue_command_event (event); |
1511 | |
1512 return event; | |
1513 } | |
1514 | |
1515 | |
1516 /**********************************************************************/ | |
1517 /* focus-event handling */ | |
1518 /**********************************************************************/ | |
1519 | |
1520 /* | |
1521 | |
2367 | 1522 See also |
1523 | |
1524 (Info-goto-node "(internals)Focus Handling") | |
428 | 1525 */ |
1526 | |
2367 | 1527 |
428 | 1528 static void |
1529 run_select_frame_hook (void) | |
1530 { | |
1531 run_hook (Qselect_frame_hook); | |
1532 } | |
1533 | |
1534 static void | |
1535 run_deselect_frame_hook (void) | |
1536 { | |
1537 run_hook (Qdeselect_frame_hook); | |
1538 } | |
1539 | |
1540 /* When select-frame is called and focus_follows_mouse is false, we want | |
1541 to tell the window system that the focus should be changed to point to | |
1542 the new frame. However, | |
1543 sometimes Lisp functions will temporarily change the selected frame | |
1544 (e.g. to call a function that operates on the selected frame), | |
1545 and it's annoying if this focus-change happens exactly when | |
1546 select-frame is called, because then you get some flickering of the | |
1547 window-manager border and perhaps other undesirable results. We | |
1548 really only want to change the focus when we're about to retrieve | |
1549 an event from the user. To do this, we keep track of the frame | |
1550 where the window-manager focus lies on, and just before waiting | |
1551 for user events, check the currently selected frame and change | |
1552 the focus as necessary. | |
1553 | |
1554 On the other hand, if focus_follows_mouse is true, we need to switch the | |
1555 selected frame back to the frame with window manager focus just before we | |
1556 execute the next command in Fcommand_loop_1, just as the selected buffer is | |
1557 reverted after a set-buffer. | |
1558 | |
1559 Both cases are handled by this function. It must be called as appropriate | |
1560 from these two places, depending on the value of focus_follows_mouse. */ | |
1561 | |
1562 void | |
1563 investigate_frame_change (void) | |
1564 { | |
1565 Lisp_Object devcons, concons; | |
1566 | |
1567 /* if the selected frame was changed, change the window-system | |
1568 focus to the new frame. We don't do it when select-frame was | |
1569 called, to avoid flickering and other unwanted side effects when | |
1570 the frame is just changed temporarily. */ | |
1571 DEVICE_LOOP_NO_BREAK (devcons, concons) | |
1572 { | |
1573 struct device *d = XDEVICE (XCAR (devcons)); | |
1574 Lisp_Object sel_frame = DEVICE_SELECTED_FRAME (d); | |
1575 | |
1576 /* You'd think that maybe we should use FRAME_WITH_FOCUS_REAL, | |
1577 but that can cause us to end up in an infinite loop focusing | |
1578 between two frames. It seems that since the call to `select-frame' | |
1579 in emacs_handle_focus_change_final() is based on the _FOR_HOOKS | |
1580 value, we need to do so too. */ | |
1581 if (!NILP (sel_frame) && | |
1582 !EQ (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d), sel_frame) && | |
1583 !NILP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)) && | |
1584 !EQ (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d), sel_frame)) | |
1585 { | |
1586 /* At this point, we know that the frame has been changed. Now, if | |
1587 * focus_follows_mouse is not set, we finish off the frame change, | |
1588 * so that user events will now come from the new frame. Otherwise, | |
1589 * if focus_follows_mouse is set, no gratuitous frame changing | |
1590 * should take place. Set the focus back to the frame which was | |
1591 * originally selected for user input. | |
1592 */ | |
1593 if (!focus_follows_mouse) | |
1594 { | |
1595 /* prevent us from issuing the same request more than once */ | |
1596 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = sel_frame; | |
1597 MAYBE_DEVMETH (d, focus_on_frame, (XFRAME (sel_frame))); | |
1598 } | |
1599 else | |
1600 { | |
1601 Lisp_Object old_frame = Qnil; | |
1602 | |
1603 /* #### Do we really want to check OUGHT ?? | |
1604 * It seems to make sense, though I have never seen us | |
1605 * get here and have it be non-nil. | |
1606 */ | |
1607 if (FRAMEP (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d))) | |
1608 old_frame = DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d); | |
1609 else if (FRAMEP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d))) | |
1610 old_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d); | |
1611 | |
1612 /* #### Can old_frame ever be NIL? play it safe.. */ | |
1613 if (!NILP (old_frame)) | |
1614 { | |
1615 /* Fselect_frame is not really the right thing: it frobs the | |
1616 * buffer stack. But there's no easy way to do the right | |
1617 * thing, and this code already had this problem anyway. | |
1618 */ | |
1619 Fselect_frame (old_frame); | |
1620 } | |
1621 } | |
1622 } | |
1623 } | |
1624 } | |
1625 | |
1626 static Lisp_Object | |
1627 cleanup_after_missed_defocusing (Lisp_Object frame) | |
1628 { | |
1629 if (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame))) | |
1630 Fselect_frame (frame); | |
1631 return Qnil; | |
1632 } | |
1633 | |
1634 void | |
1635 emacs_handle_focus_change_preliminary (Lisp_Object frame_inp_and_dev) | |
1636 { | |
1637 Lisp_Object frame = Fcar (frame_inp_and_dev); | |
1638 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev)); | |
1639 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev))); | |
1640 struct device *d; | |
1641 | |
1642 if (!DEVICE_LIVE_P (XDEVICE (device))) | |
1643 return; | |
1644 else | |
1645 d = XDEVICE (device); | |
1646 | |
1647 /* Any received focus-change notifications render invalid any | |
1648 pending focus-change requests. */ | |
1649 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = Qnil; | |
1650 if (in_p) | |
1651 { | |
1652 Lisp_Object focus_frame; | |
1653 | |
1654 if (!FRAME_LIVE_P (XFRAME (frame))) | |
1655 return; | |
1656 else | |
1657 focus_frame = DEVICE_FRAME_WITH_FOCUS_REAL (d); | |
1658 | |
1659 /* Mark the minibuffer as changed to make sure it gets updated | |
1660 properly if the echo area is active. */ | |
1661 { | |
1662 struct window *w = XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))); | |
1663 MARK_WINDOWS_CHANGED (w); | |
1664 } | |
1665 | |
452 | 1666 if (FRAMEP (focus_frame) && FRAME_LIVE_P (XFRAME (focus_frame)) |
1667 && !EQ (frame, focus_frame)) | |
428 | 1668 { |
1669 /* Oops, we missed a focus-out event. */ | |
1670 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil; | |
1671 redisplay_redraw_cursor (XFRAME (focus_frame), 1); | |
1672 } | |
1673 DEVICE_FRAME_WITH_FOCUS_REAL (d) = frame; | |
1674 if (!EQ (frame, focus_frame)) | |
1675 { | |
1676 redisplay_redraw_cursor (XFRAME (frame), 1); | |
1677 } | |
1678 } | |
1679 else | |
1680 { | |
1681 /* We ignore the frame reported in the event. If it's different | |
1682 from where we think the focus was, oh well -- we messed up. | |
1683 Nonetheless, we pretend we were right, for sensible behavior. */ | |
1684 frame = DEVICE_FRAME_WITH_FOCUS_REAL (d); | |
1685 if (!NILP (frame)) | |
1686 { | |
1687 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil; | |
1688 | |
1689 if (FRAME_LIVE_P (XFRAME (frame))) | |
1690 redisplay_redraw_cursor (XFRAME (frame), 1); | |
1691 } | |
1692 } | |
1693 } | |
1694 | |
1695 /* Called from the window-system-specific code when we receive a | |
1696 notification that the focus lies on a particular frame. | |
1697 Argument is a cons: (frame . (device . in-p)) where in-p is non-nil | |
1698 for focus-in. | |
1699 */ | |
1700 void | |
1701 emacs_handle_focus_change_final (Lisp_Object frame_inp_and_dev) | |
1702 { | |
1703 Lisp_Object frame = Fcar (frame_inp_and_dev); | |
1704 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev)); | |
1705 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev))); | |
1706 struct device *d; | |
1707 int count; | |
1708 | |
1709 if (!DEVICE_LIVE_P (XDEVICE (device))) | |
1710 return; | |
1711 else | |
1712 d = XDEVICE (device); | |
1713 | |
1714 if (in_p) | |
1715 { | |
1716 Lisp_Object focus_frame; | |
1717 | |
1718 if (!FRAME_LIVE_P (XFRAME (frame))) | |
1719 return; | |
1720 else | |
1721 focus_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d); | |
1722 | |
1723 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = frame; | |
1724 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame)) | |
1725 { | |
1726 /* Oops, we missed a focus-out event. */ | |
1727 Fselect_frame (focus_frame); | |
1728 /* Do an unwind-protect in case an error occurs in | |
1729 the deselect-frame-hook */ | |
1730 count = specpdl_depth (); | |
1731 record_unwind_protect (cleanup_after_missed_defocusing, frame); | |
1732 run_deselect_frame_hook (); | |
771 | 1733 unbind_to (count); |
428 | 1734 /* the cleanup method changed the focus frame to nil, so |
1735 we need to reflect this */ | |
1736 focus_frame = Qnil; | |
1737 } | |
1738 else | |
1739 Fselect_frame (frame); | |
1740 if (!EQ (frame, focus_frame)) | |
1741 run_select_frame_hook (); | |
1742 } | |
1743 else | |
1744 { | |
1745 /* We ignore the frame reported in the event. If it's different | |
1746 from where we think the focus was, oh well -- we messed up. | |
1747 Nonetheless, we pretend we were right, for sensible behavior. */ | |
1748 frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d); | |
1749 if (!NILP (frame)) | |
1750 { | |
1751 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = Qnil; | |
1752 run_deselect_frame_hook (); | |
1753 } | |
1754 } | |
1755 } | |
1756 | |
1757 | |
1758 /**********************************************************************/ | |
1268 | 1759 /* input pending/quit checking */ |
1760 /**********************************************************************/ | |
1761 | |
1762 /* If HOW_MANY is 0, return true if there are any user or non-user events | |
1763 pending. If HOW_MANY is > 0, return true if there are that many *user* | |
1764 events pending, irrespective of non-user events. */ | |
1765 | |
1766 static int | |
1767 event_stream_event_pending_p (int how_many) | |
1768 { | |
1769 /* #### Hmmm ... There may be some duplication in "drain queue" and | |
1770 "event pending". Couldn't we just drain the queue and see what's in | |
1771 it, and not maybe need a separate event method for this? Would this | |
1772 work when HOW_MANY is 0? Maybe this would be slow? */ | |
1773 return event_stream && event_stream->event_pending_p (how_many); | |
1774 } | |
1775 | |
1776 static void | |
1777 event_stream_force_event_pending (struct frame *f) | |
1778 { | |
1779 if (event_stream->force_event_pending_cb) | |
1780 event_stream->force_event_pending_cb (f); | |
1781 } | |
1782 | |
1783 void | |
1784 event_stream_drain_queue (void) | |
1785 { | |
1318 | 1786 /* This can call Lisp */ |
1268 | 1787 if (event_stream && event_stream->drain_queue_cb) |
1788 event_stream->drain_queue_cb (); | |
1789 } | |
1790 | |
1791 /* Return non-zero if at least HOW_MANY user events are pending. */ | |
1792 int | |
1793 detect_input_pending (int how_many) | |
1794 { | |
1318 | 1795 /* This can call Lisp */ |
1268 | 1796 Lisp_Object event; |
1797 | |
1798 if (!NILP (Vunread_command_event)) | |
1799 how_many--; | |
1800 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1801 how_many -= XFIXNUM (Fsafe_length (Vunread_command_events)); |
1268 | 1802 |
1803 if (how_many <= 0) | |
1804 return 1; | |
1805 | |
1806 EVENT_CHAIN_LOOP (event, command_event_queue) | |
1807 { | |
1808 if (XEVENT_TYPE (event) != eval_event | |
1809 && XEVENT_TYPE (event) != magic_eval_event) | |
1810 { | |
1811 how_many--; | |
1812 if (how_many <= 0) | |
1813 return 1; | |
1814 } | |
1815 } | |
1816 | |
1817 return event_stream_event_pending_p (how_many); | |
1818 } | |
1819 | |
1820 DEFUN ("input-pending-p", Finput_pending_p, 0, 0, 0, /* | |
1821 Return t if command input is currently available with no waiting. | |
1822 Actually, the value is nil only if we can be sure that no input is available. | |
1823 */ | |
1824 ()) | |
1825 { | |
1318 | 1826 /* This can call Lisp */ |
1268 | 1827 return detect_input_pending (1) ? Qt : Qnil; |
1828 } | |
1829 | |
1830 static int | |
1831 maybe_read_quit_event (Lisp_Event *event) | |
1832 { | |
1833 /* A C-g that came from `sigint_happened' will always come from the | |
1834 controlling terminal. If that doesn't exist, however, then the | |
1835 user manually sent us a SIGINT, and we pretend the C-g came from | |
1836 the selected console. */ | |
1837 struct console *con; | |
1838 | |
1839 if (CONSOLEP (Vcontrolling_terminal) && | |
1840 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal))) | |
1841 con = XCONSOLE (Vcontrolling_terminal); | |
1842 else | |
1843 con = XCONSOLE (Fselected_console ()); | |
1844 | |
1845 if (sigint_happened) | |
1846 { | |
1847 sigint_happened = 0; | |
1848 Vquit_flag = Qnil; | |
1849 Fcopy_event (CONSOLE_QUIT_EVENT (con), wrap_event (event)); | |
1850 return 1; | |
1851 } | |
1852 return 0; | |
1853 } | |
1854 | |
1855 struct remove_quit_p_data | |
1856 { | |
1857 int critical; | |
1858 }; | |
1859 | |
1860 static int | |
1861 remove_quit_p_event (Lisp_Object ev, void *the_data) | |
1862 { | |
1863 struct remove_quit_p_data *data = (struct remove_quit_p_data *) the_data; | |
1864 struct console *con = event_console_or_selected (ev); | |
1865 | |
1866 if (XEVENT_TYPE (ev) == key_press_event) | |
1867 { | |
1868 if (event_matches_key_specifier_p (ev, CONSOLE_QUIT_EVENT (con))) | |
1869 return 1; | |
1870 if (event_matches_key_specifier_p (ev, | |
1871 CONSOLE_CRITICAL_QUIT_EVENT (con))) | |
1872 { | |
1873 data->critical = 1; | |
1874 return 1; | |
1875 } | |
1876 } | |
1877 | |
1878 return 0; | |
1879 } | |
1880 | |
1881 void | |
1882 event_stream_quit_p (void) | |
1883 { | |
1318 | 1884 /* This can call Lisp */ |
1268 | 1885 struct remove_quit_p_data data; |
1886 | |
1887 /* Quit checking cannot happen in modal loop. Because it attempts to | |
1888 retrieve and dispatch events, it will cause lots of problems if we try | |
1889 to do this when already in the process of doing this -- deadlocking | |
1890 under Windows, crashes in lwlib etc. under X due to non-reentrant | |
1891 code. This is automatically caught, however, in | |
1892 event_stream_drain_queue() (checks for in_modal_loop in the | |
1893 event-specific code). */ | |
1894 | |
1895 /* Drain queue so we can check for pending C-g events. */ | |
1896 event_stream_drain_queue (); | |
1897 data.critical = 0; | |
1898 | |
1899 if (map_event_chain_remove (remove_quit_p_event, | |
1900 &dispatch_event_queue, | |
1901 &dispatch_event_queue_tail, | |
1902 &data, MECR_DEALLOCATE_EVENT)) | |
1903 Vquit_flag = data.critical ? Qcritical : Qt; | |
1904 } | |
1905 | |
1906 Lisp_Object | |
1907 event_stream_protect_modal_loop (const char *error_string, | |
1908 Lisp_Object (*bfun) (void *barg), | |
1909 void *barg, int flags) | |
1910 { | |
1911 Lisp_Object tmp; | |
1912 | |
1913 ++in_modal_loop; | |
1914 tmp = call_trapping_problems (Qevent, error_string, flags, 0, bfun, barg); | |
1915 --in_modal_loop; | |
1916 | |
1917 return tmp; | |
1918 } | |
1919 | |
1920 | |
1921 /**********************************************************************/ | |
428 | 1922 /* retrieving the next event */ |
1923 /**********************************************************************/ | |
1924 | |
1925 static int in_single_console; | |
1926 | |
1927 /* #### These functions don't currently do anything. */ | |
1928 void | |
1929 single_console_state (void) | |
1930 { | |
1931 in_single_console = 1; | |
1932 } | |
1933 | |
1934 void | |
1935 any_console_state (void) | |
1936 { | |
1937 in_single_console = 0; | |
1938 } | |
1939 | |
1940 int | |
1941 in_single_console_state (void) | |
1942 { | |
1943 return in_single_console; | |
1944 } | |
1945 | |
1268 | 1946 static void |
1947 event_stream_next_event (Lisp_Event *event) | |
1948 { | |
1949 Lisp_Object event_obj; | |
1950 | |
1951 check_event_stream_ok (); | |
1952 | |
1953 event_obj = wrap_event (event); | |
1954 zero_event (event); | |
1955 /* SIGINT occurs when C-g was pressed on a TTY. (SIGINT might have | |
1956 been sent manually by the user, but we don't care; we treat it | |
1957 the same.) | |
1958 | |
1959 The SIGINT signal handler sets Vquit_flag as well as sigint_happened | |
1960 and write a byte on our "fake pipe", which unblocks us when we are | |
1961 waiting for an event. */ | |
1962 | |
1963 /* If SIGINT was received after we disabled quit checking (because | |
1964 we want to read C-g's as characters), but before we got a chance | |
1965 to start reading, notice it now and treat it as a character to be | |
1966 read. If above callers wanted this to be QUIT, they can | |
1967 determine this by comparing the event against quit-char. */ | |
1968 | |
1969 if (maybe_read_quit_event (event)) | |
1970 { | |
1971 DEBUG_PRINT_EMACS_EVENT ("SIGINT", event_obj); | |
1972 return; | |
1973 } | |
1974 | |
1975 /* If a longjmp() happens in the callback, we're screwed. | |
1976 Let's hope it doesn't. I think the code here is fairly | |
1977 clean and doesn't do this. */ | |
1978 emacs_is_blocking = 1; | |
1979 event_stream->next_event_cb (event); | |
1980 emacs_is_blocking = 0; | |
1981 | |
1982 /* Now check to see if C-g was pressed while we were blocking. | |
1983 We treat it as an event, just like above. */ | |
1984 if (maybe_read_quit_event (event)) | |
1985 { | |
1986 DEBUG_PRINT_EMACS_EVENT ("SIGINT", event_obj); | |
1987 return; | |
1988 } | |
1989 | |
1990 #ifdef DEBUG_XEMACS | |
1991 /* timeout events have more info set later, so | |
1992 print the event out in next_event_internal(). */ | |
1993 if (event->event_type != timeout_event) | |
1994 DEBUG_PRINT_EMACS_EVENT ("real", event_obj); | |
1995 #endif | |
1996 maybe_kbd_translate (event_obj); | |
1997 } | |
428 | 1998 |
853 | 1999 /* Read an event from the window system (or tty). If ALLOW_QUEUED is |
2000 non-zero, read from the command-event queue first. | |
2001 | |
2002 If C-g was pressed, this function will attempt to QUIT. If you want | |
2003 to read C-g as an event, wrap this function with a call to | |
2004 begin_dont_check_for_quit(), and set Vquit_flag to Qnil just before | |
2005 you unbind. In this case, TARGET_EVENT will contain a C-g. | |
2006 | |
2007 Note that even if you are interested in C-g doing QUIT, a caller of you | |
2008 might not be. | |
2009 */ | |
2010 | |
428 | 2011 static void |
2012 next_event_internal (Lisp_Object target_event, int allow_queued) | |
2013 { | |
2014 struct gcpro gcpro1; | |
1292 | 2015 PROFILE_DECLARE (); |
2016 | |
853 | 2017 QUIT; |
428 | 2018 |
1292 | 2019 PROFILE_RECORD_ENTERING_SECTION (QSnext_event_internal); |
2020 | |
428 | 2021 assert (NILP (XEVENT_NEXT (target_event))); |
2022 | |
2023 GCPRO1 (target_event); | |
2024 | |
2025 /* When focus_follows_mouse is nil, if a frame change took place, we need | |
2026 * to actually switch window manager focus to the selected window now. | |
2027 */ | |
2028 if (!focus_follows_mouse) | |
2029 investigate_frame_change (); | |
2030 | |
2031 if (allow_queued && !NILP (command_event_queue)) | |
2032 { | |
2033 Lisp_Object event = dequeue_command_event (); | |
2034 Fcopy_event (event, target_event); | |
2035 Fdeallocate_event (event); | |
2036 DEBUG_PRINT_EMACS_EVENT ("command event queue", target_event); | |
2037 } | |
2038 else | |
2039 { | |
440 | 2040 Lisp_Event *e = XEVENT (target_event); |
428 | 2041 |
2042 /* The command_event_queue was empty. Wait for an event. */ | |
2043 event_stream_next_event (e); | |
2044 /* If this was a timeout, then we need to extract some data | |
2045 out of the returned closure and might need to resignal | |
2046 it. */ | |
934 | 2047 if (EVENT_TYPE (e) == timeout_event) |
428 | 2048 { |
2049 Lisp_Object tristan, isolde; | |
2050 | |
1204 | 2051 SET_EVENT_TIMEOUT_ID_NUMBER (e, |
2052 event_stream_resignal_wakeup (EVENT_TIMEOUT_INTERVAL_ID (e), 0, &tristan, &isolde)); | |
2053 | |
2054 SET_EVENT_TIMEOUT_FUNCTION (e, tristan); | |
2055 SET_EVENT_TIMEOUT_OBJECT (e, isolde); | |
934 | 2056 /* next_event_internal() doesn't print out timeout events |
2057 because of the extra info we just set. */ | |
428 | 2058 DEBUG_PRINT_EMACS_EVENT ("real, timeout", target_event); |
2059 } | |
2060 | |
853 | 2061 /* If we read a ^G, then set quit-flag and try to QUIT. |
2062 This may be blocked (see above). | |
428 | 2063 */ |
934 | 2064 if (EVENT_TYPE (e) == key_press_event && |
428 | 2065 event_matches_key_specifier_p |
1204 | 2066 (target_event, CONSOLE_QUIT_EVENT (XCONSOLE (EVENT_CHANNEL (e))))) |
428 | 2067 { |
2068 Vquit_flag = Qt; | |
853 | 2069 QUIT; |
428 | 2070 } |
2071 } | |
2072 | |
2073 UNGCPRO; | |
1292 | 2074 |
2075 PROFILE_RECORD_EXITING_SECTION (QSnext_event_internal); | |
428 | 2076 } |
2077 | |
853 | 2078 void |
428 | 2079 run_pre_idle_hook (void) |
2080 { | |
1318 | 2081 /* This can call Lisp */ |
428 | 2082 if (!NILP (Vpre_idle_hook) |
1268 | 2083 && !detect_input_pending (1)) |
853 | 2084 safe_run_hook_trapping_problems |
1333 | 2085 (Qredisplay, Qpre_idle_hook, |
1268 | 2086 /* Quit is inhibited as a result of being within next-event so |
2087 we need to fix that. */ | |
2088 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION | UNINHIBIT_QUIT); | |
428 | 2089 } |
2090 | |
2091 DEFUN ("next-event", Fnext_event, 0, 2, 0, /* | |
2092 Return the next available event. | |
2093 Pass this object to `dispatch-event' to handle it. | |
2094 In most cases, you will want to use `next-command-event', which returns | |
2095 the next available "user" event (i.e. keypress, button-press, | |
2096 button-release, or menu selection) instead of this function. | |
2097 | |
2098 If EVENT is non-nil, it should be an event object and will be filled in | |
2099 and returned; otherwise a new event object will be created and returned. | |
2100 If PROMPT is non-nil, it should be a string and will be displayed in the | |
2101 echo area while this function is waiting for an event. | |
2102 | |
2103 The next available event will be | |
2104 | |
2105 -- any events in `unread-command-events' or `unread-command-event'; else | |
2106 -- the next event in the currently executing keyboard macro, if any; else | |
442 | 2107 -- an event queued by `enqueue-eval-event', if any, or any similar event |
2108 queued internally, such as a misc-user event. (For example, when an item | |
2109 is selected from a menu or from a `question'-type dialog box, the item's | |
2110 callback is not immediately executed, but instead a misc-user event | |
2111 is generated and placed onto this queue; when it is dispatched, the | |
2112 callback is executed.) Else | |
428 | 2113 -- the next available event from the window system or terminal driver. |
2114 | |
2115 In the last case, this function will block until an event is available. | |
2116 | |
2117 The returned event will be one of the following types: | |
2118 | |
2119 -- a key-press event. | |
2120 -- a button-press or button-release event. | |
2121 -- a misc-user-event, meaning the user selected an item on a menu or used | |
2122 the scrollbar. | |
2123 -- a process event, meaning that output from a subprocess is available. | |
2124 -- a timeout event, meaning that a timeout has elapsed. | |
2125 -- an eval event, which simply causes a function to be executed when the | |
2126 event is dispatched. Eval events are generated by `enqueue-eval-event' | |
2127 or by certain other conditions happening. | |
2128 -- a magic event, indicating that some window-system-specific event | |
2129 happened (such as a focus-change notification) that must be handled | |
2130 synchronously with other events. `dispatch-event' knows what to do with | |
2131 these events. | |
2132 */ | |
2133 (event, prompt)) | |
2134 { | |
2135 /* This function can call lisp */ | |
2136 /* #### We start out using the selected console before an event | |
2137 is received, for echoing the partially completed command. | |
2138 This is most definitely wrong -- there needs to be a separate | |
2139 echo area for each console! */ | |
2140 struct console *con = XCONSOLE (Vselected_console); | |
2141 struct command_builder *command_builder = | |
2142 XCOMMAND_BUILDER (con->command_builder); | |
2143 int store_this_key = 0; | |
2144 struct gcpro gcpro1; | |
853 | 2145 int depth; |
1292 | 2146 PROFILE_DECLARE (); |
428 | 2147 |
2148 GCPRO1 (event); | |
853 | 2149 |
1268 | 2150 /* This is not strictly necessary. Trying to retrieve an event inside of |
2151 a modal loop can cause major problems (see event_stream_quit_p()), but | |
2152 the event-specific code knows about this and will make sure we don't | |
2153 do anything dangerous. However, if we've gotten here, it's highly | |
2154 likely that some code is trying to fetch user events (e.g. in custom | |
2155 dialog-box code), and will almost certainly deadlock, so it's probably | |
2156 best to error out. #### This could cause problems because there are | |
2157 (potentially, at least) legitimate reasons for calling next-event | |
2158 inside of a modal loop, in particular if the code is trying to search | |
2159 for a timeout event, which will still get retrieved in such a case. | |
2160 However, the code to error in such a case has already been present for | |
2161 a long time without obvious problems so leaving it in isn't so | |
1279 | 2162 bad. |
2163 | |
2164 #### I used to conditionalize on in_modal_loop but that fails utterly | |
2165 because event-msw.c specifically calls Fnext_event() inside of a modal | |
2166 loop to clear the dispatch queue. --ben */ | |
1315 | 2167 #ifdef HAVE_MENUBARS |
1279 | 2168 if (in_menu_callback) |
2169 invalid_operation ("Attempt to call next-event inside menu callback", | |
1268 | 2170 Qunbound); |
1315 | 2171 #endif /* HAVE_MENUBARS */ |
1268 | 2172 |
1292 | 2173 PROFILE_RECORD_ENTERING_SECTION (Qnext_event); |
2174 | |
853 | 2175 depth = begin_dont_check_for_quit (); |
428 | 2176 |
2177 if (NILP (event)) | |
2178 event = Fmake_event (Qnil, Qnil); | |
2179 else | |
2180 CHECK_LIVE_EVENT (event); | |
2181 | |
2182 if (!NILP (prompt)) | |
2183 { | |
2184 Bytecount len; | |
2185 CHECK_STRING (prompt); | |
2186 | |
2187 len = XSTRING_LENGTH (prompt); | |
2188 if (command_builder->echo_buf_length < len) | |
2189 len = command_builder->echo_buf_length - 1; | |
2190 memcpy (command_builder->echo_buf, XSTRING_DATA (prompt), len); | |
2191 command_builder->echo_buf[len] = 0; | |
2192 command_builder->echo_buf_index = len; | |
2193 echo_area_message (XFRAME (CONSOLE_SELECTED_FRAME (con)), | |
2194 command_builder->echo_buf, | |
2195 Qnil, 0, | |
2196 command_builder->echo_buf_index, | |
2197 Qcommand); | |
2198 } | |
2199 | |
2200 start_over_and_avoid_hosage: | |
2201 | |
2202 /* If there is something in unread-command-events, simply return it. | |
2203 But do some error checking to make sure the user hasn't put something | |
2204 in the unread-command-events that they shouldn't have. | |
2205 This does not update this-command-keys and recent-keys. | |
2206 */ | |
2207 if (!NILP (Vunread_command_events)) | |
2208 { | |
2209 if (!CONSP (Vunread_command_events)) | |
2210 { | |
2211 Vunread_command_events = Qnil; | |
563 | 2212 signal_error_1 (Qwrong_type_argument, |
428 | 2213 list3 (Qconsp, Vunread_command_events, |
2214 Qunread_command_events)); | |
2215 } | |
2216 else | |
2217 { | |
2218 Lisp_Object e = XCAR (Vunread_command_events); | |
2219 Vunread_command_events = XCDR (Vunread_command_events); | |
2220 if (!EVENTP (e) || !command_event_p (e)) | |
563 | 2221 signal_error_1 (Qwrong_type_argument, |
428 | 2222 list3 (Qcommand_event_p, e, Qunread_command_events)); |
853 | 2223 redisplay_no_pre_idle_hook (); |
428 | 2224 if (!EQ (e, event)) |
2225 Fcopy_event (e, event); | |
2226 DEBUG_PRINT_EMACS_EVENT ("unread-command-events", event); | |
2227 } | |
2228 } | |
2229 | |
2230 /* Do similar for unread-command-event (obsoleteness support). */ | |
2231 else if (!NILP (Vunread_command_event)) | |
2232 { | |
2233 Lisp_Object e = Vunread_command_event; | |
2234 Vunread_command_event = Qnil; | |
2235 | |
2236 if (!EVENTP (e) || !command_event_p (e)) | |
2237 { | |
563 | 2238 signal_error_1 (Qwrong_type_argument, |
428 | 2239 list3 (Qeventp, e, Qunread_command_event)); |
2240 } | |
2241 if (!EQ (e, event)) | |
2242 Fcopy_event (e, event); | |
853 | 2243 redisplay_no_pre_idle_hook (); |
428 | 2244 DEBUG_PRINT_EMACS_EVENT ("unread-command-event", event); |
2245 } | |
2246 | |
2247 /* If we're executing a keyboard macro, take the next event from that, | |
2248 and update this-command-keys and recent-keys. | |
2249 Note that the unread-command-events take precedence over kbd macros. | |
2250 */ | |
2251 else | |
2252 { | |
2253 if (!NILP (Vexecuting_macro)) | |
2254 { | |
853 | 2255 redisplay_no_pre_idle_hook (); |
428 | 2256 pop_kbd_macro_event (event); /* This throws past us at |
2257 end-of-macro. */ | |
2258 store_this_key = 1; | |
2259 DEBUG_PRINT_EMACS_EVENT ("keyboard macro", event); | |
2260 } | |
2261 /* Otherwise, read a real event, possibly from the | |
2262 command_event_queue, and update this-command-keys and | |
2263 recent-keys. */ | |
2264 else | |
2265 { | |
2266 redisplay (); | |
2267 next_event_internal (event, 1); | |
2268 store_this_key = 1; | |
2269 } | |
2270 } | |
2271 | |
853 | 2272 /* temporarily reenable quit checking here, because arbitrary lisp |
2273 is executed */ | |
2274 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */ | |
2275 unbind_to (depth); | |
428 | 2276 status_notify (); /* Notice process change */ |
853 | 2277 depth = begin_dont_check_for_quit (); |
428 | 2278 |
2279 /* Since we can free the most stuff here | |
2280 * (since this is typically called from | |
2281 * the command-loop top-level). */ | |
851 | 2282 if (need_to_check_c_alloca) |
2283 xemacs_c_alloca (0); /* Cause a garbage collection now */ | |
428 | 2284 |
2285 if (object_dead_p (XEVENT (event)->channel)) | |
2286 /* event_console_or_selected may crash if the channel is dead. | |
2287 Best just to eat it and get the next event. */ | |
2288 goto start_over_and_avoid_hosage; | |
2289 | |
2290 /* OK, now we can stop the selected-console kludge and use the | |
2291 actual console from the event. */ | |
2292 con = event_console_or_selected (event); | |
2293 command_builder = XCOMMAND_BUILDER (con->command_builder); | |
2294 | |
2295 switch (XEVENT_TYPE (event)) | |
2296 { | |
2297 case button_release_event: | |
2298 case misc_user_event: | |
2299 /* don't echo menu accelerator keys */ | |
2300 reset_key_echo (command_builder, 1); | |
2301 goto EXECUTE_KEY; | |
2302 case button_press_event: /* key or mouse input can trigger prompting */ | |
2303 goto STORE_AND_EXECUTE_KEY; | |
2304 case key_press_event: /* any key input can trigger autosave */ | |
2305 break; | |
898 | 2306 default: |
2307 goto RETURN; | |
428 | 2308 } |
2309 | |
853 | 2310 /* temporarily reenable quit checking here, because we could get stuck */ |
2311 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */ | |
2312 unbind_to (depth); | |
428 | 2313 maybe_do_auto_save (); |
853 | 2314 depth = begin_dont_check_for_quit (); |
2315 | |
428 | 2316 num_input_chars++; |
2317 STORE_AND_EXECUTE_KEY: | |
2318 if (store_this_key) | |
2319 { | |
2320 echo_key_event (command_builder, event); | |
2321 } | |
2322 | |
2323 EXECUTE_KEY: | |
2324 /* Store the last-input-event. The semantics of this is that it is | |
2325 the thing most recently returned by next-command-event. It need | |
2326 not have come from the keyboard or a keyboard macro, it may have | |
2327 come from unread-command-events. It's always a command-event (a | |
2328 key, click, or menu selection), never a motion or process event. | |
2329 */ | |
2330 if (!EVENTP (Vlast_input_event)) | |
2331 Vlast_input_event = Fmake_event (Qnil, Qnil); | |
2332 if (XEVENT_TYPE (Vlast_input_event) == dead_event) | |
2333 { | |
2334 Vlast_input_event = Fmake_event (Qnil, Qnil); | |
563 | 2335 invalid_state ("Someone deallocated last-input-event!", Qunbound); |
428 | 2336 } |
2337 if (! EQ (event, Vlast_input_event)) | |
2338 Fcopy_event (event, Vlast_input_event); | |
2339 | |
2340 /* last-input-char and last-input-time are derived from | |
2341 last-input-event. | |
2342 Note that last-input-char will never have its high-bit set, in an | |
2343 effort to sidestep the ambiguity between M-x and oslash. | |
2344 */ | |
2862 | 2345 Vlast_input_char = Fevent_to_character (Vlast_input_event, Qnil, Qnil, Qnil); |
428 | 2346 { |
2347 EMACS_TIME t; | |
2348 EMACS_GET_TIME (t); | |
2349 if (!CONSP (Vlast_input_time)) | |
2350 Vlast_input_time = Fcons (Qnil, Qnil); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2351 XCAR (Vlast_input_time) = make_fixnum ((EMACS_SECS (t) >> 16) & 0xffff); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2352 XCDR (Vlast_input_time) = make_fixnum ((EMACS_SECS (t) >> 0) & 0xffff); |
428 | 2353 if (!CONSP (Vlast_command_event_time)) |
2354 Vlast_command_event_time = list3 (Qnil, Qnil, Qnil); | |
2355 XCAR (Vlast_command_event_time) = | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2356 make_fixnum ((EMACS_SECS (t) >> 16) & 0xffff); |
428 | 2357 XCAR (XCDR (Vlast_command_event_time)) = |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2358 make_fixnum ((EMACS_SECS (t) >> 0) & 0xffff); |
428 | 2359 XCAR (XCDR (XCDR (Vlast_command_event_time))) |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2360 = make_fixnum (EMACS_USECS (t)); |
428 | 2361 } |
2362 /* If this key came from the keyboard or from a keyboard macro, then | |
2363 it goes into the recent-keys and this-command-keys vectors. | |
2364 If this key came from the keyboard, and we're defining a keyboard | |
2365 macro, then it goes into the macro. | |
2366 */ | |
2367 if (store_this_key) | |
2368 { | |
479 | 2369 if (!is_scrollbar_event (event)) /* #### not quite right, see |
2370 comment in execute_command_event */ | |
2371 push_this_command_keys (event); | |
428 | 2372 if (!inhibit_input_event_recording) |
2373 push_recent_keys (event); | |
2374 dribble_out_event (event); | |
2375 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro)) | |
2376 { | |
2377 if (!EVENTP (command_builder->current_events)) | |
2378 finalize_kbd_macro_chars (con); | |
2379 store_kbd_macro_event (event); | |
2380 } | |
2381 } | |
853 | 2382 /* If this is the help char and there is a help form, then execute |
2383 the help form and swallow this character. Note that | |
2384 execute_help_form() calls Fnext_command_event(), which calls this | |
2385 function, as well as Fdispatch_event. */ | |
428 | 2386 if (!NILP (Vhelp_form) && |
1204 | 2387 event_matches_key_specifier_p (event, Vhelp_char)) |
853 | 2388 { |
2389 /* temporarily reenable quit checking here, because we could get stuck */ | |
2390 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */ | |
2391 unbind_to (depth); | |
2392 execute_help_form (command_builder, event); | |
2393 depth = begin_dont_check_for_quit (); | |
2394 } | |
428 | 2395 |
2396 RETURN: | |
853 | 2397 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */ |
2398 unbind_to (depth); | |
2399 | |
1292 | 2400 PROFILE_RECORD_EXITING_SECTION (Qnext_event); |
2401 | |
428 | 2402 UNGCPRO; |
853 | 2403 |
428 | 2404 return event; |
2405 } | |
2406 | |
2407 DEFUN ("next-command-event", Fnext_command_event, 0, 2, 0, /* | |
2408 Return the next available "user" event. | |
2409 Pass this object to `dispatch-event' to handle it. | |
2410 | |
2411 If EVENT is non-nil, it should be an event object and will be filled in | |
2412 and returned; otherwise a new event object will be created and returned. | |
2413 If PROMPT is non-nil, it should be a string and will be displayed in the | |
2414 echo area while this function is waiting for an event. | |
2415 | |
2416 The event returned will be a keyboard, mouse press, or mouse release event. | |
2417 If there are non-command events available (mouse motion, sub-process output, | |
2418 etc) then these will be executed (with `dispatch-event') and discarded. This | |
2419 function is provided as a convenience; it is roughly equivalent to the lisp code | |
2420 | |
2421 (while (progn | |
2422 (next-event event prompt) | |
2423 (not (or (key-press-event-p event) | |
2424 (button-press-event-p event) | |
2425 (button-release-event-p event) | |
2426 (misc-user-event-p event)))) | |
2427 (dispatch-event event)) | |
2428 | |
2429 but it also makes a provision for displaying keystrokes in the echo area. | |
2430 */ | |
2431 (event, prompt)) | |
2432 { | |
2433 /* This function can GC */ | |
2434 struct gcpro gcpro1; | |
2435 GCPRO1 (event); | |
934 | 2436 |
428 | 2437 maybe_echo_keys (XCOMMAND_BUILDER |
2438 (XCONSOLE (Vselected_console)-> | |
5801
0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
Aidan Kehoe <kehoea@parhasard.net>
parents:
5736
diff
changeset
|
2439 command_builder), |
0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
Aidan Kehoe <kehoea@parhasard.net>
parents:
5736
diff
changeset
|
2440 /* Only snooze displaying keystrokes if we don't have a |
0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
Aidan Kehoe <kehoea@parhasard.net>
parents:
5736
diff
changeset
|
2441 prompt. (If we have a prompt, our callers want us to |
0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
Aidan Kehoe <kehoea@parhasard.net>
parents:
5736
diff
changeset
|
2442 show it!) */ |
0e9f791cc655
Support `function-key-map' in #'read-char{,-exclusive}, sync API with GNU
Aidan Kehoe <kehoea@parhasard.net>
parents:
5736
diff
changeset
|
2443 !NILP (prompt)); |
853 | 2444 |
428 | 2445 for (;;) |
2446 { | |
2447 event = Fnext_event (event, prompt); | |
2448 if (command_event_p (event)) | |
2449 break; | |
2450 else | |
2451 execute_internal_event (event); | |
2452 } | |
2453 UNGCPRO; | |
2454 return event; | |
2455 } | |
2456 | |
442 | 2457 DEFUN ("dispatch-non-command-events", Fdispatch_non_command_events, 0, 0, 0, /* |
2458 Dispatch any pending "magic" events. | |
2459 | |
2460 This function is useful for forcing the redisplay of native | |
2461 widgets. Normally these are redisplayed through a native window-system | |
2462 event encoded as magic event, rather than by the redisplay code. This | |
2463 function does not call redisplay or do any of the other things that | |
2464 `next-event' does. | |
2465 */ | |
2466 ()) | |
2467 { | |
2468 /* This function can GC */ | |
2469 Lisp_Object event = Qnil; | |
2470 struct gcpro gcpro1; | |
2471 GCPRO1 (event); | |
2472 event = Fmake_event (Qnil, Qnil); | |
2473 | |
2474 /* Make sure that there will be something in the native event queue | |
2475 so that externally managed things (e.g. widgets) get some CPU | |
2476 time. */ | |
2477 event_stream_force_event_pending (selected_frame ()); | |
2478 | |
2479 while (event_stream_event_pending_p (0)) | |
2480 { | |
2481 /* We're a generator of the command_event_queue, so we can't be a | |
2482 consumer as well. Also, we have no reason to consult the | |
2483 command_event_queue; there are only user and eval-events there, | |
2484 and we'd just have to put them back anyway. | |
2485 */ | |
2486 next_event_internal (event, 0); /* blocks */ | |
2487 if (XEVENT_TYPE (event) == magic_event || | |
2488 XEVENT_TYPE (event) == timeout_event || | |
2489 XEVENT_TYPE (event) == process_event || | |
2490 XEVENT_TYPE (event) == pointer_motion_event) | |
2491 execute_internal_event (event); | |
2492 else | |
2493 { | |
2494 enqueue_command_event_1 (event); | |
2495 break; | |
2496 } | |
2497 } | |
2498 | |
2499 Fdeallocate_event (event); | |
2500 UNGCPRO; | |
2501 return Qnil; | |
2502 } | |
2503 | |
428 | 2504 static void |
2505 reset_current_events (struct command_builder *command_builder) | |
2506 { | |
2507 Lisp_Object event = command_builder->current_events; | |
2508 reset_command_builder_event_chain (command_builder); | |
2509 if (EVENTP (event)) | |
2510 deallocate_event_chain (event); | |
2511 } | |
2512 | |
1268 | 2513 static int |
2286 | 2514 command_event_p_cb (Lisp_Object ev, void *UNUSED (the_data)) |
1268 | 2515 { |
2516 return command_event_p (ev); | |
2517 } | |
2518 | |
428 | 2519 DEFUN ("discard-input", Fdiscard_input, 0, 0, 0, /* |
2520 Discard any pending "user" events. | |
2521 Also cancel any kbd macro being defined. | |
2522 A user event is a key press, button press, button release, or | |
2523 "misc-user" event (menu selection or scrollbar action). | |
2524 */ | |
2525 ()) | |
2526 { | |
1318 | 2527 /* This can call Lisp */ |
1268 | 2528 Lisp_Object concons; |
2529 | |
2530 CONSOLE_LOOP (concons) | |
428 | 2531 { |
1268 | 2532 struct console *con = XCONSOLE (XCAR (concons)); |
2533 | |
2534 /* If a macro was being defined then we have to mark the modeline | |
2535 has changed to ensure that it gets updated correctly. */ | |
2536 if (!NILP (con->defining_kbd_macro)) | |
2537 MARK_MODELINE_CHANGED; | |
2538 con->defining_kbd_macro = Qnil; | |
2539 reset_current_events (XCOMMAND_BUILDER (con->command_builder)); | |
428 | 2540 } |
2541 | |
1268 | 2542 /* This function used to be a lot more complicated. Now, we just |
2543 drain the pending queue and discard all user events from the | |
2544 command and dispatch queues. */ | |
2545 event_stream_drain_queue (); | |
2546 | |
2547 map_event_chain_remove (command_event_p_cb, | |
2548 &dispatch_event_queue, &dispatch_event_queue_tail, | |
2549 0, MECR_DEALLOCATE_EVENT); | |
2550 map_event_chain_remove (command_event_p_cb, | |
2551 &command_event_queue, &command_event_queue_tail, | |
2552 0, MECR_DEALLOCATE_EVENT); | |
428 | 2553 |
2554 return Qnil; | |
2555 } | |
2556 | |
2557 | |
2558 /**********************************************************************/ | |
2559 /* pausing until an action occurs */ | |
2560 /**********************************************************************/ | |
2561 | |
2562 /* This is used in accept-process-output, sleep-for and sit-for. | |
2563 Before running any process_events in these routines, we set | |
1268 | 2564 recursive_sit_for to 1, and use this unwind protect to reset it to |
2565 Qnil upon exit. When recursive_sit_for is 1, calling sit-for will | |
428 | 2566 cause it to return immediately. |
2567 | |
2568 All of these routines install timeouts, so we clear the installed | |
2569 timeout as well. | |
2570 | |
2571 Note: It's very easy to break the desired behaviors of these | |
2572 3 routines. If you make any changes to anything in this area, run | |
2573 the regression tests at the bottom of the file. -- dmoore */ | |
2574 | |
2575 | |
2576 static Lisp_Object | |
2577 sit_for_unwind (Lisp_Object timeout_id) | |
2578 { | |
2579 if (!NILP(timeout_id)) | |
2580 Fdisable_timeout (timeout_id); | |
2581 | |
1268 | 2582 recursive_sit_for = 0; |
428 | 2583 return Qnil; |
2584 } | |
2585 | |
2586 /* #### Is (accept-process-output nil 3) supposed to be like (sleep-for 3)? | |
2587 */ | |
2588 | |
2589 DEFUN ("accept-process-output", Faccept_process_output, 0, 3, 0, /* | |
2590 Allow any pending output from subprocesses to be read by Emacs. | |
2591 It is read into the process' buffers or given to their filter functions. | |
2592 Non-nil arg PROCESS means do not return until some output has been received | |
2593 from PROCESS. Nil arg PROCESS means do not return until some output has | |
2594 been received from any process. | |
2595 If the second arg is non-nil, it is the maximum number of seconds to wait: | |
2596 this function will return after that much time even if no input has arrived | |
2597 from PROCESS. This argument may be a float, meaning wait some fractional | |
2598 part of a second. | |
2599 If the third arg is non-nil, it is a number of milliseconds that is added | |
2600 to the second arg. (This exists only for compatibility.) | |
2601 Return non-nil iff we received any output before the timeout expired. | |
2602 */ | |
2603 (process, timeout_secs, timeout_msecs)) | |
2604 { | |
2605 /* This function can GC */ | |
2606 struct gcpro gcpro1, gcpro2; | |
2607 Lisp_Object event = Qnil; | |
2608 Lisp_Object result = Qnil; | |
2609 int timeout_id = -1; | |
2610 int timeout_enabled = 0; | |
2611 int done = 0; | |
2612 struct buffer *old_buffer = current_buffer; | |
2613 int count; | |
2614 | |
2615 /* We preserve the current buffer but nothing else. If a focus | |
2616 change alters the selected window then the top level event loop | |
2617 will eventually alter current_buffer to match. In the mean time | |
2618 we don't want to mess up whatever called this function. */ | |
2619 | |
2620 if (!NILP (process)) | |
2621 CHECK_PROCESS (process); | |
2622 | |
2623 GCPRO2 (event, process); | |
2624 | |
2625 if (!NILP (timeout_secs) || !NILP (timeout_msecs)) | |
2626 { | |
2627 unsigned long msecs = 0; | |
2628 if (!NILP (timeout_secs)) | |
2629 msecs = lisp_number_to_milliseconds (timeout_secs, 1); | |
2630 if (!NILP (timeout_msecs)) | |
2631 { | |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
2632 check_integer_range (timeout_msecs, Qzero, |
5736
3192994c49ca
Convert C (un)signed long long values to bignums properly.
Jerry James <james@xemacs.org>
parents:
5722
diff
changeset
|
2633 make_fixnum (MOST_POSITIVE_FIXNUM)); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2634 msecs += XFIXNUM (timeout_msecs); |
428 | 2635 } |
2636 if (msecs) | |
2637 { | |
2638 timeout_id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0); | |
2639 timeout_enabled = 1; | |
2640 } | |
2641 } | |
2642 | |
2643 event = Fmake_event (Qnil, Qnil); | |
2644 | |
2645 count = specpdl_depth (); | |
2646 record_unwind_protect (sit_for_unwind, | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2647 timeout_enabled ? make_fixnum (timeout_id) : Qnil); |
1268 | 2648 recursive_sit_for = 1; |
428 | 2649 |
2650 while (!done && | |
2651 ((NILP (process) && timeout_enabled) || | |
2652 (NILP (process) && event_stream_event_pending_p (0)) || | |
2653 (!NILP (process)))) | |
2654 /* Calling detect_input_pending() is the wrong thing here, because | |
2655 that considers the Vunread_command_events and command_event_queue. | |
2656 We don't need to look at the command_event_queue because we are | |
2657 only interested in process events, which don't go on that. In | |
2658 fact, we can't read from it anyway, because we put stuff on it. | |
2659 | |
2660 Note that event_stream->event_pending_p must be called in such | |
2661 a way that it says whether any events *of any kind* are ready, | |
2662 not just user events, or (accept-process-output nil) will fail | |
2663 to dispatch any process events that may be on the queue. It is | |
2664 not clear to me that this is important, because the top-level | |
2665 loop will process it, and I don't think that there is ever a | |
2666 time when one calls accept-process-output with a nil argument | |
2667 and really need the processes to be handled. */ | |
2668 { | |
2669 /* If our timeout has arrived, we move along. */ | |
2670 if (timeout_enabled && !event_stream_wakeup_pending_p (timeout_id, 0)) | |
2671 { | |
2672 timeout_enabled = 0; | |
2673 done = 1; /* We're done. */ | |
2674 continue; /* Don't call next_event_internal */ | |
2675 } | |
2676 | |
2677 next_event_internal (event, 0); | |
2678 switch (XEVENT_TYPE (event)) | |
2679 { | |
2680 case process_event: | |
2681 { | |
2682 if (NILP (process) || | |
1204 | 2683 EQ (XEVENT_PROCESS_PROCESS (event), process)) |
428 | 2684 { |
2685 done = 1; | |
2686 /* RMS's version always returns nil when proc is nil, | |
2687 and only returns t if input ever arrived on proc. */ | |
2688 result = Qt; | |
2689 } | |
2690 | |
2691 execute_internal_event (event); | |
2692 break; | |
2693 } | |
2694 case timeout_event: | |
2695 /* We execute the event even if it's ours, and notice that it's | |
2696 happened above. */ | |
2697 case pointer_motion_event: | |
2698 case magic_event: | |
2699 { | |
2700 execute_internal_event (event); | |
2701 break; | |
2702 } | |
2703 default: | |
2704 { | |
2705 enqueue_command_event_1 (event); | |
2706 break; | |
2707 } | |
2708 } | |
2709 } | |
2710 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2711 unbind_to_1 (count, timeout_enabled ? make_fixnum (timeout_id) : Qnil); |
428 | 2712 |
2713 Fdeallocate_event (event); | |
853 | 2714 |
2715 status_notify (); | |
2716 | |
428 | 2717 UNGCPRO; |
2718 current_buffer = old_buffer; | |
2719 return result; | |
2720 } | |
2721 | |
2722 DEFUN ("sleep-for", Fsleep_for, 1, 1, 0, /* | |
444 | 2723 Pause, without updating display, for SECONDS seconds. |
2724 SECONDS may be a float, allowing pauses for fractional parts of a second. | |
428 | 2725 |
2726 It is recommended that you never call sleep-for from inside of a process | |
444 | 2727 filter function or timer event (either synchronous or asynchronous). |
428 | 2728 */ |
2729 (seconds)) | |
2730 { | |
2731 /* This function can GC */ | |
2732 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1); | |
2733 int id; | |
2734 Lisp_Object event = Qnil; | |
2735 int count; | |
2736 struct gcpro gcpro1; | |
2737 | |
2738 GCPRO1 (event); | |
2739 | |
2740 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0); | |
2741 event = Fmake_event (Qnil, Qnil); | |
2742 | |
2743 count = specpdl_depth (); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2744 record_unwind_protect (sit_for_unwind, make_fixnum (id)); |
1268 | 2745 recursive_sit_for = 1; |
428 | 2746 |
2747 while (1) | |
2748 { | |
2749 /* If our timeout has arrived, we move along. */ | |
2750 if (!event_stream_wakeup_pending_p (id, 0)) | |
2751 goto DONE_LABEL; | |
2752 | |
2753 /* We're a generator of the command_event_queue, so we can't be a | |
2754 consumer as well. We don't care about command and eval-events | |
2755 anyway. | |
2756 */ | |
2757 next_event_internal (event, 0); /* blocks */ | |
2758 switch (XEVENT_TYPE (event)) | |
2759 { | |
2760 case timeout_event: | |
2761 /* We execute the event even if it's ours, and notice that it's | |
2762 happened above. */ | |
2763 case process_event: | |
2764 case pointer_motion_event: | |
2765 case magic_event: | |
2766 { | |
2767 execute_internal_event (event); | |
2768 break; | |
2769 } | |
2770 default: | |
2771 { | |
2772 enqueue_command_event_1 (event); | |
2773 break; | |
2774 } | |
2775 } | |
2776 } | |
2777 DONE_LABEL: | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2778 unbind_to_1 (count, make_fixnum (id)); |
428 | 2779 Fdeallocate_event (event); |
2780 UNGCPRO; | |
2781 return Qnil; | |
2782 } | |
2783 | |
2784 DEFUN ("sit-for", Fsit_for, 1, 2, 0, /* | |
444 | 2785 Perform redisplay, then wait SECONDS seconds or until user input is available. |
2786 SECONDS may be a float, meaning a fractional part of a second. | |
2787 Optional second arg NODISPLAY non-nil means don't redisplay; just wait. | |
428 | 2788 Redisplay is preempted as always if user input arrives, and does not |
2789 happen if input is available before it starts. | |
2790 Value is t if waited the full time with no input arriving. | |
2791 | |
2792 If sit-for is called from within a process filter function or timer | |
2793 event (either synchronous or asynchronous) it will return immediately. | |
2794 */ | |
2795 (seconds, nodisplay)) | |
2796 { | |
2797 /* This function can GC */ | |
2798 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1); | |
2799 Lisp_Object event, result; | |
2800 struct gcpro gcpro1; | |
2801 int id; | |
2802 int count; | |
2803 | |
2804 /* The unread-command-events count as pending input */ | |
2805 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event)) | |
2806 return Qnil; | |
2807 | |
2808 /* If the command-builder already has user-input on it (not eval events) | |
2809 then that means we're done too. | |
2810 */ | |
2811 if (!NILP (command_event_queue)) | |
2812 { | |
2813 EVENT_CHAIN_LOOP (event, command_event_queue) | |
2814 { | |
2815 if (command_event_p (event)) | |
2816 return Qnil; | |
2817 } | |
2818 } | |
2819 | |
2820 /* If we're in a macro, or noninteractive, or early in temacs, then | |
2821 don't wait. */ | |
2822 if (noninteractive || !NILP (Vexecuting_macro)) | |
2823 return Qnil; | |
2824 | |
2825 /* Recursive call from a filter function or timeout handler. */ | |
1268 | 2826 if (recursive_sit_for) |
428 | 2827 { |
2828 if (!event_stream_event_pending_p (1) && NILP (nodisplay)) | |
2829 redisplay (); | |
2830 return Qnil; | |
2831 } | |
2832 | |
2833 | |
2834 /* Otherwise, start reading events from the event_stream. | |
2835 Do this loop at least once even if (sit-for 0) so that we | |
2836 redisplay when no input pending. | |
2837 */ | |
2838 GCPRO1 (event); | |
2839 event = Fmake_event (Qnil, Qnil); | |
2840 | |
2841 /* Generate the wakeup even if MSECS is 0, so that existing timeout/etc. | |
2842 events get processed. The old (pre-19.12) code special-cased this | |
2843 and didn't generate a wakeup, but the resulting behavior was less than | |
2844 ideal; viz. the occurrence of (sit-for 0.001) scattered throughout | |
2845 the E-Lisp universe. */ | |
2846 | |
2847 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0); | |
2848 | |
2849 count = specpdl_depth (); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2850 record_unwind_protect (sit_for_unwind, make_fixnum (id)); |
1268 | 2851 recursive_sit_for = 1; |
428 | 2852 |
2853 while (1) | |
2854 { | |
2855 /* If there is no user input pending, then redisplay. | |
2856 */ | |
2857 if (!event_stream_event_pending_p (1) && NILP (nodisplay)) | |
2858 redisplay (); | |
2859 | |
2860 /* If our timeout has arrived, we move along. */ | |
2861 if (!event_stream_wakeup_pending_p (id, 0)) | |
2862 { | |
2863 result = Qt; | |
2864 goto DONE_LABEL; | |
2865 } | |
2866 | |
2867 /* We're a generator of the command_event_queue, so we can't be a | |
2868 consumer as well. In fact, we know there's nothing on the | |
2869 command_event_queue that we didn't just put there. | |
2870 */ | |
2871 next_event_internal (event, 0); /* blocks */ | |
2872 | |
2873 if (command_event_p (event)) | |
2874 { | |
2875 result = Qnil; | |
2876 goto DONE_LABEL; | |
2877 } | |
2878 switch (XEVENT_TYPE (event)) | |
2879 { | |
2880 case eval_event: | |
2881 { | |
2882 /* eval-events get delayed until later. */ | |
2883 enqueue_command_event (Fcopy_event (event, Qnil)); | |
2884 break; | |
2885 } | |
2886 | |
2887 case timeout_event: | |
2888 /* We execute the event even if it's ours, and notice that it's | |
2889 happened above. */ | |
2890 default: | |
2891 { | |
2892 execute_internal_event (event); | |
2893 break; | |
2894 } | |
2895 } | |
2896 } | |
2897 | |
2898 DONE_LABEL: | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
2899 unbind_to_1 (count, make_fixnum (id)); |
428 | 2900 |
2901 /* Put back the event (if any) that made Fsit_for() exit before the | |
2902 timeout. Note that it is being added to the back of the queue, which | |
2903 would be inappropriate if there were any user events on the queue | |
2904 already: we would be misordering them. But we know that there are | |
2905 no user-events on the queue, or else we would not have reached this | |
2906 point at all. | |
2907 */ | |
2908 if (NILP (result)) | |
2909 enqueue_command_event (event); | |
2910 else | |
2911 Fdeallocate_event (event); | |
2912 | |
2913 UNGCPRO; | |
2914 return result; | |
2915 } | |
2916 | |
442 | 2917 /* This handy little function is used by select-x.c to wait for replies |
2918 from processes that aren't really processes (e.g. the X server) */ | |
428 | 2919 void |
2920 wait_delaying_user_input (int (*predicate) (void *arg), void *predicate_arg) | |
2921 { | |
2922 /* This function can GC */ | |
2923 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
2924 struct gcpro gcpro1; | |
2925 GCPRO1 (event); | |
2926 | |
2927 while (!(*predicate) (predicate_arg)) | |
2928 { | |
2929 /* We're a generator of the command_event_queue, so we can't be a | |
2930 consumer as well. Also, we have no reason to consult the | |
2931 command_event_queue; there are only user and eval-events there, | |
2932 and we'd just have to put them back anyway. | |
2933 */ | |
2934 next_event_internal (event, 0); | |
2935 if (command_event_p (event) | |
2936 || (XEVENT_TYPE (event) == eval_event) | |
2937 || (XEVENT_TYPE (event) == magic_eval_event)) | |
2938 enqueue_command_event_1 (event); | |
2939 else | |
2940 execute_internal_event (event); | |
2941 } | |
2942 UNGCPRO; | |
2943 } | |
2944 | |
2945 | |
2946 /**********************************************************************/ | |
2947 /* dispatching events; command builder */ | |
2948 /**********************************************************************/ | |
2949 | |
2950 static void | |
2951 execute_internal_event (Lisp_Object event) | |
2952 { | |
1292 | 2953 PROFILE_DECLARE (); |
2954 | |
428 | 2955 /* events on dead channels get silently eaten */ |
2956 if (object_dead_p (XEVENT (event)->channel)) | |
2957 return; | |
2958 | |
1292 | 2959 PROFILE_RECORD_ENTERING_SECTION (QSexecute_internal_event); |
2960 | |
428 | 2961 /* This function can GC */ |
2962 switch (XEVENT_TYPE (event)) | |
2963 { | |
2964 case empty_event: | |
1292 | 2965 goto done; |
428 | 2966 |
2967 case eval_event: | |
2968 { | |
1204 | 2969 call1 (XEVENT_EVAL_FUNCTION (event), |
2970 XEVENT_EVAL_OBJECT (event)); | |
1292 | 2971 goto done; |
428 | 2972 } |
2973 | |
2974 case magic_eval_event: | |
2975 { | |
1204 | 2976 XEVENT_MAGIC_EVAL_INTERNAL_FUNCTION (event) |
2977 XEVENT_MAGIC_EVAL_OBJECT (event); | |
1292 | 2978 goto done; |
428 | 2979 } |
2980 | |
2981 case pointer_motion_event: | |
2982 { | |
2983 if (!NILP (Vmouse_motion_handler)) | |
2984 call1 (Vmouse_motion_handler, event); | |
1292 | 2985 goto done; |
428 | 2986 } |
2987 | |
2988 case process_event: | |
2989 { | |
1204 | 2990 Lisp_Object p = XEVENT_PROCESS_PROCESS (event); |
428 | 2991 Charcount readstatus; |
853 | 2992 int iter; |
2993 | |
2994 assert (PROCESSP (p)); | |
2995 for (iter = 0; iter < 2; iter++) | |
2996 { | |
2997 if (iter == 1 && !process_has_separate_stderr (p)) | |
2998 break; | |
2999 while ((readstatus = read_process_output (p, iter)) > 0) | |
3000 ; | |
3001 if (readstatus > 0) | |
3002 ; /* this clauses never gets executed but | |
3003 allows the #ifdefs to work cleanly. */ | |
428 | 3004 #ifdef EWOULDBLOCK |
853 | 3005 else if (readstatus == -1 && errno == EWOULDBLOCK) |
3006 ; | |
428 | 3007 #endif /* EWOULDBLOCK */ |
3008 #ifdef EAGAIN | |
853 | 3009 else if (readstatus == -1 && errno == EAGAIN) |
3010 ; | |
428 | 3011 #endif /* EAGAIN */ |
853 | 3012 else if ((readstatus == 0 && |
3013 /* Note that we cannot distinguish between no input | |
3014 available now and a closed pipe. | |
3015 With luck, a closed pipe will be accompanied by | |
3016 subprocess termination and SIGCHLD. */ | |
3017 (!network_connection_p (p) || | |
3018 /* | |
3019 When connected to ToolTalk (i.e. | |
3020 connected_via_filedesc_p()), it's not possible to | |
3021 reliably determine whether there is a message | |
3022 waiting for ToolTalk to receive. ToolTalk expects | |
3023 to have tt_message_receive() called exactly once | |
3024 every time the file descriptor becomes active, so | |
3025 the filter function forces this by returning 0. | |
3026 Emacs must not interpret this as a closed pipe. */ | |
3027 connected_via_filedesc_p (XPROCESS (p)))) | |
3028 | |
3029 /* On some OSs with ptys, when the process on one end of | |
3030 a pty exits, the other end gets an error reading with | |
3031 errno = EIO instead of getting an EOF (0 bytes read). | |
3032 Therefore, if we get an error reading and errno = | |
3033 EIO, just continue, because the child process has | |
3034 exited and should clean itself up soon (e.g. when we | |
3035 get a SIGCHLD). */ | |
535 | 3036 #ifdef EIO |
853 | 3037 || (readstatus == -1 && errno == EIO) |
428 | 3038 #endif |
535 | 3039 |
853 | 3040 ) |
3041 { | |
3042 /* Currently, we rely on SIGCHLD to indicate that the | |
3043 process has terminated. Unfortunately, on some systems | |
3044 the SIGCHLD gets missed some of the time. So we put an | |
3045 additional check in status_notify() to see whether a | |
3046 process has terminated. We must tell status_notify() | |
3047 to enable that check, and we do so now. */ | |
3048 kick_status_notify (); | |
3049 } | |
898 | 3050 else |
3051 { | |
3052 /* Deactivate network connection */ | |
3053 Lisp_Object status = Fprocess_status (p); | |
3054 if (EQ (status, Qopen) | |
3055 /* In case somebody changes the theory of whether to | |
3056 return open as opposed to run for network connection | |
3057 "processes"... */ | |
3058 || EQ (status, Qrun)) | |
3059 update_process_status (p, Qexit, 256, 0); | |
3060 deactivate_process (p); | |
3061 status_notify (); | |
3062 } | |
853 | 3063 |
3064 /* We must call status_notify here to allow the | |
3065 event_stream->unselect_process_cb to be run if appropriate. | |
3066 Otherwise, dead fds may be selected for, and we will get a | |
3067 continuous stream of process events for them. Since we don't | |
3068 return until all process events have been flushed, we would | |
3069 get stuck here, processing events on a process whose status | |
3025 | 3070 was `exit'. Call this after dispatch-event, or the fds will |
853 | 3071 have been closed before we read the last data from them. |
3072 It's safe for the filter to signal an error because | |
3073 status_notify() will be called on return to top-level. | |
3074 */ | |
3075 status_notify (); | |
428 | 3076 } |
1292 | 3077 goto done; |
428 | 3078 } |
3079 | |
3080 case timeout_event: | |
3081 { | |
440 | 3082 Lisp_Event *e = XEVENT (event); |
934 | 3083 |
1204 | 3084 if (!NILP (EVENT_TIMEOUT_FUNCTION (e))) |
3085 call1 (EVENT_TIMEOUT_FUNCTION (e), | |
3086 EVENT_TIMEOUT_OBJECT (e)); | |
1292 | 3087 goto done; |
428 | 3088 } |
3089 case magic_event: | |
3090 event_stream_handle_magic_event (XEVENT (event)); | |
1292 | 3091 goto done; |
428 | 3092 default: |
2500 | 3093 ABORT (); |
428 | 3094 } |
1292 | 3095 |
3096 done: | |
3097 PROFILE_RECORD_EXITING_SECTION (QSexecute_internal_event); | |
428 | 3098 } |
3099 | |
3100 | |
3101 | |
3102 static void | |
3103 this_command_keys_replace_suffix (Lisp_Object suffix, Lisp_Object chain) | |
3104 { | |
3105 Lisp_Object first_before_suffix = | |
3106 event_chain_find_previous (Vthis_command_keys, suffix); | |
3107 | |
3108 if (NILP (first_before_suffix)) | |
3109 Vthis_command_keys = chain; | |
3110 else | |
3111 XSET_EVENT_NEXT (first_before_suffix, chain); | |
3112 deallocate_event_chain (suffix); | |
3113 Vthis_command_keys_tail = event_chain_tail (chain); | |
3114 } | |
3115 | |
3116 static void | |
3117 command_builder_replace_suffix (struct command_builder *builder, | |
3118 Lisp_Object suffix, Lisp_Object chain) | |
3119 { | |
3120 Lisp_Object first_before_suffix = | |
3121 event_chain_find_previous (builder->current_events, suffix); | |
3122 | |
3123 if (NILP (first_before_suffix)) | |
3124 builder->current_events = chain; | |
3125 else | |
3126 XSET_EVENT_NEXT (first_before_suffix, chain); | |
3127 deallocate_event_chain (suffix); | |
3128 builder->most_current_event = event_chain_tail (chain); | |
3129 } | |
3130 | |
3131 static Lisp_Object | |
3132 command_builder_find_leaf_1 (struct command_builder *builder) | |
3133 { | |
3134 Lisp_Object event0 = builder->current_events; | |
3135 | |
3136 if (NILP (event0)) | |
3137 return Qnil; | |
3138 | |
3139 return event_binding (event0, 1); | |
3140 } | |
3141 | |
1268 | 3142 static void |
3143 maybe_kbd_translate (Lisp_Object event) | |
3144 { | |
3145 Ichar c; | |
3146 int did_translate = 0; | |
3147 | |
3148 if (XEVENT_TYPE (event) != key_press_event) | |
3149 return; | |
3150 if (!HASH_TABLEP (Vkeyboard_translate_table)) | |
3151 return; | |
3152 if (EQ (Fhash_table_count (Vkeyboard_translate_table), Qzero)) | |
3153 return; | |
3154 | |
2828 | 3155 c = event_to_character (event, 0, 0); |
1268 | 3156 if (c != -1) |
3157 { | |
3158 Lisp_Object traduit = Fgethash (make_char (c), Vkeyboard_translate_table, | |
3159 Qnil); | |
3160 if (!NILP (traduit) && SYMBOLP (traduit)) | |
3161 { | |
3162 XSET_EVENT_KEY_KEYSYM (event, traduit); | |
3163 XSET_EVENT_KEY_MODIFIERS (event, 0); | |
3164 did_translate = 1; | |
3165 } | |
3166 else if (CHARP (traduit)) | |
3167 { | |
3168 /* This used to call Fcharacter_to_event() directly into EVENT, | |
3169 but that can eradicate timestamps and other such stuff. | |
3170 This way is safer. */ | |
3171 Lisp_Object ev2 = Fmake_event (Qnil, Qnil); | |
3172 | |
3173 character_to_event (XCHAR (traduit), XEVENT (ev2), | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3174 XCONSOLE (XEVENT_CHANNEL (event)), |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3175 high_bit_is_meta, 1); |
1268 | 3176 XSET_EVENT_KEY_KEYSYM (event, XEVENT_KEY_KEYSYM (ev2)); |
3177 XSET_EVENT_KEY_MODIFIERS (event, XEVENT_KEY_MODIFIERS (ev2)); | |
3178 Fdeallocate_event (ev2); | |
3179 did_translate = 1; | |
3180 } | |
3181 } | |
3182 | |
3183 if (!did_translate) | |
3184 { | |
3185 Lisp_Object traduit = Fgethash (XEVENT_KEY_KEYSYM (event), | |
3186 Vkeyboard_translate_table, Qnil); | |
3187 if (!NILP (traduit) && SYMBOLP (traduit)) | |
3188 { | |
3189 XSET_EVENT_KEY_KEYSYM (event, traduit); | |
3190 did_translate = 1; | |
3191 } | |
3192 else if (CHARP (traduit)) | |
3193 { | |
3194 /* This used to call Fcharacter_to_event() directly into EVENT, | |
3195 but that can eradicate timestamps and other such stuff. | |
3196 This way is safer. */ | |
3197 Lisp_Object ev2 = Fmake_event (Qnil, Qnil); | |
3198 | |
3199 character_to_event (XCHAR (traduit), XEVENT (ev2), | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3200 XCONSOLE (XEVENT_CHANNEL (event)), |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3201 high_bit_is_meta, 1); |
1268 | 3202 XSET_EVENT_KEY_KEYSYM (event, XEVENT_KEY_KEYSYM (ev2)); |
3203 XSET_EVENT_KEY_MODIFIERS (event, | |
3204 XEVENT_KEY_MODIFIERS (event) | | |
3205 XEVENT_KEY_MODIFIERS (ev2)); | |
3206 | |
3207 Fdeallocate_event (ev2); | |
3208 did_translate = 1; | |
3209 } | |
3210 } | |
3211 | |
3212 #ifdef DEBUG_XEMACS | |
3213 if (did_translate) | |
3214 DEBUG_PRINT_EMACS_EVENT ("->keyboard-translate-table", event); | |
3215 #endif | |
3216 } | |
3217 | |
428 | 3218 /* See if we can do function-key-map or key-translation-map translation |
3219 on the current events in the command builder. If so, do this, and | |
771 | 3220 return the resulting binding, if any. |
3221 | |
3222 DID_MUNGE must be initialized before calling this function. If munging | |
3223 happened, DID_MUNGE will be non-zero; otherwise, it will be left alone. | |
3224 */ | |
428 | 3225 |
3226 static Lisp_Object | |
3227 munge_keymap_translate (struct command_builder *builder, | |
3228 enum munge_me_out_the_door munge, | |
771 | 3229 int has_normal_binding_p, int *did_munge) |
428 | 3230 { |
3231 Lisp_Object suffix; | |
3232 | |
1204 | 3233 EVENT_CHAIN_LOOP (suffix, builder->first_mungeable_event[munge]) |
428 | 3234 { |
3235 Lisp_Object result = munging_key_map_event_binding (suffix, munge); | |
3236 | |
3237 if (NILP (result)) | |
3238 continue; | |
3239 | |
3240 if (KEYMAPP (result)) | |
3241 { | |
3242 if (NILP (builder->last_non_munged_event) | |
3243 && !has_normal_binding_p) | |
3244 builder->last_non_munged_event = builder->most_current_event; | |
3245 } | |
3246 else | |
3247 builder->last_non_munged_event = Qnil; | |
3248 | |
3249 if (!KEYMAPP (result) && | |
3250 !VECTORP (result) && | |
3251 !STRINGP (result)) | |
3252 { | |
3253 struct gcpro gcpro1; | |
3254 GCPRO1 (suffix); | |
3255 result = call1 (result, Qnil); | |
3256 UNGCPRO; | |
3257 if (NILP (result)) | |
3258 return Qnil; | |
3259 } | |
3260 | |
3261 if (KEYMAPP (result)) | |
3262 return result; | |
3263 | |
3264 if (VECTORP (result) || STRINGP (result)) | |
3265 { | |
3266 Lisp_Object new_chain = key_sequence_to_event_chain (result); | |
3267 Lisp_Object tempev; | |
3268 | |
3269 /* If the first_mungeable_event of the other munger is | |
3270 within the events we're munging, then it will point to | |
3271 deallocated events afterwards, which is bad -- so make it | |
3272 point at the beginning of the munged events. */ | |
3273 EVENT_CHAIN_LOOP (tempev, suffix) | |
3274 { | |
3275 Lisp_Object *mungeable_event = | |
1204 | 3276 &builder->first_mungeable_event[1 - munge]; |
428 | 3277 if (EQ (tempev, *mungeable_event)) |
3278 { | |
3279 *mungeable_event = new_chain; | |
3280 break; | |
3281 } | |
3282 } | |
3283 | |
771 | 3284 /* Now munge the current event chain in the command builder. */ |
428 | 3285 command_builder_replace_suffix (builder, suffix, new_chain); |
1204 | 3286 builder->first_mungeable_event[munge] = Qnil; |
771 | 3287 |
3288 *did_munge = 1; | |
428 | 3289 |
793 | 3290 return command_builder_find_leaf_1 (builder); |
428 | 3291 } |
3292 | |
563 | 3293 signal_error (Qinvalid_key_binding, |
3294 (munge == MUNGE_ME_FUNCTION_KEY ? | |
3295 "Invalid binding in function-key-map" : | |
3296 "Invalid binding in key-translation-map"), | |
3297 result); | |
428 | 3298 } |
3299 | |
3300 return Qnil; | |
3301 } | |
3302 | |
2828 | 3303 /* Same as command_builder_find_leaf() below, but without offering the |
3304 platform-specific event code the opportunity to give a default binding of | |
3305 an unseen keysym to self-insert-command, and without the fallback to | |
3306 other keymaps for lookups that allows someone with a Cyrillic keyboard | |
3307 to pretend it's Qwerty for C-x C-f, for example. */ | |
771 | 3308 |
428 | 3309 static Lisp_Object |
2828 | 3310 command_builder_find_leaf_no_jit_binding (struct command_builder *builder, |
771 | 3311 int allow_misc_user_events_p, |
3312 int *did_munge) | |
428 | 3313 { |
3314 /* This function can GC */ | |
3315 Lisp_Object result; | |
3316 Lisp_Object evee = builder->current_events; | |
3317 | |
3318 if (XEVENT_TYPE (evee) == misc_user_event) | |
3319 { | |
3320 if (allow_misc_user_events_p && (NILP (XEVENT_NEXT (evee)))) | |
1204 | 3321 return list2 (XEVENT_EVAL_FUNCTION (evee), |
3322 XEVENT_EVAL_OBJECT (evee)); | |
428 | 3323 else |
3324 return Qnil; | |
3325 } | |
3326 | |
442 | 3327 /* if we're currently in a menu accelerator, check there for further |
3328 events */ | |
3329 /* #### fuck me! who wrote this crap? think "abstraction", baby. */ | |
771 | 3330 /* #### this horribly-written crap can mess with global state, which |
3331 this function should not do. i'm not fixing it now. someone | |
3332 needs to go and rewrite that shit correctly. --ben */ | |
1268 | 3333 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID) |
442 | 3334 if (x_kludge_lw_menu_active ()) |
428 | 3335 { |
3336 return command_builder_operate_menu_accelerator (builder); | |
3337 } | |
3338 else | |
3339 { | |
3340 result = Qnil; | |
3341 if (EQ (Vmenu_accelerator_enabled, Qmenu_force)) | |
3342 result = command_builder_find_menu_accelerator (builder); | |
3343 if (NILP (result)) | |
3344 #endif | |
3345 result = command_builder_find_leaf_1 (builder); | |
1268 | 3346 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID) |
428 | 3347 if (NILP (result) |
3348 && EQ (Vmenu_accelerator_enabled, Qmenu_fallback)) | |
3349 result = command_builder_find_menu_accelerator (builder); | |
3350 } | |
3351 #endif | |
3352 | |
3353 /* Check to see if we have a potential function-key-map match. */ | |
3354 if (NILP (result)) | |
771 | 3355 result = munge_keymap_translate (builder, MUNGE_ME_FUNCTION_KEY, 0, |
3356 did_munge); | |
3357 | |
428 | 3358 /* Check to see if we have a potential key-translation-map match. */ |
3359 { | |
3360 Lisp_Object key_translate_result = | |
3361 munge_keymap_translate (builder, MUNGE_ME_KEY_TRANSLATION, | |
771 | 3362 !NILP (result), did_munge); |
428 | 3363 if (!NILP (key_translate_result)) |
771 | 3364 result = key_translate_result; |
428 | 3365 } |
3366 | |
3367 if (!NILP (result)) | |
3368 return result; | |
3369 | |
3370 /* If key-sequence wasn't bound, we'll try some fallbacks. */ | |
3371 | |
3372 /* If we didn't find a binding, and the last event in the sequence is | |
3373 a shifted character, then try again with the lowercase version. */ | |
3374 | |
3375 if (XEVENT_TYPE (builder->most_current_event) == key_press_event | |
3376 && !NILP (Vretry_undefined_key_binding_unshifted)) | |
3377 { | |
1204 | 3378 if (event_upshifted_p (builder->most_current_event)) |
428 | 3379 { |
771 | 3380 Lisp_Object neubauten = copy_command_builder (builder, 0); |
3381 struct command_builder *neub = XCOMMAND_BUILDER (neubauten); | |
3382 struct gcpro gcpro1; | |
3383 | |
3384 GCPRO1 (neubauten); | |
1204 | 3385 downshift_event (event_chain_tail (neub->current_events)); |
771 | 3386 result = |
2828 | 3387 command_builder_find_leaf_no_jit_binding |
771 | 3388 (neub, allow_misc_user_events_p, did_munge); |
3389 | |
428 | 3390 if (!NILP (result)) |
771 | 3391 { |
3392 copy_command_builder (neub, builder); | |
3393 *did_munge = 1; | |
3394 } | |
3395 free_command_builder (neub); | |
3396 UNGCPRO; | |
3397 if (!NILP (result)) | |
428 | 3398 return result; |
3399 } | |
3400 } | |
3401 | |
3402 /* help-char is `auto-bound' in every keymap */ | |
3403 if (!NILP (Vprefix_help_command) && | |
1204 | 3404 event_matches_key_specifier_p (builder->most_current_event, Vhelp_char)) |
428 | 3405 return Vprefix_help_command; |
3406 | |
771 | 3407 return Qnil; |
3408 } | |
3409 | |
3410 /* Compare the current state of the command builder against the local and | |
3411 global keymaps, and return the binding. If there is no match, try again, | |
3412 case-insensitively. The return value will be one of: | |
3413 -- nil (there is no binding) | |
3414 -- a keymap (part of a command has been specified) | |
3415 -- a command (anything that satisfies `commandp'; this includes | |
3416 some symbols, lists, subrs, strings, vectors, and | |
3417 compiled-function objects) | |
3418 | |
3419 This may "munge" the current event chain in the command builder; | |
3420 i.e. the sequence might be mutated into a different sequence, | |
3421 which we then pretend is what the user actually typed instead of | |
3422 the passed-in sequence. This happens as a result of: | |
3423 | |
3424 -- key-translation-map changes | |
3425 -- function-key-map changes | |
3426 -- retry-undefined-key-binding-unshifted (q.v.) | |
3427 -- "Russian C-x problem" changes (see definition of struct key_data, | |
3428 events.h) | |
3429 | |
3430 DID_MUNGE must be initialized before calling this function. If munging | |
3431 happened, DID_MUNGE will be non-zero; otherwise, it will be left alone. | |
2828 | 3432 |
3433 (The above was Ben, I think.) | |
3434 | |
3435 It might be nice to have lookup-key call this function, directly or | |
3436 indirectly. Though it is arguably the right thing if lookup-key fails on | |
3437 a keysym that the X11 event code hasn't seen. There's no way to know if | |
3438 that keysym is generatable by the keyboard until it's generated, | |
3439 therefore there's no reasonable expectation that it be bound before it's | |
3440 generated--all the other default bindings depend on our knowing the | |
3441 keyboard layout and relying on it. And describe-key works without it, so | |
3442 I think we're fine. | |
3443 | |
3444 Some weirdness with this code--try this on a keyboard where X11 will | |
3445 produce ediaeresis with dead-diaeresis and e, but it's not produced by | |
3446 any other combination of keys on the keyboard; | |
3447 | |
3448 (defun ding-command () | |
3449 (interactive) | |
3450 (ding)) | |
3451 | |
3452 (define-key global-map 'ediaeresis 'ding-command) | |
3453 | |
3454 Now, pressing dead-diaeresis and then e will ding. Next; | |
3455 | |
3456 (define-key global-map 'ediaeresis 'self-insert-command) | |
3457 | |
3458 and press dead-diaeresis and then e. It'll give you "Invalid argument: | |
3459 typed key has no ASCII equivalent" Then; | |
3460 | |
3461 (define-key global-map 'ediaeresis nil) | |
3462 | |
3463 and press the combination again; it'll self-insert. The moral of the | |
3464 story is, if you want to suppress all bindings to a non-ASCII X11 key, | |
3465 bind it to a trivial no-op command, because the automatic mapping to | |
3466 self-insert-command will happen if there's no existing binding for the | |
3467 symbol. I can't see a way around this. -- Aidan Kehoe, 2005-05-14 */ | |
771 | 3468 |
3469 static Lisp_Object | |
3470 command_builder_find_leaf (struct command_builder *builder, | |
3471 int allow_misc_user_events_p, | |
3472 int *did_munge) | |
3473 { | |
3474 Lisp_Object result = | |
2828 | 3475 command_builder_find_leaf_no_jit_binding |
771 | 3476 (builder, allow_misc_user_events_p, did_munge); |
2828 | 3477 Lisp_Object event, console, channel, lookup_res; |
3478 int redolookup = 0, i; | |
771 | 3479 |
3480 if (!NILP (result)) | |
3481 return result; | |
3482 | |
2828 | 3483 /* If some of the events are keyboard events, and this is the first time |
3484 the platform event code has seen their keysyms--which will be the case | |
3485 the first time we see a composed keysym on X11, for example--offer it | |
3486 the chance to define them as a self-insert-command, and do the lookup | |
3487 again. | |
3488 | |
3489 This isn't Mule-specific; in a world where x-iso8859-1.el is gone, it's | |
3490 needed for non-Mule too. | |
3491 | |
3492 Probably this can just be limited to the checking the last | |
3493 keypress. */ | |
3494 | |
3495 EVENT_CHAIN_LOOP (event, builder->current_events) | |
3496 { | |
3497 /* We can ignore key release events because the preceding presses will | |
3498 have initiated the mapping. */ | |
3499 if (key_press_event != XEVENT_TYPE (event)) | |
3500 continue; | |
3501 | |
3502 channel = XEVENT_CHANNEL (event); | |
3503 if (object_dead_p (channel)) | |
3504 continue; | |
3505 | |
3506 console = CDFW_CONSOLE (channel); | |
3507 if (NILP (console)) | |
3508 console = Vselected_console; | |
3509 | |
3510 if (CONSOLE_LIVE_P(XCONSOLE(console))) | |
3511 { | |
3512 lookup_res = MAYBE_LISP_CONMETH(XCONSOLE(console), | |
3513 perhaps_init_unseen_key_defaults, | |
3514 (XCONSOLE(console), | |
3515 XEVENT_KEY_KEYSYM(event))); | |
3516 if (EQ(lookup_res, Qt)) | |
3517 { | |
3518 redolookup += 1; | |
3519 } | |
3520 } | |
3521 } | |
3522 | |
3523 if (redolookup) | |
428 | 3524 { |
2828 | 3525 result = command_builder_find_leaf_no_jit_binding |
3526 (builder, allow_misc_user_events_p, did_munge); | |
3527 if (!NILP (result)) | |
3528 { | |
3529 return result; | |
3530 } | |
3531 } | |
3532 | |
3533 /* The old composed-character-default-binding handling that used to be | |
3534 here was wrong--if a user wants to bind a given key to something other | |
3535 than self-insert-command, then they should go ahead and do it, we won't | |
3536 override it, and the sane thing to do with any key that has a known | |
3537 character correspondence is _always_ to default it to | |
3538 self-insert-command, nothing else. | |
3539 | |
3540 I'm adding the variable to control whether "Russian C-x processing" is | |
3541 used because I have a feeling that it's not always the most appropriate | |
3542 thing to do--in cases where people are using a non-Qwerty | |
3543 Roman-alphabet layout, do they really want C-x with some random letter | |
3544 to call `switch-to-buffer'? I can imagine that being very confusing, | |
3545 certainly for new users, and it might be that defaulting the value for | |
3546 `try-alternate-layouts-for-commands' as part of the language | |
3547 environment is the right thing to do, only defaulting to `t' for those | |
3548 languages that don't use the Roman alphabet. | |
3549 | |
3550 Much of that reasoning is tentative on my part, and feel free to change | |
3551 this code if you have more experience with the problem and an intuition | |
3552 that differs from mine. (Aidan Kehoe, 2005-05-29)*/ | |
3553 | |
3554 if (!try_alternate_layouts_for_commands) | |
3555 { | |
3556 return Qnil; | |
428 | 3557 } |
2828 | 3558 |
3559 if (key_press_event == XEVENT_TYPE (builder->most_current_event)) | |
3560 { | |
3561 Lisp_Object ev = builder->most_current_event, newbuilder; | |
3562 Ichar this_alternative; | |
3563 | |
3564 struct command_builder *newb; | |
3565 struct gcpro gcpro1; | |
3566 | |
3567 /* Ignore the value for CURRENT_LANGENV, because we've checked it | |
3568 already, above. */ | |
3569 for (i = KEYCHAR_CURRENT_LANGENV, ++i; i < KEYCHAR_LAST; ++i) | |
3570 { | |
3571 this_alternative = XEVENT_KEY_ALT_KEYCHARS(ev, i); | |
3572 | |
3573 if (0 == this_alternative) | |
3574 continue; | |
3575 | |
3576 newbuilder = copy_command_builder(builder, 0); | |
3577 GCPRO1(newbuilder); | |
3578 | |
3579 newb = XCOMMAND_BUILDER(newbuilder); | |
3580 | |
2830 | 3581 XSET_EVENT_KEY_KEYSYM(event_chain_tail |
3582 (XCOMMAND_BUILDER(newbuilder)->current_events), | |
2828 | 3583 make_char(this_alternative)); |
3584 | |
3585 result = command_builder_find_leaf_no_jit_binding | |
3586 (newb, allow_misc_user_events_p, did_munge); | |
3587 | |
3588 if (!NILP (result)) | |
3589 { | |
3590 copy_command_builder (newb, builder); | |
3591 *did_munge = 1; | |
3592 } | |
2830 | 3593 else if (event_upshifted_p |
3594 (XCOMMAND_BUILDER(newbuilder)->most_current_event) && | |
2828 | 3595 !NILP (Vretry_undefined_key_binding_unshifted) |
3596 && isascii(this_alternative)) | |
3597 { | |
2830 | 3598 downshift_event (event_chain_tail |
3599 (XCOMMAND_BUILDER(newbuilder)->current_events)); | |
3600 XSET_EVENT_KEY_KEYSYM(event_chain_tail | |
3601 (newb->current_events), | |
2828 | 3602 make_char(tolower(this_alternative))); |
3603 result = command_builder_find_leaf_no_jit_binding | |
3604 (newb, allow_misc_user_events_p, did_munge); | |
3605 } | |
3606 | |
3607 free_command_builder (newb); | |
3608 UNGCPRO; | |
3609 | |
3610 if (!NILP (result)) | |
3611 return result; | |
3612 } | |
3613 } | |
428 | 3614 |
3615 return Qnil; | |
3616 } | |
3617 | |
771 | 3618 /* Like command_builder_find_leaf but update this-command-keys and the |
3619 echo area as necessary when the current event chain was munged. */ | |
3620 | |
3621 static Lisp_Object | |
3622 command_builder_find_leaf_and_update_global_state (struct command_builder * | |
3623 builder, | |
3624 int | |
3625 allow_misc_user_events_p) | |
3626 { | |
3627 int did_munge = 0; | |
3628 int orig_length = event_chain_count (builder->current_events); | |
3629 Lisp_Object result = command_builder_find_leaf (builder, | |
3630 allow_misc_user_events_p, | |
3631 &did_munge); | |
3632 | |
3633 if (did_munge) | |
3634 { | |
3635 int tck_length = event_chain_count (Vthis_command_keys); | |
3636 | |
3637 /* We just assume that the events we just replaced are | |
3638 sitting in copied form at the end of this-command-keys. | |
3639 If the user did weird things with `dispatch-event' this | |
3640 may not be the case, but at least we make sure we won't | |
3641 crash. */ | |
3642 | |
3643 if (tck_length >= orig_length) | |
3644 { | |
3645 Lisp_Object new_chain = | |
3646 copy_event_chain (builder->current_events); | |
3647 this_command_keys_replace_suffix | |
3648 (event_chain_nth (Vthis_command_keys, tck_length - orig_length), | |
3649 new_chain); | |
3650 | |
3651 regenerate_echo_keys_from_this_command_keys (builder); | |
3652 } | |
3653 } | |
3654 | |
3655 if (NILP (result)) | |
3656 { | |
3657 /* If we read extra events attempting to match a function key but end | |
3658 up failing, then we release those events back to the command loop | |
3659 and fail on the original lookup. The released events will then be | |
3660 reprocessed in the context of the first part having failed. */ | |
3661 if (!NILP (builder->last_non_munged_event)) | |
3662 { | |
3663 Lisp_Object event0 = builder->last_non_munged_event; | |
3664 | |
3665 /* Put the commands back on the event queue. */ | |
3666 enqueue_event_chain (XEVENT_NEXT (event0), | |
3667 &command_event_queue, | |
3668 &command_event_queue_tail); | |
3669 | |
3670 /* Then remove them from the command builder. */ | |
3671 XSET_EVENT_NEXT (event0, Qnil); | |
3672 builder->most_current_event = event0; | |
3673 builder->last_non_munged_event = Qnil; | |
3674 } | |
3675 } | |
3676 | |
3677 return result; | |
3678 } | |
428 | 3679 |
3680 /* Every time a command-event (a key, button, or menu selection) is read by | |
3681 Fnext_event(), it is stored in the recent_keys_ring, in Vlast_input_event, | |
3682 and in Vthis_command_keys. (Eval-events are not stored there.) | |
3683 | |
3684 Every time a command is invoked, Vlast_command_event is set to the last | |
3685 event in the sequence. | |
3686 | |
3687 This means that Vthis_command_keys is really about "input read since the | |
3688 last command was executed" rather than about "what keys invoked this | |
3689 command." This is a little counterintuitive, but that's the way it | |
3690 has always worked. | |
3691 | |
3692 As an extra kink, the function read-key-sequence resets/updates the | |
3693 last-command-event and this-command-keys. It doesn't append to the | |
3694 command-keys as read-char does. Such are the pitfalls of having to | |
3695 maintain compatibility with a program for which the only specification | |
3696 is the code itself. | |
3697 | |
3698 (We could implement recent_keys_ring and Vthis_command_keys as the same | |
3699 data structure.) | |
3700 */ | |
3701 | |
3702 DEFUN ("recent-keys", Frecent_keys, 0, 1, 0, /* | |
3703 Return a vector of recent keyboard or mouse button events read. | |
3704 If NUMBER is non-nil, not more than NUMBER events will be returned. | |
3705 Change number of events stored using `set-recent-keys-ring-size'. | |
3706 | |
3707 This copies the event objects into a new vector; it is safe to keep and | |
3708 modify them. | |
3709 */ | |
3710 (number)) | |
3711 { | |
3712 struct gcpro gcpro1; | |
3713 Lisp_Object val = Qnil; | |
3714 int nwanted; | |
3715 int start, nkeys, i, j; | |
3716 GCPRO1 (val); | |
3717 | |
3718 if (NILP (number)) | |
3719 nwanted = recent_keys_ring_size; | |
3720 else | |
3721 { | |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3722 check_integer_range (number, Qzero, |
5736
3192994c49ca
Convert C (un)signed long long values to bignums properly.
Jerry James <james@xemacs.org>
parents:
5722
diff
changeset
|
3723 make_fixnum (ARRAY_DIMENSION_LIMIT)); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3724 nwanted = XFIXNUM (number); |
428 | 3725 } |
3726 | |
3727 /* Create the keys ring vector, if none present. */ | |
3728 if (NILP (Vrecent_keys_ring)) | |
3729 { | |
3730 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil); | |
3731 /* And return nothing in particular. */ | |
446 | 3732 RETURN_UNGCPRO (make_vector (0, Qnil)); |
428 | 3733 } |
3734 | |
3735 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index])) | |
3736 /* This means the vector has not yet wrapped */ | |
3737 { | |
3738 nkeys = recent_keys_ring_index; | |
3739 start = 0; | |
3740 } | |
3741 else | |
3742 { | |
3743 nkeys = recent_keys_ring_size; | |
3744 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index); | |
3745 } | |
3746 | |
3747 if (nwanted < nkeys) | |
3748 { | |
3749 start += nkeys - nwanted; | |
3750 if (start >= recent_keys_ring_size) | |
3751 start -= recent_keys_ring_size; | |
3752 nkeys = nwanted; | |
3753 } | |
3754 else | |
3755 nwanted = nkeys; | |
3756 | |
3757 val = make_vector (nwanted, Qnil); | |
3758 | |
3759 for (i = 0, j = start; i < nkeys; i++) | |
3760 { | |
3761 Lisp_Object e = XVECTOR_DATA (Vrecent_keys_ring)[j]; | |
3762 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
4976
diff
changeset
|
3763 assert (!NILP (e)); |
428 | 3764 XVECTOR_DATA (val)[i] = Fcopy_event (e, Qnil); |
3765 if (++j >= recent_keys_ring_size) | |
3766 j = 0; | |
3767 } | |
3768 UNGCPRO; | |
3769 return val; | |
3770 } | |
3771 | |
3772 | |
3773 DEFUN ("recent-keys-ring-size", Frecent_keys_ring_size, 0, 0, 0, /* | |
3774 The maximum number of events `recent-keys' can return. | |
3775 */ | |
3776 ()) | |
3777 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3778 return make_fixnum (recent_keys_ring_size); |
428 | 3779 } |
3780 | |
3781 DEFUN ("set-recent-keys-ring-size", Fset_recent_keys_ring_size, 1, 1, 0, /* | |
3782 Set the maximum number of events to be stored internally. | |
3783 */ | |
3784 (size)) | |
3785 { | |
3786 Lisp_Object new_vector = Qnil; | |
3787 int i, j, nkeys, start, min; | |
3788 struct gcpro gcpro1; | |
3789 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3790 CHECK_FIXNUM (size); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3791 if (XFIXNUM (size) <= 0) |
563 | 3792 invalid_argument ("Recent keys ring size must be positive", size); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3793 if (XFIXNUM (size) == recent_keys_ring_size) |
428 | 3794 return size; |
3795 | |
446 | 3796 GCPRO1 (new_vector); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3797 new_vector = make_vector (XFIXNUM (size), Qnil); |
428 | 3798 |
3799 if (NILP (Vrecent_keys_ring)) | |
3800 { | |
3801 Vrecent_keys_ring = new_vector; | |
446 | 3802 RETURN_UNGCPRO (size); |
428 | 3803 } |
3804 | |
3805 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index])) | |
3806 /* This means the vector has not yet wrapped */ | |
3807 { | |
3808 nkeys = recent_keys_ring_index; | |
3809 start = 0; | |
3810 } | |
3811 else | |
3812 { | |
3813 nkeys = recent_keys_ring_size; | |
3814 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index); | |
3815 } | |
3816 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3817 if (XFIXNUM (size) > nkeys) |
428 | 3818 min = nkeys; |
3819 else | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3820 min = XFIXNUM (size); |
428 | 3821 |
3822 for (i = 0, j = start; i < min; i++) | |
3823 { | |
3824 XVECTOR_DATA (new_vector)[i] = XVECTOR_DATA (Vrecent_keys_ring)[j]; | |
3825 if (++j >= recent_keys_ring_size) | |
3826 j = 0; | |
3827 } | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
3828 recent_keys_ring_size = XFIXNUM (size); |
428 | 3829 recent_keys_ring_index = (i < recent_keys_ring_size) ? i : 0; |
3830 | |
3831 Vrecent_keys_ring = new_vector; | |
3832 | |
3833 UNGCPRO; | |
3834 return size; | |
3835 } | |
3836 | |
3837 /* Vthis_command_keys having value Qnil means that the next time | |
3838 push_this_command_keys is called, it should start over. | |
3839 The times at which the command-keys are reset | |
3840 (instead of merely being augmented) are pretty counterintuitive. | |
3841 (More specifically: | |
3842 | |
3843 -- We do not reset this-command-keys when we finish reading a | |
3844 command. This is because some commands (e.g. C-u) act | |
3845 like command prefixes; they signal this by setting prefix-arg | |
3846 to non-nil. | |
3847 -- Therefore, we reset this-command-keys when we finish | |
3848 executing a command, unless prefix-arg is set. | |
3849 -- However, if we ever do a non-local exit out of a command | |
3850 loop (e.g. an error in a command), we need to reset | |
3851 this-command-keys. We do this by calling reset_this_command_keys() | |
3852 from cmdloop.c, whenever an error causes an invocation of the | |
3853 default error handler, and whenever there's a throw to top-level.) | |
3854 */ | |
3855 | |
3856 void | |
3857 reset_this_command_keys (Lisp_Object console, int clear_echo_area_p) | |
3858 { | |
757 | 3859 if (!NILP (console)) |
3860 { | |
3861 /* console is nil if we just deleted the console as a result of C-x 5 | |
3862 0. Unfortunately things are currently in a messy situation where | |
3863 some stuff is console-local and other stuff isn't, so we need to | |
3864 do everything that's not console-local. */ | |
3865 struct command_builder *command_builder = | |
3866 XCOMMAND_BUILDER (XCONSOLE (console)->command_builder); | |
3867 | |
3868 reset_key_echo (command_builder, clear_echo_area_p); | |
3869 reset_current_events (command_builder); | |
3870 } | |
3871 else | |
3872 reset_key_echo (0, clear_echo_area_p); | |
428 | 3873 |
3874 deallocate_event_chain (Vthis_command_keys); | |
3875 Vthis_command_keys = Qnil; | |
3876 Vthis_command_keys_tail = Qnil; | |
3877 } | |
3878 | |
3879 static void | |
3880 push_this_command_keys (Lisp_Object event) | |
3881 { | |
3025 | 3882 Lisp_Object new_ = Fmake_event (Qnil, Qnil); |
3883 | |
3884 Fcopy_event (event, new_); | |
3885 enqueue_event (new_, &Vthis_command_keys, &Vthis_command_keys_tail); | |
428 | 3886 } |
3887 | |
3888 /* The following two functions are used in call-interactively, | |
3889 for the @ and e specifications. We used to just use | |
3890 `current-mouse-event' (i.e. the last mouse event in this-command-keys), | |
3891 but FSF does it more generally so we follow their lead. */ | |
3892 | |
3893 Lisp_Object | |
3894 extract_this_command_keys_nth_mouse_event (int n) | |
3895 { | |
3896 Lisp_Object event; | |
3897 | |
3898 EVENT_CHAIN_LOOP (event, Vthis_command_keys) | |
3899 { | |
3900 if (EVENTP (event) | |
3901 && (XEVENT_TYPE (event) == button_press_event | |
3902 || XEVENT_TYPE (event) == button_release_event | |
3903 || XEVENT_TYPE (event) == misc_user_event)) | |
3904 { | |
3905 if (!n) | |
3906 { | |
2500 | 3907 /* must copy to avoid an ABORT() in next_event_internal() */ |
428 | 3908 if (!NILP (XEVENT_NEXT (event))) |
3909 return Fcopy_event (event, Qnil); | |
3910 else | |
3911 return event; | |
3912 } | |
3913 n--; | |
3914 } | |
3915 } | |
3916 | |
3917 return Qnil; | |
3918 } | |
3919 | |
3920 Lisp_Object | |
3921 extract_vector_nth_mouse_event (Lisp_Object vector, int n) | |
3922 { | |
3923 int i; | |
3924 int len = XVECTOR_LENGTH (vector); | |
3925 | |
3926 for (i = 0; i < len; i++) | |
3927 { | |
3928 Lisp_Object event = XVECTOR_DATA (vector)[i]; | |
3929 if (EVENTP (event)) | |
3930 switch (XEVENT_TYPE (event)) | |
3931 { | |
3932 case button_press_event : | |
3933 case button_release_event : | |
3934 case misc_user_event : | |
3935 if (n == 0) | |
3936 return event; | |
3937 n--; | |
3938 break; | |
3939 default: | |
3940 continue; | |
3941 } | |
3942 } | |
3943 | |
3944 return Qnil; | |
3945 } | |
3946 | |
3947 static void | |
3948 push_recent_keys (Lisp_Object event) | |
3949 { | |
3950 Lisp_Object e; | |
3951 | |
3952 if (NILP (Vrecent_keys_ring)) | |
3953 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil); | |
3954 | |
3955 e = XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index]; | |
3956 | |
3957 if (NILP (e)) | |
3958 { | |
3959 e = Fmake_event (Qnil, Qnil); | |
3960 XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index] = e; | |
3961 } | |
3962 Fcopy_event (event, e); | |
3963 if (++recent_keys_ring_index == recent_keys_ring_size) | |
3964 recent_keys_ring_index = 0; | |
3965 } | |
3966 | |
3967 | |
3968 static Lisp_Object | |
3969 current_events_into_vector (struct command_builder *command_builder) | |
3970 { | |
3971 Lisp_Object vector; | |
3972 Lisp_Object event; | |
3973 int n = event_chain_count (command_builder->current_events); | |
3974 | |
3975 /* Copy the vector and the events in it. */ | |
3976 /* No need to copy the events, since they're already copies, and | |
3977 nobody other than the command-builder has pointers to them */ | |
3978 vector = make_vector (n, Qnil); | |
3979 n = 0; | |
3980 EVENT_CHAIN_LOOP (event, command_builder->current_events) | |
3981 XVECTOR_DATA (vector)[n++] = event; | |
3982 reset_command_builder_event_chain (command_builder); | |
3983 return vector; | |
3984 } | |
3985 | |
3986 | |
3987 /* | |
3988 Given the current state of the command builder and a new command event | |
3989 that has just been dispatched: | |
3990 | |
3991 -- add the event to the event chain forming the current command | |
3992 (doing meta-translation as necessary) | |
3993 -- return the binding of this event chain; this will be one of: | |
3994 -- nil (there is no binding) | |
3995 -- a keymap (part of a command has been specified) | |
3996 -- a command (anything that satisfies `commandp'; this includes | |
3997 some symbols, lists, subrs, strings, vectors, and | |
3998 compiled-function objects) | |
3999 */ | |
4000 static Lisp_Object | |
4001 lookup_command_event (struct command_builder *command_builder, | |
4002 Lisp_Object event, int allow_misc_user_events_p) | |
4003 { | |
4004 /* This function can GC */ | |
4005 struct frame *f = selected_frame (); | |
4006 /* Clear output from previous command execution */ | |
4007 if (!EQ (Qcommand, echo_area_status (f)) | |
4008 /* but don't let mouse-up clear what mouse-down just printed */ | |
4009 && (XEVENT (event)->event_type != button_release_event)) | |
4010 clear_echo_area (f, Qnil, 0); | |
4011 | |
4012 /* Add the given event to the command builder. | |
4013 Extra hack: this also updates the recent_keys_ring and Vthis_command_keys | |
4014 vectors to translate "ESC x" to "M-x" (for any "x" of course). | |
4015 */ | |
4016 { | |
4017 Lisp_Object recent = command_builder->most_current_event; | |
4018 | |
4019 if (EVENTP (recent) | |
1204 | 4020 && event_matches_key_specifier_p (recent, Vmeta_prefix_char)) |
428 | 4021 { |
440 | 4022 Lisp_Event *e; |
428 | 4023 /* When we see a sequence like "ESC x", pretend we really saw "M-x". |
4024 DoubleThink the recent-keys and this-command-keys as well. */ | |
4025 | |
4026 /* Modify the previous most-recently-pushed event on the command | |
4027 builder to be a copy of this one with the meta-bit set instead of | |
4028 pushing a new event. | |
4029 */ | |
4030 Fcopy_event (event, recent); | |
4031 e = XEVENT (recent); | |
934 | 4032 if (EVENT_TYPE (e) == key_press_event) |
1204 | 4033 SET_EVENT_KEY_MODIFIERS (e, EVENT_KEY_MODIFIERS (e) | |
4034 XEMACS_MOD_META); | |
934 | 4035 else if (EVENT_TYPE (e) == button_press_event |
4036 || EVENT_TYPE (e) == button_release_event) | |
1204 | 4037 SET_EVENT_BUTTON_MODIFIERS (e, EVENT_BUTTON_MODIFIERS (e) | |
4038 XEMACS_MOD_META); | |
428 | 4039 else |
2500 | 4040 ABORT (); |
428 | 4041 |
4042 { | |
4043 int tckn = event_chain_count (Vthis_command_keys); | |
4044 if (tckn >= 2) | |
4045 /* ??? very strange if it's < 2. */ | |
4046 this_command_keys_replace_suffix | |
4047 (event_chain_nth (Vthis_command_keys, tckn - 2), | |
4048 Fcopy_event (recent, Qnil)); | |
4049 } | |
4050 | |
4051 regenerate_echo_keys_from_this_command_keys (command_builder); | |
4052 } | |
4053 else | |
771 | 4054 command_builder_append_event (command_builder, event); |
428 | 4055 } |
4056 | |
4057 { | |
771 | 4058 Lisp_Object leaf = |
4059 command_builder_find_leaf_and_update_global_state | |
4060 (command_builder, | |
4061 allow_misc_user_events_p); | |
428 | 4062 struct gcpro gcpro1; |
4063 GCPRO1 (leaf); | |
4064 | |
4065 if (KEYMAPP (leaf)) | |
4066 { | |
442 | 4067 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID) |
4068 if (!x_kludge_lw_menu_active ()) | |
4069 #else | |
4070 if (1) | |
4071 #endif | |
428 | 4072 { |
4073 Lisp_Object prompt = Fkeymap_prompt (leaf, Qt); | |
4074 if (STRINGP (prompt)) | |
4075 { | |
4076 /* Append keymap prompt to key echo buffer */ | |
4077 int buf_index = command_builder->echo_buf_index; | |
4078 Bytecount len = XSTRING_LENGTH (prompt); | |
4079 | |
4080 if (len + buf_index + 1 <= command_builder->echo_buf_length) | |
4081 { | |
867 | 4082 Ibyte *echo = command_builder->echo_buf + buf_index; |
428 | 4083 memcpy (echo, XSTRING_DATA (prompt), len); |
4084 echo[len] = 0; | |
4085 } | |
4086 maybe_echo_keys (command_builder, 1); | |
4087 } | |
4088 else | |
4089 maybe_echo_keys (command_builder, 0); | |
4090 } | |
853 | 4091 /* #### i don't trust this at all. --ben */ |
4092 #if 0 | |
442 | 4093 else if (!NILP (Vquit_flag)) |
4094 { | |
4095 /* if quit happened during menu acceleration, pretend we read it */ | |
4096 struct console *con = XCONSOLE (Fselected_console ()); | |
1204 | 4097 |
4098 enqueue_command_event (Fcopy_event (CONSOLE_QUIT_EVENT (con), | |
4099 Qnil)); | |
442 | 4100 Vquit_flag = Qnil; |
4101 } | |
853 | 4102 #endif |
428 | 4103 } |
4104 else if (!NILP (leaf)) | |
4105 { | |
4106 if (EQ (Qcommand, echo_area_status (f)) | |
4107 && command_builder->echo_buf_index > 0) | |
4108 { | |
4109 /* If we had been echoing keys, echo the last one (without | |
4110 the trailing dash) and redisplay before executing the | |
4111 command. */ | |
4112 command_builder->echo_buf[command_builder->echo_buf_index] = 0; | |
4113 maybe_echo_keys (command_builder, 1); | |
4114 Fsit_for (Qzero, Qt); | |
4115 } | |
4116 } | |
4117 RETURN_UNGCPRO (leaf); | |
4118 } | |
4119 } | |
4120 | |
479 | 4121 static int |
4932 | 4122 is_scrollbar_event (Lisp_Object USED_IF_SCROLLBARS (event)) |
479 | 4123 { |
516 | 4124 #ifdef HAVE_SCROLLBARS |
479 | 4125 Lisp_Object fun; |
4126 | |
934 | 4127 if (XEVENT_TYPE (event) != misc_user_event) |
4128 return 0; | |
1204 | 4129 fun = XEVENT_MISC_USER_FUNCTION (event); |
479 | 4130 |
4131 return (EQ (fun, Qscrollbar_line_up) || | |
4132 EQ (fun, Qscrollbar_line_down) || | |
4133 EQ (fun, Qscrollbar_page_up) || | |
4134 EQ (fun, Qscrollbar_page_down) || | |
4135 EQ (fun, Qscrollbar_to_top) || | |
4136 EQ (fun, Qscrollbar_to_bottom) || | |
4137 EQ (fun, Qscrollbar_vertical_drag) || | |
4138 EQ (fun, Qscrollbar_char_left) || | |
4139 EQ (fun, Qscrollbar_char_right) || | |
4140 EQ (fun, Qscrollbar_page_left) || | |
4141 EQ (fun, Qscrollbar_page_right) || | |
4142 EQ (fun, Qscrollbar_to_left) || | |
4143 EQ (fun, Qscrollbar_to_right) || | |
4144 EQ (fun, Qscrollbar_horizontal_drag)); | |
516 | 4145 #else |
4146 return 0; | |
4147 #endif /* HAVE_SCROLLBARS */ | |
479 | 4148 } |
4149 | |
428 | 4150 static void |
4151 execute_command_event (struct command_builder *command_builder, | |
4152 Lisp_Object event) | |
4153 { | |
4154 /* This function can GC */ | |
4155 struct console *con = XCONSOLE (command_builder->console); | |
4156 struct gcpro gcpro1; | |
4157 | |
4158 GCPRO1 (event); /* event may be freshly created */ | |
444 | 4159 |
479 | 4160 /* #### This call to is_scrollbar_event() isn't quite right, but |
4161 fixing properly it requires more work than can go into 21.4. | |
4162 (We really need to split out menu, scrollbar, dialog, and other | |
4163 types of events from misc-user, and put the remaining ones in a | |
4164 new `user-eval' type that behaves like an eval event but is a | |
4165 user event and thus has all of its semantics -- e.g. being | |
4166 delayed during `accept-process-output' and similar wait states.) | |
4167 | |
4168 The real issue here is that "user events" and "command events" | |
4169 are not the same thing, but are very much confused in | |
4170 event-stream.c. User events are, essentially, any event that | |
4171 should be delayed by accept-process-output, should terminate a | |
4172 sit-for, etc. -- basically, any event that needs to be processed | |
4173 synchronously with key and mouse events. Command events are | |
4174 those that participate in command building; scrollbar events | |
4175 clearly don't belong because they should be transparent in a | |
4176 sequence like C-x @ h <scrollbar-drag> x, which used to cause a | |
4177 crash before checks similar to the is_scrollbar_event() call were | |
4178 added. Do other events belong with scrollbar events? I'm not | |
4179 sure; we need to categorize all misc-user events and see what | |
4180 their semantics are. | |
4181 | |
4182 (You might ask, why do scrollbar events need to be user events? | |
4183 That's a good question. The answer seems to be that they can | |
4184 change point, and having this happen asynchronously would be a | |
4185 very bad idea. According to the "proper" functioning of | |
4186 scrollbars, this should not happen, but XEmacs does not allow | |
4187 point to go outside of the window.) | |
4188 | |
4189 Scrollbar events and similar non-command events should obviously | |
4190 not be recorded in this-command-keys, so we need to check for | |
4191 this in next-event. | |
4192 | |
4193 #### We call reset_current_events() twice in this function -- | |
4194 #### here, and later as a result of reset_this_command_keys(). | |
4195 #### This is almost certainly wrong; need to figure out what's | |
4196 #### correct. | |
4197 | |
4198 #### We need to figure out what's really correct w.r.t. scrollbar | |
4199 #### events. With these new fixes in, it actually works to do | |
4200 #### C-x <scrollbar-drag> 5 2, but the key echo gets messed up | |
4201 #### (starts over at 5). We really need to be special-casing | |
4202 #### scrollbar events at a lower level, and not really passing | |
4203 #### them through the command builder at all. (e.g. do scrollbar | |
4204 #### events belong in macros??? doubtful; probably only the | |
4205 #### point movement, if any, belongs, special-cased as a | |
4206 #### pseudo-issued M-x goto-char command). #### Need more work | |
4207 #### here. Do this when separating out scrollbar events. | |
4208 */ | |
4209 | |
4210 if (!is_scrollbar_event (event)) | |
444 | 4211 reset_current_events (command_builder); |
428 | 4212 |
4213 switch (XEVENT (event)->event_type) | |
4214 { | |
4215 case key_press_event: | |
4216 Vcurrent_mouse_event = Qnil; | |
4217 break; | |
4218 case button_press_event: | |
4219 case button_release_event: | |
4220 case misc_user_event: | |
4221 Vcurrent_mouse_event = Fcopy_event (event, Qnil); | |
4222 break; | |
4223 default: break; | |
4224 } | |
4225 | |
4226 /* Store the last-command-event. The semantics of this is that it | |
4227 is the last event most recently involved in command-lookup. */ | |
4228 if (!EVENTP (Vlast_command_event)) | |
4229 Vlast_command_event = Fmake_event (Qnil, Qnil); | |
4230 if (XEVENT (Vlast_command_event)->event_type == dead_event) | |
4231 { | |
4232 Vlast_command_event = Fmake_event (Qnil, Qnil); | |
563 | 4233 invalid_state ("Someone deallocated the last-command-event!", Qunbound); |
428 | 4234 } |
4235 | |
4236 if (! EQ (event, Vlast_command_event)) | |
4237 Fcopy_event (event, Vlast_command_event); | |
4238 | |
4239 /* Note that last-command-char will never have its high-bit set, in | |
4240 an effort to sidestep the ambiguity between M-x and oslash. */ | |
4241 Vlast_command_char = Fevent_to_character (Vlast_command_event, | |
2862 | 4242 Qnil, Qnil, Qnil); |
428 | 4243 |
4244 /* Actually call the command, with all sorts of hair to preserve or clear | |
4245 the echo-area and region as appropriate and call the pre- and post- | |
4246 command-hooks. */ | |
4247 { | |
4248 int old_kbd_macro = con->kbd_macro_end; | |
4249 struct window *w = XWINDOW (Fselected_window (Qnil)); | |
4250 | |
4251 /* We're executing a new command, so the old value is irrelevant. */ | |
4252 zmacs_region_stays = 0; | |
4253 | |
4254 /* If the previous command tried to force a specific window-start, | |
4255 reset the flag in case this command moves point far away from | |
4256 that position. Also, reset the window's buffer's change | |
4257 information so that we don't trigger an incremental update. */ | |
4258 if (w->force_start) | |
4259 { | |
4260 w->force_start = 0; | |
4261 buffer_reset_changes (XBUFFER (w->buffer)); | |
4262 } | |
4263 | |
4264 pre_command_hook (); | |
4265 | |
934 | 4266 if (XEVENT_TYPE (event) == misc_user_event) |
4267 { | |
1204 | 4268 call1 (XEVENT_MISC_USER_FUNCTION (event), |
4269 XEVENT_MISC_USER_OBJECT (event)); | |
934 | 4270 } |
428 | 4271 else |
4272 { | |
4273 Fcommand_execute (Vthis_command, Qnil, Qnil); | |
4274 } | |
4275 | |
4276 post_command_hook (); | |
4277 | |
757 | 4278 /* Console might have been deleted by command */ |
4279 if (CONSOLE_LIVE_P (con) && !NILP (con->prefix_arg)) | |
428 | 4280 { |
4281 /* Commands that set the prefix arg don't update last-command, don't | |
4282 reset the echoing state, and don't go into keyboard macros unless | |
444 | 4283 followed by another command. Also don't quit here. */ |
4284 int speccount = specpdl_depth (); | |
4285 specbind (Qinhibit_quit, Qt); | |
428 | 4286 maybe_echo_keys (command_builder, 0); |
771 | 4287 unbind_to (speccount); |
428 | 4288 |
4289 /* If we're recording a keyboard macro, and the last command | |
4290 executed set a prefix argument, then decrement the pointer to | |
4291 the "last character really in the macro" to be just before this | |
4292 command. This is so that the ^U in "^U ^X )" doesn't go onto | |
4293 the end of macro. */ | |
4294 if (!NILP (con->defining_kbd_macro)) | |
4295 con->kbd_macro_end = old_kbd_macro; | |
4296 } | |
4297 else | |
4298 { | |
4299 /* Start a new command next time */ | |
4300 Vlast_command = Vthis_command; | |
442 | 4301 Vlast_command_properties = Vthis_command_properties; |
4302 Vthis_command_properties = Qnil; | |
4303 | |
428 | 4304 /* Emacs 18 doesn't unconditionally clear the echoed keystrokes, |
4305 so we don't either */ | |
479 | 4306 |
4307 if (!is_scrollbar_event (event)) | |
771 | 4308 reset_this_command_keys (CONSOLE_LIVE_P (con) ? wrap_console (con) |
757 | 4309 : Qnil, 0); |
428 | 4310 } |
4311 } | |
4312 | |
4313 UNGCPRO; | |
4314 } | |
4315 | |
4316 /* Run the pre command hook. */ | |
4317 | |
4318 static void | |
4319 pre_command_hook (void) | |
4320 { | |
4321 last_point_position = BUF_PT (current_buffer); | |
793 | 4322 last_point_position_buffer = wrap_buffer (current_buffer); |
428 | 4323 /* This function can GC */ |
853 | 4324 safe_run_hook_trapping_problems |
1333 | 4325 (Qcommand, Qpre_command_hook, |
4326 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION); | |
442 | 4327 |
4328 /* This is a kludge, but necessary; see simple.el */ | |
4329 call0 (Qhandle_pre_motion_command); | |
428 | 4330 } |
4331 | |
4332 /* Run the post command hook. */ | |
4333 | |
4334 static void | |
4335 post_command_hook (void) | |
4336 { | |
4337 /* This function can GC */ | |
4338 /* Turn off region highlighting unless this command requested that | |
4339 it be left on, or we're in the minibuffer. We don't turn it off | |
4340 when we're in the minibuffer so that things like M-x write-region | |
4341 still work! | |
4342 | |
4343 This could be done via a function on the post-command-hook, but | |
4344 we don't want the user to accidentally remove it. | |
4345 */ | |
4346 | |
4347 Lisp_Object win = Fselected_window (Qnil); | |
4348 | |
4349 /* If the last command deleted the frame, `win' might be nil. | |
4350 It seems safest to do nothing in this case. */ | |
442 | 4351 /* Note: Someone added the following comment and put #if 0's around |
4352 this code, not realizing that doing this invites a crash in the | |
4353 line after. */ | |
440 | 4354 /* #### This doesn't really fix the problem, |
428 | 4355 if delete-frame is called by some hook */ |
4356 if (NILP (win)) | |
4357 return; | |
442 | 4358 |
4359 /* This is a kludge, but necessary; see simple.el */ | |
4360 call0 (Qhandle_post_motion_command); | |
428 | 4361 |
4362 if (! zmacs_region_stays | |
4363 && (!MINI_WINDOW_P (XWINDOW (win)) | |
4364 || EQ (zmacs_region_buffer (), WINDOW_BUFFER (XWINDOW (win))))) | |
4365 zmacs_deactivate_region (); | |
4366 else | |
4367 zmacs_update_region (); | |
4368 | |
853 | 4369 safe_run_hook_trapping_problems |
1333 | 4370 (Qcommand, Qpost_command_hook, |
5722
fffa15138019
Don't complain about throws out of `post-command-hook'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5691
diff
changeset
|
4371 NO_INHIBIT_THROWS); |
853 | 4372 |
4373 #if 0 /* FSF Emacs */ | |
4374 if (!NILP (current_buffer->mark_active)) | |
4375 { | |
4376 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode)) | |
4377 { | |
4378 current_buffer->mark_active = Qnil; | |
4379 run_hook (intern ("deactivate-mark-hook")); | |
4380 } | |
4381 else if (current_buffer != prev_buffer || | |
4382 BUF_MODIFF (current_buffer) != prev_modiff) | |
4383 run_hook (intern ("activate-mark-hook")); | |
4384 } | |
4385 #endif /* FSF Emacs */ | |
428 | 4386 |
4387 /* #### Kludge!!! This is necessary to make sure that things | |
4388 are properly positioned even if post-command-hook moves point. | |
4389 #### There should be a cleaner way of handling this. */ | |
4390 call0 (Qauto_show_make_point_visible); | |
4391 } | |
4392 | |
4393 | |
4394 DEFUN ("dispatch-event", Fdispatch_event, 1, 1, 0, /* | |
444 | 4395 Given an event object EVENT as returned by `next-event', execute it. |
428 | 4396 |
4397 Key-press, button-press, and button-release events get accumulated | |
4398 until a complete key sequence (see `read-key-sequence') is reached, | |
4399 at which point the sequence is looked up in the current keymaps and | |
4400 acted upon. | |
4401 | |
4402 Mouse motion events cause the low-level handling function stored in | |
4403 `mouse-motion-handler' to be called. (There are very few circumstances | |
4404 under which you should change this handler. Use `mode-motion-hook' | |
4405 instead.) | |
4406 | |
4407 Menu, timeout, and eval events cause the associated function or handler | |
4408 to be called. | |
4409 | |
4410 Process events cause the subprocess's output to be read and acted upon | |
4411 appropriately (see `start-process'). | |
4412 | |
4413 Magic events are handled as necessary. | |
4414 */ | |
4415 (event)) | |
4416 { | |
4417 /* This function can GC */ | |
4418 struct command_builder *command_builder; | |
440 | 4419 Lisp_Event *ev; |
428 | 4420 Lisp_Object console; |
4421 Lisp_Object channel; | |
1292 | 4422 PROFILE_DECLARE (); |
428 | 4423 |
4424 CHECK_LIVE_EVENT (event); | |
4425 ev = XEVENT (event); | |
4426 | |
4427 /* events on dead channels get silently eaten */ | |
4428 channel = EVENT_CHANNEL (ev); | |
4429 if (object_dead_p (channel)) | |
4430 return Qnil; | |
4431 | |
1292 | 4432 PROFILE_RECORD_ENTERING_SECTION (Qdispatch_event); |
4433 | |
428 | 4434 /* Some events don't have channels (e.g. eval events). */ |
4435 console = CDFW_CONSOLE (channel); | |
4436 if (NILP (console)) | |
4437 console = Vselected_console; | |
4438 else if (!EQ (console, Vselected_console)) | |
4439 Fselect_console (console); | |
4440 | |
4441 command_builder = XCOMMAND_BUILDER (XCONSOLE (console)->command_builder); | |
934 | 4442 switch (XEVENT_TYPE (event)) |
428 | 4443 { |
4444 case button_press_event: | |
4445 case button_release_event: | |
4446 case key_press_event: | |
4447 { | |
4448 Lisp_Object leaf = lookup_command_event (command_builder, event, 1); | |
4449 | |
5371
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4450 lookedup: |
428 | 4451 if (KEYMAPP (leaf)) |
4452 /* Incomplete key sequence */ | |
4453 break; | |
4454 if (NILP (leaf)) | |
4455 { | |
4456 /* At this point, we know that the sequence is not bound to a | |
4457 command. Normally, we beep and print a message informing the | |
4458 user of this. But we do not beep or print a message when: | |
4459 | |
4460 o the last event in this sequence is a mouse-up event; or | |
4461 o the last event in this sequence is a mouse-down event and | |
4462 there is a binding for the mouse-up version. | |
4463 | |
4464 That is, if the sequence ``C-x button1'' is typed, and is not | |
4465 bound to a command, but the sequence ``C-x button1up'' is bound | |
4466 to a command, we do not complain about the ``C-x button1'' | |
4467 sequence. If neither ``C-x button1'' nor ``C-x button1up'' is | |
4468 bound to a command, then we complain about the ``C-x button1'' | |
4469 sequence, but later will *not* complain about the | |
4470 ``C-x button1up'' sequence, which would be redundant. | |
4471 | |
4472 This is pretty hairy, but I think it's the most intuitive | |
4473 behavior. | |
4474 */ | |
4475 Lisp_Object terminal = command_builder->most_current_event; | |
4476 | |
4477 if (XEVENT_TYPE (terminal) == button_press_event) | |
4478 { | |
4479 int no_bitching; | |
4480 /* Temporarily pretend the last event was an "up" instead of a | |
4481 "down", and look up its binding. */ | |
4482 XEVENT_TYPE (terminal) = button_release_event; | |
4483 /* If the "up" version is bound, don't complain. */ | |
4484 no_bitching | |
771 | 4485 = !NILP (command_builder_find_leaf_and_update_global_state |
4486 (command_builder, 0)); | |
428 | 4487 /* Undo the temporary changes we just made. */ |
4488 XEVENT_TYPE (terminal) = button_press_event; | |
4489 if (no_bitching) | |
4490 { | |
4491 /* Pretend this press was not seen (treat as a prefix) */ | |
4492 if (EQ (command_builder->current_events, terminal)) | |
4493 { | |
4494 reset_current_events (command_builder); | |
4495 } | |
4496 else | |
4497 { | |
4498 Lisp_Object eve; | |
4499 | |
4500 EVENT_CHAIN_LOOP (eve, command_builder->current_events) | |
4501 if (EQ (XEVENT_NEXT (eve), terminal)) | |
4502 break; | |
4503 | |
4504 Fdeallocate_event (command_builder-> | |
4505 most_current_event); | |
4506 XSET_EVENT_NEXT (eve, Qnil); | |
4507 command_builder->most_current_event = eve; | |
4508 } | |
4509 maybe_echo_keys (command_builder, 1); | |
4510 break; | |
4511 } | |
4512 } | |
4513 | |
4514 /* Complain that the typed sequence is not defined, if this is the | |
4515 kind of sequence that warrants a complaint. */ | |
4516 XCONSOLE (console)->defining_kbd_macro = Qnil; | |
4517 XCONSOLE (console)->prefix_arg = Qnil; | |
4518 /* Don't complain about undefined button-release events */ | |
4519 if (XEVENT_TYPE (terminal) != button_release_event) | |
4520 { | |
4521 Lisp_Object keys = current_events_into_vector (command_builder); | |
4522 struct gcpro gcpro1; | |
4523 | |
4524 /* Run the pre-command-hook before barfing about an undefined | |
4525 key. */ | |
4526 Vthis_command = Qnil; | |
4527 GCPRO1 (keys); | |
4528 pre_command_hook (); | |
4529 UNGCPRO; | |
5371
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4530 |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4531 if (!NILP (Vthis_command)) |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4532 { |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4533 /* Allow pre-command-hook to change the command to |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4534 something more useful, and avoid barfing. */ |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4535 leaf = Vthis_command; |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4536 if (!EQ (command_builder->most_current_event, |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4537 Vlast_command_event)) |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4538 { |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4539 reset_current_events (command_builder); |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4540 command_builder_append_event (command_builder, |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4541 Vlast_command_event); |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4542 } |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4543 goto lookedup; |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4544 } |
6f10ac29bf40
Be better about searching for chars typed via XIM and x-compose.el, isearch
Aidan Kehoe <kehoea@parhasard.net>
parents:
5307
diff
changeset
|
4545 |
428 | 4546 /* The post-command-hook doesn't run. */ |
4547 Fsignal (Qundefined_keystroke_sequence, list1 (keys)); | |
4548 } | |
4549 /* Reset the command builder for reading the next sequence. */ | |
4550 reset_this_command_keys (console, 1); | |
4551 } | |
4552 else /* key sequence is bound to a command */ | |
4553 { | |
430 | 4554 int magic_undo = 0; |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4555 Elemcount magic_undo_count = 20; |
430 | 4556 |
5691
b490ddbd42aa
Back out 7371081ce8f7, I have a better approach.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5689
diff
changeset
|
4557 Vthis_command = leaf; |
b490ddbd42aa
Back out 7371081ce8f7, I have a better approach.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5689
diff
changeset
|
4558 |
428 | 4559 /* Don't push an undo boundary if the command set the prefix arg, |
4560 or if we are executing a keyboard macro, or if in the | |
4561 minibuffer. If the command we are about to execute is | |
4562 self-insert, it's tricky: up to 20 consecutive self-inserts may | |
4563 be done without an undo boundary. This counter is reset as | |
4564 soon as a command other than self-insert-command is executed. | |
430 | 4565 |
442 | 4566 Programmers can also use the `self-insert-defer-undo' |
4567 property to install that behavior on functions other | |
430 | 4568 than `self-insert-command', or to change the magic |
442 | 4569 number 20 to something else. #### DOCUMENT THIS! */ |
430 | 4570 |
4571 if (SYMBOLP (leaf)) | |
4572 { | |
4573 Lisp_Object prop = Fget (leaf, Qself_insert_defer_undo, Qnil); | |
4574 if (NATNUMP (prop)) | |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4575 { |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4576 magic_undo = 1; |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
4577 if (FIXNUMP (prop)) |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4578 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
4579 magic_undo_count = XFIXNUM (prop); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4580 } |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4581 #ifdef HAVE_BIGNUM |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4582 else if (BIGNUMP (prop) |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4583 && bignum_fits_emacs_int_p (XBIGNUM_DATA (prop))) |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4584 { |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4585 magic_undo_count |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4586 = bignum_to_emacs_int (XBIGNUM_DATA (prop)); |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4587 } |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4588 #endif |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4589 } |
430 | 4590 else if (!NILP (prop)) |
4591 magic_undo = 1; | |
4592 else if (EQ (leaf, Qself_insert_command)) | |
4593 magic_undo = 1; | |
4594 } | |
4595 | |
4596 if (!magic_undo) | |
428 | 4597 command_builder->self_insert_countdown = 0; |
4598 if (NILP (XCONSOLE (console)->prefix_arg) | |
4599 && NILP (Vexecuting_macro) | |
4600 && command_builder->self_insert_countdown == 0) | |
4601 Fundo_boundary (); | |
4602 | |
430 | 4603 if (magic_undo) |
428 | 4604 { |
4605 if (--command_builder->self_insert_countdown < 0) | |
430 | 4606 command_builder->self_insert_countdown = magic_undo_count; |
428 | 4607 } |
4608 execute_command_event | |
4609 (command_builder, | |
444 | 4610 internal_equal (event, command_builder->most_current_event, 0) |
428 | 4611 ? event |
4612 /* Use the translated event that was most recently seen. | |
4613 This way, last-command-event becomes f1 instead of | |
4614 the P from ESC O P. But we must copy it, else we'll | |
4615 lose when the command-builder events are deallocated. */ | |
444 | 4616 : Fcopy_event (command_builder->most_current_event, Qnil)); |
428 | 4617 } |
4618 break; | |
4619 } | |
4620 case misc_user_event: | |
4621 { | |
4622 /* Jamie said: | |
4623 | |
4624 We could just always use the menu item entry, whatever it is, but | |
4625 this might break some Lisp code that expects `this-command' to | |
4626 always contain a symbol. So only store it if this is a simple | |
4627 `call-interactively' sort of menu item. | |
4628 | |
4629 But this is bogus. `this-command' could be a string or vector | |
4630 anyway (for keyboard macros). There's even one instance | |
4631 (in pending-del.el) of `this-command' getting set to a cons | |
4632 (a lambda expression). So in the `eval' case I'll just | |
4633 convert it into a lambda expression. | |
4634 */ | |
1204 | 4635 if (EQ (XEVENT_MISC_USER_FUNCTION (event), Qcall_interactively) |
4636 && SYMBOLP (XEVENT_MISC_USER_OBJECT (event))) | |
4637 Vthis_command = XEVENT_MISC_USER_OBJECT (event); | |
4638 else if (EQ (XEVENT_MISC_USER_FUNCTION (event), Qeval)) | |
934 | 4639 Vthis_command = |
1204 | 4640 Fcons (Qlambda, Fcons (Qnil, XEVENT_MISC_USER_OBJECT (event))); |
4641 else if (SYMBOLP (XEVENT_MISC_USER_FUNCTION (event))) | |
934 | 4642 /* A scrollbar command or the like. */ |
1204 | 4643 Vthis_command = XEVENT_MISC_USER_FUNCTION (event); |
428 | 4644 else |
4645 /* Huh? */ | |
4646 Vthis_command = Qnil; | |
4647 | |
4648 /* clear the echo area */ | |
4649 reset_key_echo (command_builder, 1); | |
4650 | |
4651 command_builder->self_insert_countdown = 0; | |
4652 if (NILP (XCONSOLE (console)->prefix_arg) | |
4653 && NILP (Vexecuting_macro) | |
4654 && !EQ (minibuf_window, Fselected_window (Qnil))) | |
4655 Fundo_boundary (); | |
4656 execute_command_event (command_builder, event); | |
4657 break; | |
4658 } | |
4659 default: | |
4660 execute_internal_event (event); | |
4661 break; | |
4662 } | |
1292 | 4663 |
4664 PROFILE_RECORD_EXITING_SECTION (Qdispatch_event); | |
428 | 4665 return Qnil; |
4666 } | |
4667 | |
4668 DEFUN ("read-key-sequence", Fread_key_sequence, 1, 3, 0, /* | |
4669 Read a sequence of keystrokes or mouse clicks. | |
4670 Returns a vector of the event objects read. The vector and the event | |
444 | 4671 objects it contains are freshly created (and so will not be side-effected |
428 | 4672 by subsequent calls to this function). |
4673 | |
4674 The sequence read is sufficient to specify a non-prefix command starting | |
4675 from the current local and global keymaps. A C-g typed while in this | |
4676 function is treated like any other character, and `quit-flag' is not set. | |
4677 | |
4678 First arg PROMPT is a prompt string. If nil, do not prompt specially. | |
444 | 4679 |
4680 Second optional arg CONTINUE-ECHO non-nil means this key echoes as a | |
4681 continuation of the previous key. | |
4682 | |
4683 Third optional arg DONT-DOWNCASE-LAST non-nil means do not convert the | |
4684 last event to lower case. (Normally any upper case event is converted | |
4685 to lower case if the original event is undefined and the lower case | |
4686 equivalent is defined.) This argument is provided mostly for FSF | |
4687 compatibility; the equivalent effect can be achieved more generally by | |
4688 binding `retry-undefined-key-binding-unshifted' to nil around the call | |
4689 to `read-key-sequence'. | |
428 | 4690 |
4691 If the user selects a menu item while we are prompting for a key-sequence, | |
4692 the returned value will be a vector of a single menu-selection event. | |
4693 An error will be signalled if you pass this value to `lookup-key' or a | |
4694 related function. | |
4695 | |
4696 `read-key-sequence' checks `function-key-map' for function key | |
444 | 4697 sequences, where they wouldn't conflict with ordinary bindings. |
4698 See `function-key-map' for more details. | |
428 | 4699 */ |
4700 (prompt, continue_echo, dont_downcase_last)) | |
4701 { | |
4702 /* This function can GC */ | |
4703 struct console *con = XCONSOLE (Vselected_console); /* #### correct? | |
4704 Probably not -- see | |
4705 comment in | |
4706 next-event */ | |
4707 struct command_builder *command_builder = | |
4708 XCOMMAND_BUILDER (con->command_builder); | |
4709 Lisp_Object result; | |
4710 Lisp_Object event = Fmake_event (Qnil, Qnil); | |
4711 int speccount = specpdl_depth (); | |
4712 struct gcpro gcpro1; | |
4713 GCPRO1 (event); | |
4714 | |
707 | 4715 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
428 | 4716 if (!NILP (prompt)) |
4717 CHECK_STRING (prompt); | |
4718 /* else prompt = Fkeymap_prompt (current_buffer->keymap); may GC */ | |
4719 QUIT; | |
4720 | |
4721 if (NILP (continue_echo)) | |
771 | 4722 reset_this_command_keys (wrap_console (con), 1); |
428 | 4723 |
4724 if (!NILP (dont_downcase_last)) | |
4725 specbind (Qretry_undefined_key_binding_unshifted, Qnil); | |
4726 | |
4727 for (;;) | |
4728 { | |
4729 Fnext_event (event, prompt); | |
4730 /* restore the selected-console damage */ | |
4731 con = event_console_or_selected (event); | |
4732 command_builder = XCOMMAND_BUILDER (con->command_builder); | |
4733 if (! command_event_p (event)) | |
4734 execute_internal_event (event); | |
4735 else | |
4736 { | |
934 | 4737 if (XEVENT_TYPE (event) == misc_user_event) |
428 | 4738 reset_current_events (command_builder); |
4739 result = lookup_command_event (command_builder, event, 1); | |
4740 if (!KEYMAPP (result)) | |
4741 { | |
4742 result = current_events_into_vector (command_builder); | |
4743 reset_key_echo (command_builder, 0); | |
4744 break; | |
4745 } | |
4746 prompt = Qnil; | |
4747 } | |
4748 } | |
4749 | |
4750 Fdeallocate_event (event); | |
771 | 4751 RETURN_UNGCPRO (unbind_to_1 (speccount, result)); |
428 | 4752 } |
4753 | |
4754 DEFUN ("this-command-keys", Fthis_command_keys, 0, 0, 0, /* | |
4755 Return a vector of the keyboard or mouse button events that were used | |
4756 to invoke this command. This copies the vector and the events; it is safe | |
4757 to keep and modify them. | |
4758 */ | |
4759 ()) | |
4760 { | |
4761 Lisp_Object event; | |
4762 Lisp_Object result; | |
4763 int len; | |
4764 | |
4765 if (NILP (Vthis_command_keys)) | |
4766 return make_vector (0, Qnil); | |
4767 | |
4768 len = event_chain_count (Vthis_command_keys); | |
4769 | |
4770 result = make_vector (len, Qnil); | |
4771 len = 0; | |
4772 EVENT_CHAIN_LOOP (event, Vthis_command_keys) | |
4773 XVECTOR_DATA (result)[len++] = Fcopy_event (event, Qnil); | |
4774 return result; | |
4775 } | |
4776 | |
4777 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths, 0, 0, 0, /* | |
4778 Used for complicated reasons in `universal-argument-other-key'. | |
4779 | |
4780 `universal-argument-other-key' rereads the event just typed. | |
4781 It then gets translated through `function-key-map'. | |
4782 The translated event gets included in the echo area and in | |
4783 the value of `this-command-keys' in addition to the raw original event. | |
4784 That is not right. | |
4785 | |
4786 Calling this function directs the translated event to replace | |
4787 the original event, so that only one version of the event actually | |
430 | 4788 appears in the echo area and in the value of `this-command-keys'. |
428 | 4789 */ |
4790 ()) | |
4791 { | |
4792 /* #### I don't understand this at all, so currently it does nothing. | |
4793 If there is ever a problem, maybe someone should investigate. */ | |
4794 return Qnil; | |
4795 } | |
4796 | |
4797 | |
4798 static void | |
4799 dribble_out_event (Lisp_Object event) | |
4800 { | |
4801 if (NILP (Vdribble_file)) | |
4802 return; | |
4803 | |
934 | 4804 if (XEVENT_TYPE (event) == key_press_event && |
1204 | 4805 !XEVENT_KEY_MODIFIERS (event)) |
934 | 4806 { |
1204 | 4807 Lisp_Object keysym = XEVENT_KEY_KEYSYM (event); |
4808 if (CHARP (XEVENT_KEY_KEYSYM (event))) | |
428 | 4809 { |
867 | 4810 Ichar ch = XCHAR (keysym); |
4811 Ibyte str[MAX_ICHAR_LEN]; | |
4812 Bytecount len = set_itext_ichar (str, ch); | |
428 | 4813 Lstream_write (XLSTREAM (Vdribble_file), str, len); |
4814 } | |
826 | 4815 else if (string_char_length (XSYMBOL (keysym)->name) == 1) |
428 | 4816 /* one-char key events are printed with just the key name */ |
4817 Fprinc (keysym, Vdribble_file); | |
4818 else if (EQ (keysym, Qreturn)) | |
4819 Lstream_putc (XLSTREAM (Vdribble_file), '\n'); | |
4820 else if (EQ (keysym, Qspace)) | |
4821 Lstream_putc (XLSTREAM (Vdribble_file), ' '); | |
4822 else | |
4823 Fprinc (event, Vdribble_file); | |
4824 } | |
4825 else | |
4826 Fprinc (event, Vdribble_file); | |
4827 Lstream_flush (XLSTREAM (Vdribble_file)); | |
4828 } | |
4829 | |
4830 DEFUN ("open-dribble-file", Fopen_dribble_file, 1, 1, | |
4831 "FOpen dribble file: ", /* | |
444 | 4832 Start writing all keyboard characters to a dribble file called FILENAME. |
4833 If FILENAME is nil, close any open dribble file. | |
428 | 4834 */ |
444 | 4835 (filename)) |
428 | 4836 { |
4837 /* This function can GC */ | |
4838 /* XEmacs change: always close existing dribble file. */ | |
4839 /* FSFmacs uses FILE *'s here. With lstreams, that's unnecessary. */ | |
4840 if (!NILP (Vdribble_file)) | |
4841 { | |
4842 Lstream_close (XLSTREAM (Vdribble_file)); | |
4843 Vdribble_file = Qnil; | |
4844 } | |
444 | 4845 if (!NILP (filename)) |
428 | 4846 { |
4847 int fd; | |
4848 | |
444 | 4849 filename = Fexpand_file_name (filename, Qnil); |
771 | 4850 fd = qxe_open (XSTRING_DATA (filename), |
4851 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY, | |
4852 CREAT_MODE); | |
428 | 4853 if (fd < 0) |
563 | 4854 report_file_error ("Unable to create dribble file", filename); |
428 | 4855 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING); |
4856 #ifdef MULE | |
4857 Vdribble_file = | |
771 | 4858 make_coding_output_stream |
4859 (XLSTREAM (Vdribble_file), | |
800 | 4860 Qescape_quoted, CODING_ENCODE, 0); |
428 | 4861 #endif |
4862 } | |
4863 return Qnil; | |
4864 } | |
4865 | |
4866 | |
442 | 4867 |
4868 DEFUN ("current-event-timestamp", Fcurrent_event_timestamp, 0, 1, 0, /* | |
4869 Return the current event timestamp of the window system associated with CONSOLE. | |
4870 CONSOLE defaults to the selected console if omitted. | |
4871 */ | |
4872 (console)) | |
4873 { | |
4874 struct console *c = decode_console (console); | |
4875 int tiempo = event_stream_current_event_timestamp (c); | |
4876 | |
4877 /* This junk is so that timestamps don't get to be negative, but contain | |
4878 as many bits as this particular emacs will allow. | |
4879 */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
4880 return make_fixnum (MOST_POSITIVE_FIXNUM & tiempo); |
442 | 4881 } |
4882 | |
4883 | |
428 | 4884 /************************************************************************/ |
4885 /* initialization */ | |
4886 /************************************************************************/ | |
4887 | |
4888 void | |
4889 syms_of_event_stream (void) | |
4890 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
4891 INIT_LISP_OBJECT (command_builder); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
4892 INIT_LISP_OBJECT (timeout); |
442 | 4893 |
563 | 4894 DEFSYMBOL (Qdisabled); |
4895 DEFSYMBOL (Qcommand_event_p); | |
4896 | |
4897 DEFERROR_STANDARD (Qundefined_keystroke_sequence, Qsyntax_error); | |
4898 DEFERROR_STANDARD (Qinvalid_key_binding, Qinvalid_state); | |
428 | 4899 |
4900 DEFSUBR (Frecent_keys); | |
4901 DEFSUBR (Frecent_keys_ring_size); | |
4902 DEFSUBR (Fset_recent_keys_ring_size); | |
4903 DEFSUBR (Finput_pending_p); | |
4904 DEFSUBR (Fenqueue_eval_event); | |
4905 DEFSUBR (Fnext_event); | |
4906 DEFSUBR (Fnext_command_event); | |
4907 DEFSUBR (Fdiscard_input); | |
4908 DEFSUBR (Fsit_for); | |
4909 DEFSUBR (Fsleep_for); | |
4910 DEFSUBR (Faccept_process_output); | |
4911 DEFSUBR (Fadd_timeout); | |
4912 DEFSUBR (Fdisable_timeout); | |
4913 DEFSUBR (Fadd_async_timeout); | |
4914 DEFSUBR (Fdisable_async_timeout); | |
4915 DEFSUBR (Fdispatch_event); | |
442 | 4916 DEFSUBR (Fdispatch_non_command_events); |
428 | 4917 DEFSUBR (Fread_key_sequence); |
4918 DEFSUBR (Fthis_command_keys); | |
4919 DEFSUBR (Freset_this_command_lengths); | |
4920 DEFSUBR (Fopen_dribble_file); | |
442 | 4921 DEFSUBR (Fcurrent_event_timestamp); |
428 | 4922 |
563 | 4923 DEFSYMBOL (Qpre_command_hook); |
4924 DEFSYMBOL (Qpost_command_hook); | |
4925 DEFSYMBOL (Qunread_command_events); | |
4926 DEFSYMBOL (Qunread_command_event); | |
4927 DEFSYMBOL (Qpre_idle_hook); | |
4928 DEFSYMBOL (Qhandle_pre_motion_command); | |
4929 DEFSYMBOL (Qhandle_post_motion_command); | |
4930 DEFSYMBOL (Qretry_undefined_key_binding_unshifted); | |
4931 DEFSYMBOL (Qauto_show_make_point_visible); | |
4932 | |
4933 DEFSYMBOL (Qself_insert_defer_undo); | |
4934 DEFSYMBOL (Qcancel_mode_internal); | |
1292 | 4935 |
4936 DEFSYMBOL (Qnext_event); | |
4937 DEFSYMBOL (Qdispatch_event); | |
5139
a48ef26d87ee
Clean up prototypes for Lisp variables/symbols. Put decls for them with
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
4938 |
a48ef26d87ee
Clean up prototypes for Lisp variables/symbols. Put decls for them with
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
4939 DEFSYMBOL (Qsans_modifiers); |
428 | 4940 } |
4941 | |
4942 void | |
4943 reinit_vars_of_event_stream (void) | |
4944 { | |
4945 recent_keys_ring_index = 0; | |
4946 recent_keys_ring_size = 100; | |
4947 num_input_chars = 0; | |
4948 the_low_level_timeout_blocktype = | |
4949 Blocktype_new (struct low_level_timeout_blocktype); | |
4950 something_happened = 0; | |
1268 | 4951 recursive_sit_for = 0; |
4952 in_modal_loop = 0; | |
428 | 4953 } |
4954 | |
4955 void | |
4956 vars_of_event_stream (void) | |
4957 { | |
4958 Vrecent_keys_ring = Qnil; | |
4959 staticpro (&Vrecent_keys_ring); | |
4960 | |
4961 Vthis_command_keys = Qnil; | |
4962 staticpro (&Vthis_command_keys); | |
4963 Vthis_command_keys_tail = Qnil; | |
1204 | 4964 dump_add_root_lisp_object (&Vthis_command_keys_tail); |
428 | 4965 |
4966 command_event_queue = Qnil; | |
4967 staticpro (&command_event_queue); | |
4968 command_event_queue_tail = Qnil; | |
1204 | 4969 dump_add_root_lisp_object (&command_event_queue_tail); |
4970 | |
4971 dispatch_event_queue = Qnil; | |
4972 staticpro (&dispatch_event_queue); | |
4973 dispatch_event_queue_tail = Qnil; | |
4974 dump_add_root_lisp_object (&dispatch_event_queue_tail); | |
428 | 4975 |
4976 Vlast_selected_frame = Qnil; | |
4977 staticpro (&Vlast_selected_frame); | |
4978 | |
4979 pending_timeout_list = Qnil; | |
4980 staticpro (&pending_timeout_list); | |
4981 | |
4982 pending_async_timeout_list = Qnil; | |
4983 staticpro (&pending_async_timeout_list); | |
4984 | |
4985 last_point_position_buffer = Qnil; | |
4986 staticpro (&last_point_position_buffer); | |
4987 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4988 QSnext_event_internal = build_ascstring ("next_event_internal()"); |
1292 | 4989 staticpro (&QSnext_event_internal); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4990 QSexecute_internal_event = build_ascstring ("execute_internal_event()"); |
1292 | 4991 staticpro (&QSexecute_internal_event); |
4992 | |
428 | 4993 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes /* |
4994 *Nonzero means echo unfinished commands after this many seconds of pause. | |
4995 */ ); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
4996 Vecho_keystrokes = make_fixnum (1); |
428 | 4997 |
4998 DEFVAR_INT ("auto-save-interval", &auto_save_interval /* | |
4999 *Number of keyboard input characters between auto-saves. | |
5000 Zero means disable autosaving due to number of characters typed. | |
5001 See also the variable `auto-save-timeout'. | |
5002 */ ); | |
5003 auto_save_interval = 300; | |
5004 | |
5005 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook /* | |
5006 Function or functions to run before every command. | |
5007 This may examine the `this-command' variable to find out what command | |
5008 is about to be run, or may change it to cause a different command to run. | |
853 | 5009 Errors while running the hook are caught and turned into warnings. |
428 | 5010 */ ); |
5011 Vpre_command_hook = Qnil; | |
5012 | |
5013 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook /* | |
5014 Function or functions to run after every command. | |
5015 This may examine the `this-command' variable to find out what command | |
5016 was just executed. | |
5017 */ ); | |
5018 Vpost_command_hook = Qnil; | |
5019 | |
5020 DEFVAR_LISP ("pre-idle-hook", &Vpre_idle_hook /* | |
5021 Normal hook run when XEmacs it about to be idle. | |
5022 This occurs whenever it is going to block, waiting for an event. | |
5023 This generally happens as a result of a call to `next-event', | |
5024 `next-command-event', `sit-for', `sleep-for', `accept-process-output', | |
853 | 5025 or `get-selection'. Errors while running the hook are caught and |
5026 turned into warnings. | |
428 | 5027 */ ); |
5028 Vpre_idle_hook = Qnil; | |
5029 | |
5030 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse /* | |
5031 *Variable to control XEmacs behavior with respect to focus changing. | |
5032 If this variable is set to t, then XEmacs will not gratuitously change | |
5033 the keyboard focus. XEmacs cannot in general detect when this mode is | |
5034 used by the window manager, so it is up to the user to set it. | |
5035 */ ); | |
5036 focus_follows_mouse = 0; | |
5037 | |
5038 DEFVAR_LISP ("last-command-event", &Vlast_command_event /* | |
5039 Last keyboard or mouse button event that was part of a command. This | |
5040 variable is off limits: you may not set its value or modify the event that | |
5041 is its value, as it is destructively modified by `read-key-sequence'. If | |
5042 you want to keep a pointer to this value, you must use `copy-event'. | |
5043 */ ); | |
5044 Vlast_command_event = Qnil; | |
5045 | |
5046 DEFVAR_LISP ("last-command-char", &Vlast_command_char /* | |
5047 If the value of `last-command-event' is a keyboard event, then | |
5048 this is the nearest ASCII equivalent to it. This is the value that | |
5049 `self-insert-command' will put in the buffer. Remember that there is | |
5050 NOT a 1:1 mapping between keyboard events and ASCII characters: the set | |
5051 of keyboard events is much larger, so writing code that examines this | |
5052 variable to determine what key has been typed is bad practice, unless | |
5053 you are certain that it will be one of a small set of characters. | |
5054 */ ); | |
5055 Vlast_command_char = Qnil; | |
5056 | |
5057 DEFVAR_LISP ("last-input-event", &Vlast_input_event /* | |
5058 Last keyboard or mouse button event received. This variable is off | |
5059 limits: you may not set its value or modify the event that is its value, as | |
5060 it is destructively modified by `next-event'. If you want to keep a pointer | |
5061 to this value, you must use `copy-event'. | |
5062 */ ); | |
5063 Vlast_input_event = Qnil; | |
5064 | |
5065 DEFVAR_LISP ("current-mouse-event", &Vcurrent_mouse_event /* | |
5066 The mouse-button event which invoked this command, or nil. | |
5067 This is usually what `(interactive "e")' returns. | |
5068 */ ); | |
5069 Vcurrent_mouse_event = Qnil; | |
5070 | |
5071 DEFVAR_LISP ("last-input-char", &Vlast_input_char /* | |
5072 If the value of `last-input-event' is a keyboard event, then | |
5073 this is the nearest ASCII equivalent to it. Remember that there is | |
5074 NOT a 1:1 mapping between keyboard events and ASCII characters: the set | |
5075 of keyboard events is much larger, so writing code that examines this | |
5076 variable to determine what key has been typed is bad practice, unless | |
5077 you are certain that it will be one of a small set of characters. | |
5078 */ ); | |
5079 Vlast_input_char = Qnil; | |
5080 | |
5081 DEFVAR_LISP ("last-input-time", &Vlast_input_time /* | |
5082 The time (in seconds since Jan 1, 1970) of the last-command-event, | |
5083 represented as a cons of two 16-bit integers. This is destructively | |
5084 modified, so copy it if you want to keep it. | |
5085 */ ); | |
5086 Vlast_input_time = Qnil; | |
5087 | |
5088 DEFVAR_LISP ("last-command-event-time", &Vlast_command_event_time /* | |
5089 The time (in seconds since Jan 1, 1970) of the last-command-event, | |
5090 represented as a list of three integers. The first integer contains | |
5091 the most significant 16 bits of the number of seconds, and the second | |
5092 integer contains the least significant 16 bits. The third integer | |
5093 contains the remainder number of microseconds, if the current system | |
5094 supports microsecond clock resolution. This list is destructively | |
5095 modified, so copy it if you want to keep it. | |
5096 */ ); | |
5097 Vlast_command_event_time = Qnil; | |
5098 | |
5099 DEFVAR_LISP ("unread-command-events", &Vunread_command_events /* | |
5100 List of event objects to be read as next command input events. | |
5101 This can be used to simulate the receipt of events from the user. | |
5102 Normally this is nil. | |
5103 Events are removed from the front of this list. | |
5104 */ ); | |
5105 Vunread_command_events = Qnil; | |
5106 | |
5107 DEFVAR_LISP ("unread-command-event", &Vunread_command_event /* | |
5108 Obsolete. Use `unread-command-events' instead. | |
5109 */ ); | |
5110 Vunread_command_event = Qnil; | |
5111 | |
5112 DEFVAR_LISP ("last-command", &Vlast_command /* | |
5113 The last command executed. Normally a symbol with a function definition, | |
5114 but can be whatever was found in the keymap, or whatever the variable | |
5115 `this-command' was set to by that command. | |
5116 */ ); | |
5117 Vlast_command = Qnil; | |
5118 | |
5119 DEFVAR_LISP ("this-command", &Vthis_command /* | |
5120 The command now being executed. | |
5121 The command can set this variable; whatever is put here | |
5122 will be in `last-command' during the following command. | |
5123 */ ); | |
5124 Vthis_command = Qnil; | |
5125 | |
442 | 5126 DEFVAR_LISP ("last-command-properties", &Vlast_command_properties /* |
5127 Value of `this-command-properties' for the last command. | |
5128 Used by commands to help synchronize consecutive commands, in preference | |
5129 to looking at `last-command' directly. | |
5130 */ ); | |
5131 Vlast_command_properties = Qnil; | |
5132 | |
5133 DEFVAR_LISP ("this-command-properties", &Vthis_command_properties /* | |
5134 Properties set by the current command. | |
5135 At the beginning of each command, the current value of this variable is | |
5136 copied to `last-command-properties', and then it is set to nil. Use `putf' | |
5137 to add properties to this variable. Commands should use this to communicate | |
5138 with pre/post-command hooks, subsequent commands, wrapping commands, etc. | |
5139 in preference to looking at and/or setting `this-command'. | |
5140 */ ); | |
5141 Vthis_command_properties = Qnil; | |
5142 | |
428 | 5143 DEFVAR_LISP ("help-char", &Vhelp_char /* |
5144 Character to recognize as meaning Help. | |
5145 When it is read, do `(eval help-form)', and display result if it's a string. | |
5146 If the value of `help-form' is nil, this char can be read normally. | |
5147 This can be any form recognized as a single key specifier. | |
5148 The help-char cannot be a negative number in XEmacs. | |
5149 */ ); | |
5150 Vhelp_char = make_char (8); /* C-h */ | |
5151 | |
5152 DEFVAR_LISP ("help-form", &Vhelp_form /* | |
5153 Form to execute when character help-char is read. | |
5154 If the form returns a string, that string is displayed. | |
5155 If `help-form' is nil, the help char is not recognized. | |
5156 */ ); | |
5157 Vhelp_form = Qnil; | |
5158 | |
5159 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command /* | |
5160 Command to run when `help-char' character follows a prefix key. | |
5161 This command is used only when there is no actual binding | |
5162 for that character after that prefix key. | |
5163 */ ); | |
5164 Vprefix_help_command = Qnil; | |
5165 | |
5166 DEFVAR_CONST_LISP ("keyboard-translate-table", &Vkeyboard_translate_table /* | |
5167 Hash table used as translate table for keyboard input. | |
5168 Use `keyboard-translate' to portably add entries to this table. | |
5169 Each key-press event is looked up in this table as follows: | |
5170 | |
5171 -- If an entry maps a symbol to a symbol, then a key-press event whose | |
5172 keysym is the former symbol (with any modifiers at all) gets its | |
5173 keysym changed and its modifiers left alone. This is useful for | |
5174 dealing with non-standard X keyboards, such as the grievous damage | |
5175 that Sun has inflicted upon the world. | |
442 | 5176 -- If an entry maps a symbol to a character, then a key-press event |
5177 whose keysym is the former symbol (with any modifiers at all) gets | |
5178 changed into a key-press event matching the latter character, and the | |
5179 resulting modifiers are the union of the original and new modifiers. | |
428 | 5180 -- If an entry maps a character to a character, then a key-press event |
5181 matching the former character gets converted to a key-press event | |
5182 matching the latter character. This is useful on ASCII terminals | |
5183 for (e.g.) making C-\\ look like C-s, to get around flow-control | |
5184 problems. | |
5185 -- If an entry maps a character to a symbol, then a key-press event | |
5186 matching the character gets converted to a key-press event whose | |
5187 keysym is the given symbol and which has no modifiers. | |
442 | 5188 |
5189 Here's an example: This makes typing parens and braces easier by rerouting | |
5190 their positions to eliminate the need to use the Shift key. | |
5191 | |
5192 (keyboard-translate ?[ ?() | |
5193 (keyboard-translate ?] ?)) | |
5194 (keyboard-translate ?{ ?[) | |
5195 (keyboard-translate ?} ?]) | |
5196 (keyboard-translate 'f11 ?{) | |
5197 (keyboard-translate 'f12 ?}) | |
428 | 5198 */ ); |
5199 | |
5200 DEFVAR_LISP ("retry-undefined-key-binding-unshifted", | |
5201 &Vretry_undefined_key_binding_unshifted /* | |
5202 If a key-sequence which ends with a shifted keystroke is undefined | |
5203 and this variable is non-nil then the command lookup is retried again | |
5204 with the last key unshifted. (e.g. C-X C-F would be retried as C-X C-f.) | |
5205 If lookup still fails, a normal error is signalled. In general, | |
5206 you should *bind* this, not set it. | |
5207 */ ); | |
5208 Vretry_undefined_key_binding_unshifted = Qt; | |
5209 | |
442 | 5210 DEFVAR_BOOL ("modifier-keys-are-sticky", &modifier_keys_are_sticky /* |
5211 *Non-nil makes modifier keys sticky. | |
5212 This means that you can release the modifier key before pressing down | |
5213 the key that you wish to be modified. Although this is non-standard | |
5214 behavior, it is recommended because it reduces the strain on your hand, | |
5215 thus reducing the incidence of the dreaded Emacs-pinky syndrome. | |
444 | 5216 |
5217 Modifier keys are sticky within the inverval specified by | |
5218 `modifier-keys-sticky-time'. | |
442 | 5219 */ ); |
5220 modifier_keys_are_sticky = 0; | |
5221 | |
444 | 5222 DEFVAR_LISP ("modifier-keys-sticky-time", &Vmodifier_keys_sticky_time /* |
5223 *Modifier keys are sticky within this many milliseconds. | |
5224 If you don't want modifier keys sticking to be bounded, set this to | |
5225 non-integer value. | |
5226 | |
5227 This variable has no effect when `modifier-keys-are-sticky' is nil. | |
5228 Currently only implemented under X Window System. | |
5229 */ ); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
5230 Vmodifier_keys_sticky_time = make_fixnum (500); |
444 | 5231 |
428 | 5232 Vcontrolling_terminal = Qnil; |
5233 staticpro (&Vcontrolling_terminal); | |
5234 | |
5235 Vdribble_file = Qnil; | |
5236 staticpro (&Vdribble_file); | |
5237 | |
5238 #ifdef DEBUG_XEMACS | |
5239 DEFVAR_INT ("debug-emacs-events", &debug_emacs_events /* | |
5240 If non-zero, display debug information about Emacs events that XEmacs sees. | |
5241 Information is displayed on stderr. | |
5242 | |
5243 Before the event, the source of the event is displayed in parentheses, | |
5244 and is one of the following: | |
5245 | |
5246 \(real) A real event from the window system or | |
5247 terminal driver, as far as XEmacs can tell. | |
5248 | |
5249 \(keyboard macro) An event generated from a keyboard macro. | |
5250 | |
5251 \(unread-command-events) An event taken from `unread-command-events'. | |
5252 | |
5253 \(unread-command-event) An event taken from `unread-command-event'. | |
5254 | |
5255 \(command event queue) An event taken from an internal queue. | |
5256 Events end up on this queue when | |
5257 `enqueue-eval-event' is called or when | |
5258 user or eval events are received while | |
5259 XEmacs is blocking (e.g. in `sit-for', | |
5260 `sleep-for', or `accept-process-output', | |
5261 or while waiting for the reply to an | |
5262 X selection). | |
5263 | |
5264 \(->keyboard-translate-table) The result of an event translated through | |
5265 keyboard-translate-table. Note that in | |
5266 this case, two events are printed even | |
5267 though only one is really generated. | |
5268 | |
5269 \(SIGINT) A faked C-g resulting when XEmacs receives | |
5270 a SIGINT (e.g. C-c was pressed in XEmacs' | |
5271 controlling terminal or the signal was | |
5272 explicitly sent to the XEmacs process). | |
5273 */ ); | |
5274 debug_emacs_events = 0; | |
5275 #endif | |
5276 | |
2828 | 5277 DEFVAR_BOOL ("inhibit-input-event-recording", |
5278 &inhibit_input_event_recording /* | |
428 | 5279 Non-nil inhibits recording of input-events to recent-keys ring. |
5280 */ ); | |
5281 inhibit_input_event_recording = 0; | |
771 | 5282 |
428 | 5283 Vkeyboard_translate_table = |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5143
diff
changeset
|
5284 make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, Qequal); |
2828 | 5285 |
5286 DEFVAR_BOOL ("try-alternate-layouts-for-commands", | |
5287 &try_alternate_layouts_for_commands /* | |
5288 Non-nil means that if looking up a command from a sequence of keys typed by | |
5289 the user would otherwise fail, try it again with some other keyboard | |
5290 layout. On X11, the only alternative to the default mapping is American | |
5291 QWERTY; on Windows, other mappings may be available, depending on things | |
5292 like the default language environment for the current user, for the system, | |
5293 &c. | |
5294 | |
5295 With a Russian keyboard layout on X11, for example, this means that | |
5296 C-Cyrillic_che C-Cyrillic_a, if you haven't given that sequence a binding | |
5297 yourself, will invoke `find-file.' This is because `Cyrillic_che' is | |
5298 physically where `x' is, and `Cyrillic_a' is where `f' is, on an American | |
5299 Qwerty layout, and, of course, C-x C-f is a default emacs binding for that | |
5300 command. | |
5301 */ ); | |
5302 try_alternate_layouts_for_commands = 1; | |
428 | 5303 } |
5304 | |
5305 void | |
5306 init_event_stream (void) | |
5307 { | |
814 | 5308 /* Normally we don't initialize the event stream when running a bare |
5309 temacs (the check for initialized) because it may do various things | |
5310 (e.g. under Xt) that we don't want any traces of in a dumped xemacs. | |
5311 However, sometimes we need to process events in a bare temacs (in | |
5312 particular, when make-docfile.el is executed); so we initialize as | |
5313 necessary in check_event_stream_ok(). */ | |
428 | 5314 if (initialized) |
5315 { | |
5316 #ifdef HAVE_UNIXOID_EVENT_LOOP | |
5317 init_event_unixoid (); | |
5318 #endif | |
5319 #ifdef HAVE_X_WINDOWS | |
5320 if (!strcmp (display_use, "x")) | |
5321 init_event_Xt_late (); | |
5322 else | |
5323 #endif | |
462 | 5324 #ifdef HAVE_GTK |
5325 if (!strcmp (display_use, "gtk")) | |
5326 init_event_gtk_late (); | |
5327 else | |
5328 #endif | |
428 | 5329 #ifdef HAVE_MS_WINDOWS |
5330 if (!strcmp (display_use, "mswindows")) | |
5331 init_event_mswindows_late (); | |
5332 else | |
5333 #endif | |
5334 { | |
5335 /* For TTY's, use the Xt event loop if we can; it allows | |
5336 us to later open an X connection. */ | |
5337 #if defined (HAVE_MS_WINDOWS) && (!defined (HAVE_TTY) \ | |
5338 || (defined (HAVE_MSG_SELECT) \ | |
5339 && !defined (DEBUG_TTY_EVENT_STREAM))) | |
5340 init_event_mswindows_late (); | |
5341 #elif defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM) | |
5342 init_event_Xt_late (); | |
5343 #elif defined (HAVE_TTY) | |
5344 init_event_tty_late (); | |
5345 #endif | |
5346 } | |
5347 init_interrupts_late (); | |
5348 } | |
5349 } | |
5350 | |
5351 | |
5352 /* | |
853 | 5353 #### this comment is at least 8 years old and some may no longer apply. |
5354 | |
428 | 5355 useful testcases for v18/v19 compatibility: |
5356 | |
5357 (defun foo () | |
5358 (interactive) | |
5359 (setq unread-command-event (character-to-event ?A (allocate-event))) | |
5360 (setq x (list (read-char) | |
5361 ; (read-key-sequence "") ; try it with and without this | |
5362 last-command-char last-input-char | |
5363 (recent-keys) (this-command-keys)))) | |
5364 (global-set-key "\^Q" 'foo) | |
5365 | |
5366 without the read-key-sequence: | |
444 | 5367 ^Q ==> (?A ?\^Q ?A [... ^Q] [^Q]) |
5368 ^U^U^Q ==> (?A ?\^Q ?A [... ^U ^U ^Q] [^U ^U ^Q]) | |
5369 ^U^U^U^G^Q ==> (?A ?\^Q ?A [... ^U ^U ^U ^G ^Q] [^Q]) | |
428 | 5370 |
5371 with the read-key-sequence: | |
444 | 5372 ^Qb ==> (?A [b] ?\^Q ?b [... ^Q b] [b]) |
5373 ^U^U^Qb ==> (?A [b] ?\^Q ?b [... ^U ^U ^Q b] [b]) | |
5374 ^U^U^U^G^Qb ==> (?A [b] ?\^Q ?b [... ^U ^U ^U ^G ^Q b] [b]) | |
428 | 5375 |
5376 ;the evi-mode command "4dlj.j.j.j.j.j." is also a good testcase (gag) | |
5377 | |
5378 ;(setq x (list (read-char) quit-flag))^J^G | |
5379 ;(let ((inhibit-quit t)) (setq x (list (read-char) quit-flag)))^J^G | |
5380 ;for BOTH, x should get set to (7 t), but no result should be printed. | |
444 | 5381 ;; #### According to the doc of quit-flag, second test should return |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5371
diff
changeset
|
5382 ;; (?\^G nil). XEmacs accidentally returns the correct value. However, |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5371
diff
changeset
|
5383 ;; XEmacs 21.1.12 and 21.2.36 both fail on the first test. |
428 | 5384 |
5385 ;also do this: make two frames, one viewing "*scratch*", the other "foo". | |
5386 ;in *scratch*, type (sit-for 20)^J | |
5387 ;wait a couple of seconds, move cursor to foo, type "a" | |
5388 ;a should be inserted in foo. Cursor highlighting should not change in | |
5389 ;the meantime. | |
5390 | |
5391 ;do it with sleep-for. move cursor into foo, then back into *scratch* | |
5392 ;before typing. | |
5393 ;repeat also with (accept-process-output nil 20) | |
5394 | |
5395 ;make sure ^G aborts sit-for, sleep-for and accept-process-output: | |
5396 | |
5397 (defun tst () | |
5398 (list (condition-case c | |
5399 (sleep-for 20) | |
5400 (quit c)) | |
5401 (read-char))) | |
5402 | |
444 | 5403 (tst)^Ja^G ==> ((quit) ?a) with no signal |
5404 (tst)^J^Ga ==> ((quit) ?a) with no signal | |
5405 (tst)^Jabc^G ==> ((quit) ?a) with no signal, and "bc" inserted in buffer | |
428 | 5406 |
5407 ; with sit-for only do the 2nd test. | |
5408 ; Do all 3 tests with (accept-process-output nil 20) | |
5409 | |
5410 Do this: | |
5411 (setq enable-recursive-minibuffers t | |
5412 minibuffer-max-depth nil) | |
5413 ESC ESC ESC ESC - there are now two minibuffers active | |
5414 C-g C-g C-g - there should be active 0, not 1 | |
5415 Similarly: | |
5416 C-x C-f ~ / ? - wait for "Making completion list..." to display | |
5417 C-g - wait for "Quit" to display | |
5418 C-g - minibuffer should not be active | |
5419 however C-g before "Quit" is displayed should leave minibuffer active. | |
5420 | |
5421 ;do it all in both v18 and v19 and make sure all results are the same. | |
5422 ;all of these cases matter a lot, but some in quite subtle ways. | |
5423 */ | |
5424 | |
5425 /* | |
5426 Additional test cases for accept-process-output, sleep-for, sit-for. | |
5427 Be sure you do all of the above checking for C-g and focus, too! | |
5428 | |
5429 ; Make sure that timer handlers are run during, not after sit-for: | |
5430 (defun timer-check () | |
5431 (add-timeout 2 '(lambda (ignore) (message "timer ran")) nil) | |
5432 (sit-for 5) | |
5433 (message "after sit-for")) | |
5434 | |
5435 ; The first message should appear after 2 seconds, and the final message | |
5436 ; 3 seconds after that. | |
5437 ; repeat above test with (sleep-for 5) and (accept-process-output nil 5) | |
5438 | |
5439 | |
5440 | |
5441 ; Make sure that process filters are run during, not after sit-for. | |
5442 (defun fubar () | |
5443 (message "sit-for = %s" (sit-for 30))) | |
5444 (add-hook 'post-command-hook 'fubar) | |
5445 | |
5446 ; Now type M-x shell RET | |
5447 ; wait for the shell prompt then send: ls RET | |
5448 ; the output of ls should fill immediately, and not wait 30 seconds. | |
5449 | |
5450 ; repeat above test with (sleep-for 30) and (accept-process-output nil 30) | |
5451 | |
5452 | |
5453 | |
5454 ; Make sure that recursive invocations return immediately: | |
5455 (defmacro test-diff-time (start end) | |
5456 `(+ (* (- (car ,end) (car ,start)) 65536.0) | |
5457 (- (cadr ,end) (cadr ,start)) | |
5458 (/ (- (caddr ,end) (caddr ,start)) 1000000.0))) | |
5459 | |
5460 (defun testee (ignore) | |
5461 (sit-for 10)) | |
5462 | |
5463 (defun test-them () | |
5464 (let ((start (current-time)) | |
5465 end) | |
5466 (add-timeout 2 'testee nil) | |
5467 (sit-for 5) | |
5468 (add-timeout 2 'testee nil) | |
5469 (sleep-for 5) | |
5470 (add-timeout 2 'testee nil) | |
5471 (accept-process-output nil 5) | |
5472 (setq end (current-time)) | |
5473 (test-diff-time start end))) | |
5474 | |
5475 (test-them) should sit for 15 seconds. | |
5476 Repeat with testee set to sleep-for and accept-process-output. | |
5477 These should each delay 36 seconds. | |
5478 | |
5479 */ |