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