Mercurial > emacs
annotate src/keyboard.c @ 1409:7fd1c810daca
* dispextern.h: New element of frame structure `max_ascent'.
Removed elements `nruns' and `face_list'.
LINE_HEIGHT and LINE_WIDTH macros removed.
New struct face with associated typedef FACE declared, along with
accessing macros.
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Wed, 14 Oct 1992 23:00:18 +0000 |
parents | 1c2080f78a36 |
children | b3b2d1181d3a |
rev | line source |
---|---|
518 | 1 /* Keyboard and mouse input; editor command loop. |
586 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc. |
518 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Allow config.h to undefine symbols found here. */ | |
21 #include <signal.h> | |
22 | |
23 #include "config.h" | |
24 #include <stdio.h> | |
25 #undef NULL | |
26 #include "termchar.h" | |
27 #include "termopts.h" | |
28 #include "lisp.h" | |
29 #include "termhooks.h" | |
30 #include "macros.h" | |
765 | 31 #include "frame.h" |
518 | 32 #include "window.h" |
33 #include "commands.h" | |
34 #include "buffer.h" | |
35 #include "disptab.h" | |
36 #include "keyboard.h" | |
37 #include <setjmp.h> | |
38 #include <errno.h> | |
39 | |
562 | 40 #ifndef VMS |
41 #include <sys/ioctl.h> | |
42 #endif | |
43 | |
44 #include "syssignal.h" | |
1046
d4b1e5db2b2a
* keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1008
diff
changeset
|
45 #include "systty.h" |
648 | 46 #include "systime.h" |
518 | 47 |
48 extern int errno; | |
49 | |
50 #ifdef HAVE_X_WINDOWS | |
51 extern Lisp_Object Vmouse_grabbed; | |
52 | |
53 /* Make all keyboard buffers much bigger when using X windows. */ | |
54 #define KBD_BUFFER_SIZE 4096 | |
55 #else /* No X-windows, character input */ | |
56 #define KBD_BUFFER_SIZE 256 | |
57 #endif /* No X-windows */ | |
58 | |
59 /* Following definition copied from eval.c */ | |
60 | |
61 struct backtrace | |
62 { | |
63 struct backtrace *next; | |
64 Lisp_Object *function; | |
65 Lisp_Object *args; /* Points to vector of args. */ | |
66 int nargs; /* length of vector. If nargs is UNEVALLED, | |
67 args points to slot holding list of | |
68 unevalled args */ | |
69 char evalargs; | |
70 }; | |
71 | |
72 /* Non-nil disable property on a command means | |
73 do not execute it; call disabled-command-hook's value instead. */ | |
74 Lisp_Object Qdisabled, Vdisabled_command_hook; | |
75 | |
76 #define NUM_RECENT_KEYS (100) | |
77 int recent_keys_index; /* Index for storing next element into recent_keys */ | |
78 int total_keys; /* Total number of elements stored into recent_keys */ | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
79 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */ |
518 | 80 |
81 /* Buffer holding the key that invoked the current command. */ | |
82 Lisp_Object *this_command_keys; | |
83 int this_command_key_count; /* Size in use. */ | |
84 int this_command_keys_size; /* Size allocated. */ | |
85 | |
86 extern int minbuf_level; | |
87 | |
88 extern struct backtrace *backtrace_list; | |
89 | |
90 /* Nonzero means do menu prompting. */ | |
91 static int menu_prompting; | |
92 | |
93 /* Character to see next line of menu prompt. */ | |
94 static Lisp_Object menu_prompt_more_char; | |
95 | |
96 /* For longjmp to where kbd input is being done. */ | |
97 static jmp_buf getcjmp; | |
98 | |
99 /* True while doing kbd input. */ | |
100 int waiting_for_input; | |
101 | |
102 /* True while displaying for echoing. Delays C-g throwing. */ | |
103 static int echoing; | |
104 | |
105 /* Nonzero means C-G should cause immediate error-signal. */ | |
106 int immediate_quit; | |
107 | |
108 /* Character to recognize as the help char. */ | |
109 Lisp_Object help_char; | |
110 | |
111 /* Form to execute when help char is typed. */ | |
112 Lisp_Object Vhelp_form; | |
113 | |
114 /* Character that causes a quit. Normally C-g. | |
115 | |
116 If we are running on an ordinary terminal, this must be an ordinary | |
117 ASCII char, since we want to make it our interrupt character. | |
118 | |
119 If we are not running on an ordinary terminal, it still needs to be | |
120 an ordinary ASCII char. This character needs to be recognized in | |
121 the input interrupt handler. At this point, the keystroke is | |
122 represented as a struct input_event, while the desired quit | |
123 character is specified as a lispy event. The mapping from struct | |
124 input_events to lispy events cannot run in an interrupt handler, | |
125 and the reverse mapping is difficult for anything but ASCII | |
126 keystrokes. | |
127 | |
128 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an | |
129 ASCII character. */ | |
130 int quit_char; | |
131 | |
132 extern Lisp_Object current_global_map; | |
133 extern int minibuf_level; | |
134 | |
135 /* Current depth in recursive edits. */ | |
136 int command_loop_level; | |
137 | |
138 /* Total number of times command_loop has read a key sequence. */ | |
139 int num_input_keys; | |
140 | |
141 /* Last input character read as a command. */ | |
142 Lisp_Object last_command_char; | |
143 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
144 /* Last input character read as a command, not counting menus |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
145 reached by the mouse. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
146 Lisp_Object last_nonmenu_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
147 |
518 | 148 /* Last input character read for any purpose. */ |
149 Lisp_Object last_input_char; | |
150 | |
151 /* If not Qnil, an object to be read as the next command input. */ | |
152 Lisp_Object unread_command_char; | |
153 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
154 /* If not Qnil, this is a switch-frame event which we decided to put |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
155 off until the end of a key sequence. This should be read as the |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
156 next command input, after any unread_command_char. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
157 Lisp_Object unread_switch_frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
158 |
518 | 159 /* Char to use as prefix when a meta character is typed in. |
160 This is bound on entry to minibuffer in case ESC is changed there. */ | |
161 | |
162 Lisp_Object meta_prefix_char; | |
163 | |
164 /* Last size recorded for a current buffer which is not a minibuffer. */ | |
165 static int last_non_minibuf_size; | |
166 | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
167 /* Number of idle seconds before an auto-save and garbage collection. */ |
518 | 168 static Lisp_Object Vauto_save_timeout; |
169 | |
170 /* Total number of times read_char has returned. */ | |
171 int num_input_chars; | |
172 | |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
173 /* Total number of times read_char has returned, outside of macros. */ |
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
174 int num_nonmacro_input_chars; |
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
175 |
518 | 176 /* Auto-save automatically when this many characters have been typed |
177 since the last time. */ | |
178 | |
179 static int auto_save_interval; | |
180 | |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
181 /* Value of num_nonmacro_input_chars as of last auto save. */ |
518 | 182 |
183 int last_auto_save; | |
184 | |
185 /* Last command executed by the editor command loop, not counting | |
186 commands that set the prefix argument. */ | |
187 | |
188 Lisp_Object last_command; | |
189 | |
190 /* The command being executed by the command loop. | |
191 Commands may set this, and the value set will be copied into last_command | |
192 instead of the actual command. */ | |
193 Lisp_Object this_command; | |
194 | |
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
195 /* The frame in which the last input event occurred, or Qmacro if the |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
196 last event came from a macro. |
765 | 197 command_loop_1 will select this frame before running the |
518 | 198 command bound to an event sequence, and read_key_sequence will |
199 toss the existing prefix if the user starts typing at a | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
200 new frame. |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
201 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
202 On a non-multi-frame Emacs, this will be either Qmacro or |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
203 selected_frame. */ |
765 | 204 Lisp_Object Vlast_event_frame; |
518 | 205 |
708 | 206 /* The timestamp of the last input event we received from the X server. |
207 X Windows wants this for selection ownership. */ | |
518 | 208 unsigned long last_event_timestamp; |
209 | |
210 Lisp_Object Qself_insert_command; | |
211 Lisp_Object Qforward_char; | |
212 Lisp_Object Qbackward_char; | |
213 | |
214 /* read_key_sequence stores here the command definition of the | |
215 key sequence that it reads. */ | |
216 Lisp_Object read_key_sequence_cmd; | |
217 | |
218 /* Form to evaluate (if non-nil) when Emacs is started. */ | |
219 Lisp_Object Vtop_level; | |
220 | |
221 /* User-supplied string to translate input characters through. */ | |
222 Lisp_Object Vkeyboard_translate_table; | |
223 | |
224 /* Keymap mapping ASCII function key sequences onto their preferred forms. */ | |
225 extern Lisp_Object Vfunction_key_map; | |
226 | |
227 /* File in which we write all commands we read. */ | |
228 FILE *dribble; | |
229 | |
230 /* Nonzero if input is available. */ | |
231 int input_pending; | |
232 | |
233 /* Nonzero if should obey 0200 bit in input chars as "Meta". */ | |
234 int meta_key; | |
235 | |
236 extern char *pending_malloc_warning; | |
237 | |
238 /* Circular buffer for pre-read keyboard input. */ | |
239 static struct input_event kbd_buffer[KBD_BUFFER_SIZE]; | |
240 | |
241 /* Pointer to next available character in kbd_buffer. | |
242 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty. | |
243 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the | |
244 next available char is in kbd_buffer[0]. */ | |
245 static struct input_event *kbd_fetch_ptr; | |
246 | |
247 /* Pointer to next place to store character in kbd_buffer. This | |
248 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next | |
249 character should go in kbd_buffer[0]. */ | |
250 static struct input_event *kbd_store_ptr; | |
251 | |
252 /* The above pair of variables forms a "queue empty" flag. When we | |
253 enqueue a non-hook event, we increment kbd_write_count. When we | |
254 dequeue a non-hook event, we increment kbd_read_count. We say that | |
255 there is input available iff the two counters are equal. | |
256 | |
257 Why not just have a flag set and cleared by the enqueuing and | |
258 dequeuing functions? Such a flag could be screwed up by interrupts | |
259 at inopportune times. */ | |
260 | |
261 /* If this flag is non-zero, mouse movement events will appear in the | |
262 input stream. If is zero, mouse movement will be ignored. */ | |
263 int do_mouse_tracking; | |
264 | |
265 /* The window system handling code should set this if the mouse has | |
266 moved since the last call to the mouse_position_hook. Calling that | |
267 hook should clear this. Code assumes that if this is set, it can | |
268 call mouse_position_hook to get the promised position, so don't set | |
269 it unless you're prepared to substantiate the claim! */ | |
270 int mouse_moved; | |
271 | |
272 /* True iff there is an event in kbd_buffer, or if mouse tracking is | |
273 enabled and there is a new mouse position in the mouse movement | |
274 buffer. Note that if this is false, that doesn't mean that there | |
275 is readable input; all the events in the queue might be button-up | |
276 events, and do_mouse_tracking might be off. */ | |
277 #define EVENT_QUEUES_EMPTY \ | |
278 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved)) | |
279 | |
280 | |
281 /* Symbols to head events. */ | |
282 Lisp_Object Qmouse_movement; | |
283 | |
284 Lisp_Object Qvscrollbar_part; | |
285 Lisp_Object Qvslider_part; | |
286 Lisp_Object Qvthumbup_part; | |
287 Lisp_Object Qvthumbdown_part; | |
288 | |
289 Lisp_Object Qhscrollbar_part; | |
290 Lisp_Object Qhslider_part; | |
291 Lisp_Object Qhthumbleft_part; | |
292 Lisp_Object Qhthumbright_part; | |
293 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
294 Lisp_Object Qswitch_frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
295 |
518 | 296 /* Symbols to denote kinds of events. */ |
297 Lisp_Object Qfunction_key; | |
298 Lisp_Object Qmouse_click; | |
299 /* Lisp_Object Qmouse_movement; - also an event header */ | |
300 Lisp_Object Qscrollbar_click; | |
301 | |
302 /* Properties of event headers. */ | |
303 Lisp_Object Qevent_kind; | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
304 Lisp_Object Qevent_symbol_elements; |
518 | 305 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
306 /* An event header symbol HEAD may have a property named |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
307 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
308 BASE is the base, unmodified version of HEAD, and MODIFIERS is the |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
309 mask of modifiers applied to it. If present, this is used to help |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
310 speed up parse_modifiers. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
311 Lisp_Object Qevent_symbol_element_mask; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
312 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
313 /* An unmodified event header BASE may have a property named |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
314 Qmodifier_cache, which is an alist mapping modifier masks onto |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
315 modified versions of BASE. If present, this helps speed up |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
316 apply_modifiers. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
317 Lisp_Object Qmodifier_cache; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
318 |
518 | 319 /* Symbols to use for non-text mouse positions. */ |
320 Lisp_Object Qmode_line; | |
732 | 321 Lisp_Object Qvertical_line; |
518 | 322 |
323 | |
648 | 324 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt |
325 happens. */ | |
326 EMACS_TIME *input_available_clear_time; | |
518 | 327 |
328 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode. | |
329 Default is 1 if INTERRUPT_INPUT is defined. */ | |
330 int interrupt_input; | |
331 | |
332 /* Nonzero while interrupts are temporarily deferred during redisplay. */ | |
333 int interrupts_deferred; | |
334 | |
335 /* nonzero means use ^S/^Q for flow control. */ | |
336 int flow_control; | |
337 | |
338 /* Allow m- file to inhibit use of FIONREAD. */ | |
339 #ifdef BROKEN_FIONREAD | |
340 #undef FIONREAD | |
341 #endif | |
342 | |
343 /* We are unable to use interrupts if FIONREAD is not available, | |
344 so flush SIGIO so we won't try. */ | |
345 #ifndef FIONREAD | |
346 #ifdef SIGIO | |
347 #undef SIGIO | |
348 #endif | |
349 #endif | |
350 | |
351 /* If we support X Windows, and won't get an interrupt when input | |
352 arrives from the server, poll periodically so we can detect C-g. */ | |
353 #ifdef HAVE_X_WINDOWS | |
354 #ifndef SIGIO | |
355 #define POLL_FOR_INPUT | |
356 #endif | |
357 #endif | |
358 | |
359 /* Global variable declarations. */ | |
360 | |
361 /* Function for init_keyboard to call with no args (if nonzero). */ | |
362 void (*keyboard_init_hook) (); | |
363 | |
364 static int read_avail_input (); | |
365 static void get_input_pending (); | |
366 | |
367 /* > 0 if we are to echo keystrokes. */ | |
368 static int echo_keystrokes; | |
369 | |
370 /* Nonzero means echo each character as typed. */ | |
371 static int immediate_echo; | |
372 | |
373 /* The text we're echoing in the modeline - partial key sequences, | |
374 usually. '\0'-terminated. */ | |
375 static char echobuf[100]; | |
376 | |
377 /* Where to append more text to echobuf if we want to. */ | |
378 static char *echoptr; | |
379 | |
380 #define min(a,b) ((a)<(b)?(a):(b)) | |
381 #define max(a,b) ((a)>(b)?(a):(b)) | |
382 | |
383 /* Install the string STR as the beginning of the string of echoing, | |
384 so that it serves as a prompt for the next character. | |
385 Also start echoing. */ | |
386 | |
387 echo_prompt (str) | |
388 char *str; | |
389 { | |
390 int len = strlen (str); | |
391 if (len > sizeof echobuf - 4) | |
392 len = sizeof echobuf - 4; | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
393 bcopy (str, echobuf, len); |
518 | 394 echoptr = echobuf + len; |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
395 *echoptr = '\0'; |
518 | 396 |
397 echo (); | |
398 } | |
399 | |
400 /* Add C to the echo string, if echoing is going on. | |
401 C can be a character, which is printed prettily ("M-C-x" and all that | |
402 jazz), or a symbol, whose name is printed. */ | |
403 | |
404 echo_char (c) | |
405 Lisp_Object c; | |
406 { | |
407 extern char *push_key_description (); | |
408 | |
409 if (immediate_echo) | |
410 { | |
411 char *ptr = echoptr; | |
412 | |
413 if (ptr != echobuf) | |
414 *ptr++ = ' '; | |
415 | |
416 /* If someone has passed us a composite event, use its head symbol. */ | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
417 c = EVENT_HEAD (c); |
518 | 418 |
419 if (XTYPE (c) == Lisp_Int) | |
420 { | |
421 if (ptr - echobuf > sizeof echobuf - 6) | |
422 return; | |
423 | |
424 ptr = push_key_description (c, ptr); | |
425 } | |
426 else if (XTYPE (c) == Lisp_Symbol) | |
427 { | |
428 struct Lisp_String *name = XSYMBOL (c)->name; | |
429 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf) | |
430 return; | |
431 bcopy (name->data, ptr, name->size); | |
432 ptr += name->size; | |
433 } | |
434 | |
435 if (echoptr == echobuf && c == help_char) | |
436 { | |
437 strcpy (ptr, " (Type ? for further options)"); | |
438 ptr += strlen (ptr); | |
439 } | |
440 | |
441 *ptr = 0; | |
442 echoptr = ptr; | |
443 | |
444 echo (); | |
445 } | |
446 } | |
447 | |
448 /* Temporarily add a dash to the end of the echo string if it's not | |
449 empty, so that it serves as a mini-prompt for the very next character. */ | |
450 | |
451 echo_dash () | |
452 { | |
453 if (!immediate_echo && echoptr == echobuf) | |
454 return; | |
455 | |
456 /* Put a dash at the end of the buffer temporarily, | |
457 but make it go away when the next character is added. */ | |
458 echoptr[0] = '-'; | |
459 echoptr[1] = 0; | |
460 | |
461 echo (); | |
462 } | |
463 | |
464 /* Display the current echo string, and begin echoing if not already | |
465 doing so. */ | |
466 | |
467 echo () | |
468 { | |
469 if (!immediate_echo) | |
470 { | |
471 int i; | |
472 immediate_echo = 1; | |
473 | |
474 for (i = 0; i < this_command_key_count; i++) | |
475 echo_char (this_command_keys[i]); | |
476 echo_dash (); | |
477 } | |
478 | |
479 echoing = 1; | |
480 message1 (echobuf); | |
481 echoing = 0; | |
482 | |
483 if (waiting_for_input && !NILP (Vquit_flag)) | |
484 quit_throw_to_read_char (); | |
485 } | |
486 | |
487 /* Turn off echoing, for the start of a new command. */ | |
488 | |
489 cancel_echoing () | |
490 { | |
491 immediate_echo = 0; | |
492 echoptr = echobuf; | |
493 } | |
494 | |
495 /* Return the length of the current echo string. */ | |
496 | |
497 static int | |
498 echo_length () | |
499 { | |
500 return echoptr - echobuf; | |
501 } | |
502 | |
503 /* Truncate the current echo message to its first LEN chars. | |
504 This and echo_char get used by read_key_sequence when the user | |
765 | 505 switches frames while entering a key sequence. */ |
518 | 506 |
507 static void | |
508 echo_truncate (len) | |
509 int len; | |
510 { | |
511 echobuf[len] = '\0'; | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
512 echoptr = echobuf + len; |
518 | 513 } |
514 | |
515 | |
516 /* Functions for manipulating this_command_keys. */ | |
517 static void | |
518 add_command_key (key) | |
519 Lisp_Object key; | |
520 { | |
521 if (this_command_key_count == this_command_keys_size) | |
522 { | |
523 this_command_keys_size *= 2; | |
524 this_command_keys | |
525 = (Lisp_Object *) xrealloc (this_command_keys, | |
526 (this_command_keys_size | |
527 * sizeof (Lisp_Object))); | |
528 } | |
529 this_command_keys[this_command_key_count++] = key; | |
530 } | |
531 | |
532 Lisp_Object | |
533 recursive_edit_1 () | |
534 { | |
535 int count = specpdl_ptr - specpdl; | |
536 Lisp_Object val; | |
537 | |
538 if (command_loop_level > 0) | |
539 { | |
540 specbind (Qstandard_output, Qt); | |
541 specbind (Qstandard_input, Qt); | |
542 } | |
543 | |
544 val = command_loop (); | |
545 if (EQ (val, Qt)) | |
546 Fsignal (Qquit, Qnil); | |
547 | |
548 unbind_to (count); | |
549 return Qnil; | |
550 } | |
551 | |
552 /* When an auto-save happens, record the "time", and don't do again soon. */ | |
553 record_auto_save () | |
554 { | |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
555 last_auto_save = num_nonmacro_input_chars; |
518 | 556 } |
557 | |
558 Lisp_Object recursive_edit_unwind (), command_loop (); | |
559 | |
560 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | |
561 "Invoke the editor command loop recursively.\n\ | |
562 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\ | |
563 that tells this function to return.\n\ | |
564 Alternately, `(throw 'exit t)' makes this function signal an error.\n\ | |
565 This function is called by the editor initialization to begin editing.") | |
566 () | |
567 { | |
568 int count = specpdl_ptr - specpdl; | |
569 Lisp_Object val; | |
570 | |
571 command_loop_level++; | |
572 update_mode_lines = 1; | |
573 | |
574 record_unwind_protect (recursive_edit_unwind, | |
575 (command_loop_level | |
576 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)) | |
577 ? Fcurrent_buffer () | |
578 : Qnil); | |
579 recursive_edit_1 (); | |
580 return unbind_to (count, Qnil); | |
581 } | |
582 | |
583 Lisp_Object | |
584 recursive_edit_unwind (buffer) | |
585 Lisp_Object buffer; | |
586 { | |
587 if (!NILP (buffer)) | |
588 Fset_buffer (buffer); | |
589 | |
590 command_loop_level--; | |
591 update_mode_lines = 1; | |
592 return Qnil; | |
593 } | |
594 | |
595 Lisp_Object | |
596 cmd_error (data) | |
597 Lisp_Object data; | |
598 { | |
599 Lisp_Object errmsg, tail, errname, file_error; | |
600 Lisp_Object stream; | |
601 struct gcpro gcpro1; | |
602 int i; | |
603 | |
604 Vquit_flag = Qnil; | |
605 Vinhibit_quit = Qt; | |
606 Vstandard_output = Qt; | |
607 Vstandard_input = Qt; | |
608 Vexecuting_macro = Qnil; | |
609 echo_area_glyphs = 0; | |
610 | |
765 | 611 /* If the window system or terminal frame hasn't been initialized |
518 | 612 yet, or we're not interactive, it's best to dump this message out |
613 to stderr and exit. */ | |
765 | 614 if (! FRAME_MESSAGE_BUF (selected_frame) |
518 | 615 || noninteractive) |
616 stream = Qexternal_debugging_output; | |
617 else | |
618 { | |
619 Fdiscard_input (); | |
620 bitch_at_user (); | |
621 stream = Qt; | |
622 } | |
623 | |
624 errname = Fcar (data); | |
625 | |
626 if (EQ (errname, Qerror)) | |
627 { | |
628 data = Fcdr (data); | |
629 if (!CONSP (data)) data = Qnil; | |
630 errmsg = Fcar (data); | |
631 file_error = Qnil; | |
632 } | |
633 else | |
634 { | |
635 errmsg = Fget (errname, Qerror_message); | |
636 file_error = Fmemq (Qfile_error, | |
637 Fget (errname, Qerror_conditions)); | |
638 } | |
639 | |
640 /* Print an error message including the data items. | |
641 This is done by printing it into a scratch buffer | |
642 and then making a copy of the text in the buffer. */ | |
643 | |
644 if (!CONSP (data)) data = Qnil; | |
645 tail = Fcdr (data); | |
646 GCPRO1 (tail); | |
647 | |
648 /* For file-error, make error message by concatenating | |
649 all the data items. They are all strings. */ | |
650 if (!NILP (file_error) && !NILP (tail)) | |
651 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr; | |
652 | |
653 if (XTYPE (errmsg) == Lisp_String) | |
654 Fprinc (errmsg, stream); | |
655 else | |
656 write_string_1 ("peculiar error", -1, stream); | |
657 | |
658 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++) | |
659 { | |
660 write_string_1 (i ? ", " : ": ", 2, stream); | |
661 if (!NILP (file_error)) | |
662 Fprinc (Fcar (tail), stream); | |
663 else | |
664 Fprin1 (Fcar (tail), stream); | |
665 } | |
666 UNGCPRO; | |
667 | |
765 | 668 /* If the window system or terminal frame hasn't been initialized |
518 | 669 yet, or we're in -batch mode, this error should cause Emacs to exit. */ |
765 | 670 if (! FRAME_MESSAGE_BUF (selected_frame) |
518 | 671 || noninteractive) |
672 { | |
673 Fterpri (stream); | |
674 Fkill_emacs (make_number (-1)); | |
675 } | |
676 | |
677 Vquit_flag = Qnil; | |
678 | |
679 Vinhibit_quit = Qnil; | |
680 return make_number (0); | |
681 } | |
682 | |
683 Lisp_Object command_loop_1 (); | |
684 Lisp_Object command_loop_2 (); | |
685 Lisp_Object top_level_1 (); | |
686 | |
687 /* Entry to editor-command-loop. | |
688 This level has the catches for exiting/returning to editor command loop. | |
689 It returns nil to exit recursive edit, t to abort it. */ | |
690 | |
691 Lisp_Object | |
692 command_loop () | |
693 { | |
694 if (command_loop_level > 0 || minibuf_level > 0) | |
695 { | |
696 return internal_catch (Qexit, command_loop_2, Qnil); | |
697 } | |
698 else | |
699 while (1) | |
700 { | |
701 internal_catch (Qtop_level, top_level_1, Qnil); | |
702 internal_catch (Qtop_level, command_loop_2, Qnil); | |
703 | |
704 /* End of file in -batch run causes exit here. */ | |
705 if (noninteractive) | |
706 Fkill_emacs (Qt); | |
707 } | |
708 } | |
709 | |
710 /* Here we catch errors in execution of commands within the | |
711 editing loop, and reenter the editing loop. | |
712 When there is an error, cmd_error runs and returns a non-nil | |
713 value to us. A value of nil means that cmd_loop_1 itself | |
714 returned due to end of file (or end of kbd macro). */ | |
715 | |
716 Lisp_Object | |
717 command_loop_2 () | |
718 { | |
719 register Lisp_Object val; | |
720 | |
721 do | |
722 val = internal_condition_case (command_loop_1, Qerror, cmd_error); | |
723 while (!NILP (val)); | |
724 | |
725 return Qnil; | |
726 } | |
727 | |
728 Lisp_Object | |
729 top_level_2 () | |
730 { | |
731 return Feval (Vtop_level); | |
732 } | |
733 | |
734 Lisp_Object | |
735 top_level_1 () | |
736 { | |
737 /* On entry to the outer level, run the startup file */ | |
738 if (!NILP (Vtop_level)) | |
739 internal_condition_case (top_level_2, Qerror, cmd_error); | |
740 else if (!NILP (Vpurify_flag)) | |
741 message ("Bare impure Emacs (standard Lisp code not loaded)"); | |
742 else | |
743 message ("Bare Emacs (standard Lisp code not loaded)"); | |
744 return Qnil; | |
745 } | |
746 | |
747 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "", | |
748 "Exit all recursive editing levels.") | |
749 () | |
750 { | |
751 Fthrow (Qtop_level, Qnil); | |
752 } | |
753 | |
754 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "", | |
755 "Exit from the innermost recursive edit or minibuffer.") | |
756 () | |
757 { | |
758 if (command_loop_level > 0 || minibuf_level > 0) | |
759 Fthrow (Qexit, Qnil); | |
760 | |
761 error ("No recursive edit is in progress"); | |
762 } | |
763 | |
764 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "", | |
765 "Abort the command that requested this recursive edit or minibuffer input.") | |
766 () | |
767 { | |
768 if (command_loop_level > 0 || minibuf_level > 0) | |
769 Fthrow (Qexit, Qt); | |
770 | |
771 error ("No recursive edit is in progress"); | |
772 } | |
773 | |
774 /* This is the actual command reading loop, | |
775 sans error-handling encapsulation. */ | |
776 | |
777 Lisp_Object Fcommand_execute (); | |
778 static int read_key_sequence (); | |
779 | |
780 Lisp_Object | |
781 command_loop_1 () | |
782 { | |
783 Lisp_Object cmd; | |
784 int lose; | |
785 int nonundocount; | |
786 Lisp_Object keybuf[30]; | |
787 int i; | |
788 int no_redisplay; | |
789 int no_direct; | |
790 | |
791 Vprefix_arg = Qnil; | |
792 waiting_for_input = 0; | |
793 cancel_echoing (); | |
794 | |
795 /* Don't clear out last_command at the beginning of a macro. */ | |
796 if (XTYPE (Vexecuting_macro) != Lisp_String) | |
797 last_command = Qt; | |
798 | |
799 nonundocount = 0; | |
800 no_redisplay = 0; | |
801 this_command_key_count = 0; | |
802 | |
803 while (1) | |
804 { | |
805 /* Install chars successfully executed in kbd macro. */ | |
806 | |
807 if (defining_kbd_macro && NILP (Vprefix_arg)) | |
808 finalize_kbd_macro_chars (); | |
809 | |
810 /* Make sure the current window's buffer is selected. */ | |
811 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer) | |
812 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer)); | |
813 | |
814 /* Display any malloc warning that just came out. Use while because | |
815 displaying one warning can cause another. */ | |
816 | |
817 while (pending_malloc_warning) | |
818 display_malloc_warning (); | |
819 | |
820 no_direct = 0; | |
821 | |
822 /* If minibuffer on and echo area in use, | |
823 wait 2 sec and redraw minibufer. */ | |
824 | |
825 if (minibuf_level && echo_area_glyphs) | |
826 { | |
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
827 /* Bind inhibit-quit to t so that C-g gets read in |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
828 rather than quitting back to the minibuffer. */ |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
829 int count = specpdl_ptr - specpdl; |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
830 specbind (Qinhibit_quit, Qt); |
518 | 831 Fsit_for (make_number (2), Qnil, Qnil); |
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
832 unbind_to (count); |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
833 |
518 | 834 echo_area_glyphs = 0; |
835 no_direct = 1; | |
836 if (!NILP (Vquit_flag)) | |
837 { | |
838 Vquit_flag = Qnil; | |
839 unread_command_char = make_number (quit_char); | |
840 } | |
841 } | |
842 | |
843 #ifdef C_ALLOCA | |
844 alloca (0); /* Cause a garbage collection now */ | |
845 /* Since we can free the most stuff here. */ | |
846 #endif /* C_ALLOCA */ | |
847 | |
848 /* Read next key sequence; i gets its length. */ | |
849 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0); | |
850 | |
851 ++num_input_keys; | |
852 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
853 #if 0 /* This shouldn't be necessary, now that we have switch-frame events. */ |
765 | 854 #ifdef MULTI_FRAME |
855 /* Select the frame that the key sequence came from. */ | |
856 if (XTYPE (Vlast_event_frame) == Lisp_Frame | |
857 && XFRAME (Vlast_event_frame) != selected_frame) | |
858 Fselect_frame (Vlast_event_frame, Qnil); | |
518 | 859 #endif |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
860 #endif |
518 | 861 |
862 /* Now we have read a key sequence of length I, | |
863 or else I is 0 and we found end of file. */ | |
864 | |
865 if (i == 0) /* End of file -- happens only in */ | |
866 return Qnil; /* a kbd macro, at the end. */ | |
867 | |
868 last_command_char = keybuf[i - 1]; | |
869 | |
870 cmd = read_key_sequence_cmd; | |
871 if (!NILP (Vexecuting_macro)) | |
872 { | |
873 if (!NILP (Vquit_flag)) | |
874 { | |
875 Vexecuting_macro = Qt; | |
876 QUIT; /* Make some noise. */ | |
877 /* Will return since macro now empty. */ | |
878 } | |
879 } | |
880 | |
881 /* Do redisplay processing after this command except in special | |
882 cases identified below that set no_redisplay to 1. */ | |
883 no_redisplay = 0; | |
884 | |
885 /* Execute the command. */ | |
886 | |
887 if (NILP (cmd)) | |
888 { | |
889 /* nil means key is undefined. */ | |
890 bitch_at_user (); | |
891 defining_kbd_macro = 0; | |
892 update_mode_lines = 1; | |
893 Vprefix_arg = Qnil; | |
894 } | |
895 else | |
896 { | |
897 this_command = cmd; | |
898 if (NILP (Vprefix_arg) && ! no_direct) | |
899 { | |
900 /* Recognize some common commands in common situations and | |
901 do them directly. */ | |
902 if (EQ (cmd, Qforward_char) && point < ZV) | |
903 { | |
904 struct Lisp_Vector *dp | |
905 = window_display_table (XWINDOW (selected_window)); | |
906 lose = FETCH_CHAR (point); | |
907 SET_PT (point + 1); | |
908 if (((dp == 0 && lose >= 040 && lose < 0177) | |
909 || | |
910 (dp && (XTYPE (dp->contents[lose]) != Lisp_String | |
911 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH)))) | |
912 && (XFASTINT (XWINDOW (selected_window)->last_modified) | |
913 >= MODIFF) | |
914 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
915 == point - 1) | |
916 && !windows_or_buffers_changed | |
917 && EQ (current_buffer->selective_display, Qnil) | |
918 && !detect_input_pending () | |
919 && NILP (Vexecuting_macro)) | |
920 no_redisplay = direct_output_forward_char (1); | |
921 goto directly_done; | |
922 } | |
923 else if (EQ (cmd, Qbackward_char) && point > BEGV) | |
924 { | |
925 struct Lisp_Vector *dp | |
926 = window_display_table (XWINDOW (selected_window)); | |
927 SET_PT (point - 1); | |
928 lose = FETCH_CHAR (point); | |
929 if (((dp == 0 && lose >= 040 && lose < 0177) | |
930 || | |
931 (dp && (XTYPE (dp->contents[lose]) != Lisp_String | |
932 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH)))) | |
933 && (XFASTINT (XWINDOW (selected_window)->last_modified) | |
934 >= MODIFF) | |
935 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
936 == point + 1) | |
937 && !windows_or_buffers_changed | |
938 && EQ (current_buffer->selective_display, Qnil) | |
939 && !detect_input_pending () | |
940 && NILP (Vexecuting_macro)) | |
941 no_redisplay = direct_output_forward_char (-1); | |
942 goto directly_done; | |
943 } | |
944 else if (EQ (cmd, Qself_insert_command) | |
945 /* Try this optimization only on ascii keystrokes. */ | |
946 && XTYPE (last_command_char) == Lisp_Int) | |
947 { | |
948 unsigned char c = XINT (last_command_char); | |
949 | |
950 if (NILP (Vexecuting_macro) && | |
951 !EQ (minibuf_window, selected_window)) | |
952 { | |
953 if (!nonundocount || nonundocount >= 20) | |
954 { | |
955 Fundo_boundary (); | |
956 nonundocount = 0; | |
957 } | |
958 nonundocount++; | |
959 } | |
960 lose = (XFASTINT (XWINDOW (selected_window)->last_modified) | |
961 < MODIFF) | |
962 || (XFASTINT (XWINDOW (selected_window)->last_point) | |
963 != point) | |
964 || MODIFF <= current_buffer->save_modified | |
965 || windows_or_buffers_changed | |
966 || !EQ (current_buffer->selective_display, Qnil) | |
967 || detect_input_pending () | |
968 || !NILP (Vexecuting_macro); | |
969 if (internal_self_insert (c, 0)) | |
970 { | |
971 lose = 1; | |
972 nonundocount = 0; | |
973 } | |
974 if (!lose && | |
975 (point == ZV || FETCH_CHAR (point) == '\n')) | |
976 { | |
977 struct Lisp_Vector *dp | |
978 = window_display_table (XWINDOW (selected_window)); | |
979 | |
980 if (dp == 0 || XTYPE (dp->contents[c]) != Lisp_String) | |
981 no_redisplay = direct_output_for_insert (c); | |
982 else if (XSTRING (dp->contents[c])->size | |
983 == sizeof (GLYPH)) | |
984 no_redisplay = | |
985 direct_output_for_insert (*(GLYPH *)XSTRING (dp->contents[c])->data); | |
986 } | |
987 goto directly_done; | |
988 } | |
989 } | |
990 | |
991 /* Here for a command that isn't executed directly */ | |
992 | |
993 nonundocount = 0; | |
994 if (NILP (Vprefix_arg)) | |
995 Fundo_boundary (); | |
996 Fcommand_execute (cmd, Qnil); | |
997 | |
998 } | |
547 | 999 directly_done: ; |
518 | 1000 |
1001 /* If there is a prefix argument, | |
1002 1) We don't want last_command to be ``universal-argument'' | |
1003 (that would be dumb), so don't set last_command, | |
1004 2) we want to leave echoing on so that the prefix will be | |
1005 echoed as part of this key sequence, so don't call | |
1006 cancel_echoing, and | |
1007 3) we want to leave this_command_key_count non-zero, so that | |
1008 read_char will realize that it is re-reading a character, and | |
1009 not echo it a second time. */ | |
1010 if (NILP (Vprefix_arg)) | |
1011 { | |
1012 last_command = this_command; | |
1013 cancel_echoing (); | |
1014 this_command_key_count = 0; | |
1015 } | |
1016 } | |
1017 } | |
1018 | |
1019 /* Number of seconds between polling for input. */ | |
1020 int polling_period; | |
1021 | |
1022 /* Nonzero means polling for input is temporarily suppresed. */ | |
1023 int poll_suppress_count; | |
1024 | |
1025 #ifdef POLL_FOR_INPUT | |
1026 int polling_for_input; | |
1027 | |
1028 /* Handle an alarm once each second and read pending input | |
1029 so as to handle a C-g if it comces in. */ | |
1030 | |
1031 SIGTYPE | |
1032 input_poll_signal () | |
1033 { | |
1034 #ifdef HAVE_X_WINDOWS | |
1035 extern int x_input_blocked; | |
1036 if (x_input_blocked == 0) | |
1037 #endif | |
1038 if (!waiting_for_input) | |
1039 read_avail_input (0); | |
1040 signal (SIGALRM, input_poll_signal); | |
1041 alarm (polling_period); | |
1042 } | |
1043 | |
1044 #endif | |
1045 | |
1046 /* Begin signals to poll for input, if they are appropriate. | |
1047 This function is called unconditionally from various places. */ | |
1048 | |
1049 start_polling () | |
1050 { | |
1051 #ifdef POLL_FOR_INPUT | |
1052 if (read_socket_hook) | |
1053 { | |
1054 poll_suppress_count--; | |
1055 if (poll_suppress_count == 0) | |
1056 { | |
1057 signal (SIGALRM, input_poll_signal); | |
1058 polling_for_input = 1; | |
1059 alarm (polling_period); | |
1060 } | |
1061 } | |
1062 #endif | |
1063 } | |
1064 | |
1065 /* Turn off polling. */ | |
1066 | |
1067 stop_polling () | |
1068 { | |
1069 #ifdef POLL_FOR_INPUT | |
1070 if (read_socket_hook) | |
1071 { | |
1072 if (poll_suppress_count == 0) | |
1073 { | |
1074 polling_for_input = 0; | |
1075 alarm (0); | |
1076 } | |
1077 poll_suppress_count++; | |
1078 } | |
1079 #endif | |
1080 } | |
1081 | |
1082 /* Input of single characters from keyboard */ | |
1083 | |
1084 Lisp_Object print_help (); | |
1085 static Lisp_Object kbd_buffer_get_event (); | |
1086 | |
1087 /* read a character from the keyboard; call the redisplay if needed */ | |
1088 /* commandflag 0 means do not do auto-saving, but do do redisplay. | |
1089 -1 means do not do redisplay, but do do autosaving. | |
1090 1 means do both. */ | |
1091 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1092 /* The arguments MAPS and NMAPS are for menu prompting. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1093 MAPS is an array of keymaps; NMAPS is the length of MAPS. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1094 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1095 PREV_EVENT is the previous input event, or nil if we are reading |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1096 the first event of a key sequence. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1097 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1098 If we use a mouse menu to read the input, we store 1 into *USED_MOUSE_MENU. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1099 Otherwise we store 0 there. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1100 |
518 | 1101 Lisp_Object |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1102 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) |
518 | 1103 int commandflag; |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1104 int nmaps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1105 Lisp_Object *maps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1106 Lisp_Object prev_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1107 int *used_mouse_menu; |
518 | 1108 { |
1109 register Lisp_Object c; | |
1110 int count; | |
1111 jmp_buf save_jump; | |
1112 | |
1113 if (!NILP (unread_command_char)) | |
1114 { | |
1115 c = unread_command_char; | |
1116 unread_command_char = Qnil; | |
1117 | |
1118 if (this_command_key_count == 0) | |
1119 goto reread_first; | |
1120 else | |
1121 goto reread; | |
1122 } | |
1123 | |
1124 if (!NILP (Vexecuting_macro)) | |
1125 { | |
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1126 /* We set this to Qmacro; since that's not a frame, nobody will |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1127 try to switch frames on us, and the selected window will |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1128 remain unchanged. |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1129 |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1130 Since this event came from a macro, it would be misleading to |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1131 leave Vlast_event_frame set to whereever the last real event |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1132 came from. Normally, command_loop_1 selects |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1133 Vlast_event_frame after each command is read, but events read |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1134 from a macro should never cause a new frame to be selected. */ |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1135 Vlast_event_frame = Qmacro; |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1136 |
518 | 1137 if (executing_macro_index >= Flength (Vexecuting_macro)) |
1138 { | |
1139 XSET (c, Lisp_Int, -1); | |
1140 return c; | |
1141 } | |
1142 | |
1143 c = Faref (Vexecuting_macro, make_number (executing_macro_index)); | |
1144 executing_macro_index++; | |
1145 | |
1146 goto from_macro; | |
1147 } | |
1148 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1149 if (!NILP (unread_switch_frame)) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1150 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1151 c = unread_switch_frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1152 unread_switch_frame = Qnil; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1153 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1154 /* This event should make it into this_command_keys, and get echoed |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1155 again, so we go to reread, rather than reread_first. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1156 goto reread; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1157 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1158 |
518 | 1159 /* Save outer setjmp data, in case called recursively. */ |
650 | 1160 save_getcjmp (save_jump); |
518 | 1161 |
1162 stop_polling (); | |
1163 | |
1164 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) | |
1165 redisplay (); | |
1166 | |
1167 if (_setjmp (getcjmp)) | |
1168 { | |
1169 XSET (c, Lisp_Int, quit_char); | |
765 | 1170 XSET (Vlast_event_frame, Lisp_Frame, selected_frame); |
518 | 1171 |
1172 goto non_reread; | |
1173 } | |
1174 | |
1175 /* Message turns off echoing unless more keystrokes turn it on again. */ | |
1176 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf) | |
1177 cancel_echoing (); | |
1178 else | |
1179 /* If already echoing, continue. */ | |
1180 echo_dash (); | |
1181 | |
1182 /* If in middle of key sequence and minibuffer not active, | |
1183 start echoing if enough time elapses. */ | |
1184 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0 | |
1185 && echo_keystrokes > 0 | |
1186 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0)) | |
1187 { | |
1188 Lisp_Object tem0; | |
1189 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1190 /* After a mouse event, start echoing right away. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1191 This is because we are probably about to display a menu, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1192 and we don't want to delay before doing so. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1193 if (XTYPE (prev_event) == Lisp_Cons) |
518 | 1194 echo (); |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1195 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1196 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1197 tem0 = sit_for (echo_keystrokes, 0, 1, 1); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1198 if (EQ (tem0, Qt)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1199 echo (); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1200 } |
518 | 1201 } |
1202 | |
1203 /* Maybe auto save due to number of keystrokes or idle time. */ | |
1204 | |
1205 if (commandflag != 0 | |
1206 && auto_save_interval > 0 | |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1207 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20) |
518 | 1208 && !detect_input_pending ()) |
1209 { | |
1210 jmp_buf temp; | |
1211 save_getcjmp (temp); | |
1212 Fdo_auto_save (Qnil, Qnil); | |
1213 restore_getcjmp (temp); | |
1214 } | |
1215 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1216 /* Try reading a character via menu prompting. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1217 Try this before the sit-for, because the sit-for |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1218 would do the wrong thing if we are supposed to do |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1219 menu prompting. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1220 c = Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1221 if (INTERACTIVE && !NILP (prev_event)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1222 c = read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1223 |
518 | 1224 /* Slow down auto saves logarithmically in size of current buffer, |
1225 and garbage collect while we're at it. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1226 if (NILP (c)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1227 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1228 int delay_level, buffer_size; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1229 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1230 if (! MINI_WINDOW_P (XWINDOW (selected_window))) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1231 last_non_minibuf_size = Z - BEG; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1232 buffer_size = (last_non_minibuf_size >> 8) + 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1233 delay_level = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1234 while (buffer_size > 64) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1235 delay_level++, buffer_size -= buffer_size >> 2; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1236 if (delay_level < 4) delay_level = 4; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1237 /* delay_level is 4 for files under around 50k, 7 at 100k, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1238 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1239 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1240 /* Auto save if enough time goes by without input. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1241 if (commandflag != 0 |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1242 && num_nonmacro_input_chars > last_auto_save |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1243 && XTYPE (Vauto_save_timeout) == Lisp_Int |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1244 && XINT (Vauto_save_timeout) > 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1245 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1246 Lisp_Object tem0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1247 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1248 tem0 = sit_for (delay, 0, 1, 1); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1249 if (EQ (tem0, Qt)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1250 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1251 jmp_buf temp; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1252 save_getcjmp (temp); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1253 Fdo_auto_save (Qnil, Qnil); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1254 restore_getcjmp (temp); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1255 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1256 /* If we have auto-saved and there is still no input |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1257 available, garbage collect if there has been enough |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1258 consing going on to make it worthwhile. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1259 if (!detect_input_pending () |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1260 && consing_since_gc > gc_cons_threshold / 2) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1261 Fgarbage_collect (); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1262 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1263 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1264 } |
518 | 1265 |
1266 /* Actually read a character, waiting if necessary. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1267 if (NILP (c)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1268 c = kbd_buffer_get_event (); |
518 | 1269 |
1270 if (NILP (c)) | |
1271 abort (); /* Don't think this can happen. */ | |
1272 | |
1273 /* Terminate Emacs in batch mode if at eof. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1274 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0) |
518 | 1275 Fkill_emacs (make_number (1)); |
1276 | |
1277 non_reread: | |
1278 | |
650 | 1279 restore_getcjmp (save_jump); |
518 | 1280 |
1281 start_polling (); | |
1282 | |
1283 echo_area_glyphs = 0; | |
1284 | |
1285 /* Handle things that only apply to characters. */ | |
1286 if (XTYPE (c) == Lisp_Int) | |
1287 { | |
1288 /* If kbd_buffer_get_event gave us an EOF, return that. */ | |
1289 if (XINT (c) < 0) | |
1290 return c; | |
1291 | |
1292 /* Strip the high bits, and maybe the meta bit too. */ | |
1293 XSETINT (c, c & (meta_key ? 0377 : 0177)); | |
1294 | |
1295 if (XTYPE (Vkeyboard_translate_table) == Lisp_String | |
1296 && XSTRING (Vkeyboard_translate_table)->size > XINT (c)) | |
1297 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[c]); | |
1298 } | |
1299 | |
1300 total_keys++; | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
1301 XVECTOR (recent_keys)->contents[recent_keys_index] = c; |
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
1302 if (++recent_keys_index >= NUM_RECENT_KEYS) |
518 | 1303 recent_keys_index = 0; |
1304 | |
1305 /* Write c to the dribble file. If c is a lispy event, write | |
1306 the event's symbol to the dribble file, in <brackets>. Bleaugh. | |
1307 If you, dear reader, have a better idea, you've got the source. :-) */ | |
1308 if (dribble) | |
1309 { | |
1310 if (XTYPE (c) == Lisp_Int) | |
1311 putc (c, dribble); | |
1312 else | |
1313 { | |
1314 Lisp_Object dribblee = c; | |
1315 | |
1316 /* If it's a structured event, take the event header. */ | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1317 dribblee = EVENT_HEAD (dribblee); |
518 | 1318 |
1319 if (XTYPE (c) == Lisp_Symbol) | |
1320 { | |
1321 putc ('<', dribble); | |
1322 fwrite (XSYMBOL (c)->name->data, sizeof (char), | |
1323 XSYMBOL (c)->name->size, | |
1324 dribble); | |
1325 putc ('>', dribble); | |
1326 } | |
1327 } | |
1328 | |
1329 fflush (dribble); | |
1330 } | |
1331 | |
1332 store_kbd_macro_char (c); | |
1333 | |
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1334 num_nonmacro_input_chars++; |
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1335 |
518 | 1336 from_macro: |
1337 reread_first: | |
1338 echo_char (c); | |
1339 | |
1340 /* Record this character as part of the current key. */ | |
1341 add_command_key (c); | |
1342 | |
1343 /* Re-reading in the middle of a command */ | |
1344 reread: | |
1345 last_input_char = c; | |
1346 num_input_chars++; | |
1347 | |
1348 /* Process the help character specially if enabled */ | |
1349 if (EQ (c, help_char) && !NILP (Vhelp_form)) | |
1350 { | |
1351 Lisp_Object tem0; | |
1352 count = specpdl_ptr - specpdl; | |
1353 | |
1354 record_unwind_protect (Fset_window_configuration, | |
1355 Fcurrent_window_configuration (Qnil)); | |
1356 | |
1357 tem0 = Feval (Vhelp_form); | |
1358 if (XTYPE (tem0) == Lisp_String) | |
1359 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0); | |
1360 | |
1361 cancel_echoing (); | |
1362 c = read_char (0); | |
765 | 1363 /* Remove the help from the frame */ |
518 | 1364 unbind_to (count, Qnil); |
1365 redisplay (); | |
1366 if (EQ (c, make_number (040))) | |
1367 { | |
1368 cancel_echoing (); | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1369 c = read_char (0, 0, 0, Qnil, 0); |
518 | 1370 } |
1371 } | |
1372 | |
1373 return c; | |
1374 } | |
1375 | |
1376 Lisp_Object | |
1377 print_help (object) | |
1378 Lisp_Object object; | |
1379 { | |
1380 Fprinc (object, Qnil); | |
1381 return Qnil; | |
1382 } | |
1383 | |
1384 /* Copy out or in the info on where C-g should throw to. | |
1385 This is used when running Lisp code from within get_char, | |
1386 in case get_char is called recursively. | |
1387 See read_process_output. */ | |
1388 | |
1389 save_getcjmp (temp) | |
1390 jmp_buf temp; | |
1391 { | |
1392 bcopy (getcjmp, temp, sizeof getcjmp); | |
1393 } | |
1394 | |
1395 restore_getcjmp (temp) | |
1396 jmp_buf temp; | |
1397 { | |
1398 bcopy (temp, getcjmp, sizeof getcjmp); | |
1399 } | |
1400 | |
1401 | |
1402 /* Low level keyboard/mouse input. | |
1403 kbd_buffer_store_event places events in kbd_buffer, and | |
1404 kbd_buffer_get_event retrieves them. | |
1405 mouse_moved indicates when the mouse has moved again, and | |
1406 *mouse_position_hook provides the mouse position. */ | |
1407 | |
1408 /* Set this for debugging, to have a way to get out */ | |
1409 int stop_character; | |
1410 | |
765 | 1411 extern int frame_garbaged; |
518 | 1412 |
1413 /* Return true iff there are any events in the queue that read-char | |
1414 would return. If this returns false, a read-char would block. */ | |
1415 static int | |
1416 readable_events () | |
1417 { | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1418 return ! EVENT_QUEUES_EMPTY; |
518 | 1419 } |
1420 | |
1421 | |
1422 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use | |
1423 of this function. */ | |
1424 static Lisp_Object | |
1425 tracking_off (old_value) | |
1426 Lisp_Object old_value; | |
1427 { | |
1428 if (! XFASTINT (old_value)) | |
1429 { | |
1430 do_mouse_tracking = 0; | |
1431 | |
1432 /* Redisplay may have been preempted because there was input | |
1433 available, and it assumes it will be called again after the | |
1434 input has been processed. If the only input available was | |
1435 the sort that we have just disabled, then we need to call | |
1436 redisplay. */ | |
1437 if (!readable_events ()) | |
1438 { | |
1439 redisplay_preserve_echo_area (); | |
1440 get_input_pending (&input_pending); | |
1441 } | |
1442 } | |
1443 } | |
1444 | |
1445 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0, | |
1446 "Evaluate BODY with mouse movement and button release events enabled.\n\ | |
682
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1447 Within a `track-mouse', mouse motion and button releases generate input\n\ |
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1448 events that you can read with `read-event'.\n\ |
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1449 Normally, these occurrences don't generate events.") |
518 | 1450 (args) |
1451 Lisp_Object args; | |
1452 { | |
1453 int count = specpdl_ptr - specpdl; | |
1454 Lisp_Object val; | |
1455 | |
1456 XSET (val, Lisp_Int, do_mouse_tracking); | |
1457 record_unwind_protect (tracking_off, val); | |
1458 | |
1459 do_mouse_tracking = 1; | |
1460 | |
1461 val = Fprogn (args); | |
1462 return unbind_to (count, val); | |
1463 } | |
1464 | |
1465 /* Store an event obtained at interrupt level into kbd_buffer, fifo */ | |
1466 | |
1467 void | |
1468 kbd_buffer_store_event (event) | |
1469 register struct input_event *event; | |
1470 { | |
1471 if (event->kind == no_event) | |
1472 abort (); | |
1473 | |
1474 if (event->kind == ascii_keystroke) | |
1475 { | |
1476 register int c = XFASTINT (event->code) & 0377; | |
1477 | |
1478 if (c == quit_char | |
1479 || ((c == (0200 | quit_char)) && !meta_key)) | |
1480 { | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1481 extern SIGTYPE interrupt_signal (); |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1482 |
518 | 1483 /* If this results in a quit_char being returned to Emacs as |
765 | 1484 input, set last-event-frame properly. If this doesn't |
518 | 1485 get returned to Emacs as an event, the next event read |
765 | 1486 will set Vlast_event_frame again, so this is safe to do. */ |
1487 Vlast_event_frame = FRAME_FOCUS_FRAME (event->frame); | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1488 |
648 | 1489 last_event_timestamp = event->timestamp; |
518 | 1490 interrupt_signal (); |
1491 return; | |
1492 } | |
1493 | |
1494 if (c && c == stop_character) | |
1495 { | |
1496 sys_suspend (); | |
1497 return; | |
1498 } | |
1499 | |
1500 XSET (event->code, Lisp_Int, c); | |
1501 } | |
1502 | |
1503 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE) | |
1504 kbd_store_ptr = kbd_buffer; | |
1505 | |
1506 /* Don't let the very last slot in the buffer become full, | |
1507 since that would make the two pointers equal, | |
1508 and that is indistinguishable from an empty buffer. | |
1509 Discard the event if it would fill the last slot. */ | |
1510 if (kbd_fetch_ptr - 1 != kbd_store_ptr) | |
1511 { | |
1512 kbd_store_ptr->kind = event->kind; | |
1513 kbd_store_ptr->code = event->code; | |
1514 kbd_store_ptr->part = event->part; | |
765 | 1515 kbd_store_ptr->frame = event->frame; |
518 | 1516 kbd_store_ptr->modifiers = event->modifiers; |
1517 kbd_store_ptr->x = event->x; | |
1518 kbd_store_ptr->y = event->y; | |
1519 kbd_store_ptr->timestamp = event->timestamp; | |
1520 | |
1521 kbd_store_ptr++; | |
1522 } | |
1523 } | |
1524 | |
1525 static Lisp_Object make_lispy_event (); | |
1526 static Lisp_Object make_lispy_movement (); | |
1527 static Lisp_Object modify_event_symbol (); | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1528 static Lisp_Object make_lispy_switch_frame (); |
518 | 1529 |
1530 static Lisp_Object | |
1531 kbd_buffer_get_event () | |
1532 { | |
1533 register int c; | |
1534 Lisp_Object obj; | |
1535 | |
1536 if (noninteractive) | |
1537 { | |
1538 c = getchar (); | |
1539 XSET (obj, Lisp_Int, c); | |
1540 return obj; | |
1541 } | |
1542 | |
1543 /* Wait until there is input available. */ | |
1544 for (;;) | |
1545 { | |
1546 if (!EVENT_QUEUES_EMPTY) | |
1547 break; | |
1548 | |
1549 /* If the quit flag is set, then read_char will return | |
1550 quit_char, so that counts as "available input." */ | |
1551 if (!NILP (Vquit_flag)) | |
1552 quit_throw_to_read_char (); | |
1553 | |
1554 /* One way or another, wait until input is available; then, if | |
1555 interrupt handlers have not read it, read it now. */ | |
1556 | |
1557 #ifdef OLDVMS | |
1558 wait_for_kbd_input (); | |
1559 #else | |
1560 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
1561 #ifdef SIGIO | |
1562 gobble_input (0); | |
1563 #endif /* SIGIO */ | |
1564 if (EVENT_QUEUES_EMPTY) | |
1565 { | |
650 | 1566 Lisp_Object minus_one; |
1567 | |
1568 XSET (minus_one, Lisp_Int, -1); | |
1569 wait_reading_process_input (0, 0, minus_one, 1); | |
518 | 1570 |
1571 if (!interrupt_input && EVENT_QUEUES_EMPTY) | |
1572 { | |
1573 read_avail_input (0); | |
1574 } | |
1575 } | |
1576 #endif /* not VMS */ | |
1577 } | |
1578 | |
1579 /* At this point, we know that there is a readable event available | |
1580 somewhere. If the event queue is empty, then there must be a | |
1581 mouse movement enabled and available. */ | |
1582 if (kbd_fetch_ptr != kbd_store_ptr) | |
1583 { | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1584 struct input_event *event; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1585 Lisp_Object frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1586 |
1404
1c2080f78a36
* keyboard.c (kbd_buffer_get_event): Fix fencepost bug in
Jim Blandy <jimb@redhat.com>
parents:
1402
diff
changeset
|
1587 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE) |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1588 ? kbd_fetch_ptr |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1589 : kbd_buffer); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1590 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1591 last_event_timestamp = event->timestamp; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1592 XSET (frame, Lisp_Frame, XFRAME (FRAME_FOCUS_FRAME (event->frame))); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1593 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1594 /* If this event is on a different frame, return a switch-frame this |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1595 time, and leave the event in the queue for next time. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1596 if (! EQ (frame, Vlast_event_frame)) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1597 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1598 Vlast_event_frame = frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1599 obj = make_lispy_switch_frame (frame); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1600 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1601 else |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1602 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1603 obj = make_lispy_event (event); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1604 if (XTYPE (obj) == Lisp_Int) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1605 XSET (obj, Lisp_Int, XINT (obj) & (meta_key ? 0377 : 0177)); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1606 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1607 /* Wipe out this event, to catch bugs. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1608 event->kind = no_event; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1609 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1610 kbd_fetch_ptr = event + 1; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1611 } |
518 | 1612 } |
1613 else if (do_mouse_tracking && mouse_moved) | |
1614 { | |
765 | 1615 FRAME_PTR frame; |
732 | 1616 Lisp_Object x, y; |
1617 unsigned long time; | |
518 | 1618 |
765 | 1619 (*mouse_position_hook) (&frame, &x, &y, &time); |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1620 |
1402
6a0dcfc81b4f
* keyboard.c (kbd_buffer_get_event): Remember that
Jim Blandy <jimb@redhat.com>
parents:
1386
diff
changeset
|
1621 /* Decide if we should generate a switch-frame event. Don't generate |
6a0dcfc81b4f
* keyboard.c (kbd_buffer_get_event): Remember that
Jim Blandy <jimb@redhat.com>
parents:
1386
diff
changeset
|
1622 switch-frame events for motion outside of all Emacs frames. */ |
6a0dcfc81b4f
* keyboard.c (kbd_buffer_get_event): Remember that
Jim Blandy <jimb@redhat.com>
parents:
1386
diff
changeset
|
1623 if (frame && frame != XFRAME (Vlast_event_frame)) |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1624 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1625 XSET (Vlast_event_frame, Lisp_Frame, frame); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1626 obj = make_lispy_switch_frame (Vlast_event_frame); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1627 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1628 else |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1629 obj = make_lispy_movement (frame, x, y, time); |
518 | 1630 } |
1631 else | |
1632 /* We were promised by the above while loop that there was | |
1633 something for us to read! */ | |
1634 abort (); | |
1635 | |
1636 input_pending = readable_events (); | |
1637 | |
1638 return (obj); | |
1639 } | |
1640 | |
1641 /* Caches for modify_event_symbol. */ | |
1642 static Lisp_Object func_key_syms; | |
1643 static Lisp_Object mouse_syms; | |
1644 | |
1645 /* You'll notice that this table is arranged to be conveniently | |
1646 indexed by X Windows keysym values. */ | |
1647 static char *lispy_function_keys[] = | |
1648 { | |
1649 /* X Keysym value */ | |
1650 | |
1651 "home", /* 0xff50 */ /* IsCursorKey */ | |
1652 "left", | |
1653 "up", | |
1654 "right", | |
1655 "down", | |
1656 "prior", | |
1657 "next", | |
1658 "end", | |
1659 "begin", | |
1660 0, /* 0xff59 */ | |
1661 0, 0, 0, 0, 0, 0, | |
1662 "select", /* 0xff60 */ /* IsMiscFunctionKey */ | |
1663 "print", | |
1664 "execute", | |
1665 "insert", | |
1666 0, /* 0xff64 */ | |
1667 "undo", | |
1668 "redo", | |
1669 "menu", | |
1670 "find", | |
1671 "cancel", | |
1672 "help", | |
1673 "break", /* 0xff6b */ | |
1674 | |
1675 /* Here are some keys found mostly on HP keyboards. The X event | |
1676 handling code will strip bit 29, which flags vendor-specific | |
1677 keysyms. */ | |
1678 "reset", /* 0x1000ff6c */ | |
1679 "system", | |
1680 "user", | |
1681 "clearline", | |
1682 "insertline", | |
1683 "deleteline", | |
1684 "insertchar", | |
1685 "deletechar", | |
1686 "backtab", | |
1687 "kp_backtab", /* 0x1000ff75 */ | |
1688 0, /* 0xff76 */ | |
1689 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff7f */ | |
1690 "kp-space", /* 0xff80 */ /* IsKeypadKey */ | |
1691 0, 0, 0, 0, 0, 0, 0, 0, | |
1692 "kp-tab", /* 0xff89 */ | |
1693 0, 0, 0, | |
1694 "kp-enter", /* 0xff8d */ | |
1695 0, 0, 0, | |
1696 "kp-f1", /* 0xff91 */ | |
1697 "kp-f2", | |
1698 "kp-f3", | |
1699 "kp-f4", | |
1700 0, /* 0xff95 */ | |
1701 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
1702 "kp-multiply", /* 0xffaa */ | |
1703 "kp-add", | |
1704 "kp-separator", | |
1705 "kp-subtract", | |
1706 "kp-decimal", | |
1707 "kp-divide", /* 0xffaf */ | |
1708 "kp-0", /* 0xffb0 */ | |
1709 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9", | |
1710 0, /* 0xffba */ | |
1711 0, 0, | |
1712 "kp-equal", /* 0xffbd */ | |
1713 "f1", /* 0xffbe */ /* IsFunctionKey */ | |
1714 "f2", "f3", "f4", | |
1715 "f5", "f6", "f7", "f8", "f9", "f10", "f11", "f12", | |
1716 "f13", "f14", "f15", "f16", "f17", "f18", "f19", "f20", | |
1717 "f21", "f22", "f23", "f24", "f25", "f26", "f27", "f28", | |
1718 "f29", "f30", "f31", "f32", "f33", "f34", "f35" /* 0xffe0 */ | |
1719 }; | |
1720 | |
1721 static char *lispy_mouse_names[] = | |
1722 { | |
1723 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5" | |
1724 }; | |
1725 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1726 /* make_lispy_event stores the down-going location of the currently |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1727 depressed buttons in button_down_locations. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1728 struct mouse_position { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1729 Lisp_Object window; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1730 Lisp_Object buffer_pos; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1731 Lisp_Object x, y; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1732 Lisp_Object timestamp; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1733 }; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1734 static struct mouse_position button_down_location[NUM_MOUSE_BUTTONS]; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1735 |
518 | 1736 /* Given a struct input_event, build the lisp event which represents |
1737 it. If EVENT is 0, build a mouse movement event from the mouse | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1738 movement buffer, which should have a movement event in it. |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1739 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1740 Note that events must be passed to this function in the order they |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1741 are received; this function stores the location of button presses |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1742 in order to build drag events when the button is released. */ |
518 | 1743 |
1744 static Lisp_Object | |
1745 make_lispy_event (event) | |
1746 struct input_event *event; | |
1747 { | |
1748 #ifdef SWITCH_ENUM_BUG | |
1749 switch ((int) event->kind) | |
1750 #else | |
1751 switch (event->kind) | |
1752 #endif | |
1753 { | |
1754 /* A simple keystroke. */ | |
1755 case ascii_keystroke: | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1756 return XFASTINT (event->code); |
518 | 1757 break; |
1758 | |
1759 /* A function key. The symbol may need to have modifier prefixes | |
1760 tacked onto it. */ | |
1761 case non_ascii_keystroke: | |
1762 return modify_event_symbol (XFASTINT (event->code), event->modifiers, | |
1763 Qfunction_key, | |
1764 lispy_function_keys, &func_key_syms, | |
1765 (sizeof (lispy_function_keys) | |
1766 / sizeof (lispy_function_keys[0]))); | |
1767 break; | |
1768 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1769 /* A mouse click. Figure out where it is, decide whether it's |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1770 a press, click or drag, and build the appropriate structure. */ |
518 | 1771 case mouse_click: |
1772 { | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1773 int button = XFASTINT (event->code); |
518 | 1774 int part; |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1775 Lisp_Object window; |
518 | 1776 Lisp_Object posn; |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1777 struct mouse_position *loc; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1778 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1779 if (button < 0 || button >= NUM_MOUSE_BUTTONS) |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1780 abort (); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1781 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1782 /* Where did this mouse click occur? */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1783 window = window_from_coordinates (event->frame, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1784 XINT (event->x), XINT (event->y), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1785 &part); |
518 | 1786 if (XTYPE (window) != Lisp_Window) |
1787 posn = Qnil; | |
1788 else | |
1789 { | |
1790 XSETINT (event->x, (XINT (event->x) | |
1791 - XINT (XWINDOW (window)->left))); | |
1792 XSETINT (event->y, (XINT (event->y) | |
1793 - XINT (XWINDOW (window)->top))); | |
1794 if (part == 1) | |
1795 posn = Qmode_line; | |
1796 else if (part == 2) | |
732 | 1797 posn = Qvertical_line; |
518 | 1798 else |
1799 XSET (posn, Lisp_Int, | |
1800 buffer_posn_from_coords (XWINDOW (window), | |
1801 XINT (event->x), | |
1802 XINT (event->y))); | |
1803 } | |
1804 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1805 /* If this is a button press, squirrel away the location, so we |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1806 can decide later whether it was a click or a drag. */ |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1807 loc = button_down_location + button; |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1808 if (event->modifiers & down_modifier) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1809 { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1810 loc->window = window; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1811 loc->buffer_pos = posn; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1812 loc->x = event->x; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1813 loc->y = event->y; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1814 loc->timestamp = event->timestamp; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1815 } |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1816 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1817 /* Now we're releasing a button - check the co-ordinates to |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1818 see if this was a click or a drag. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1819 else if (event->modifiers & up_modifier) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1820 { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1821 event->modifiers &= ~up_modifier; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1822 event->modifiers |= ((event->x == loc->x && event->y == loc->y) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1823 ? click_modifier |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1824 : drag_modifier); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1825 } |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1826 else |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1827 /* Every mouse event should either have the down_modifier or |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1828 the up_modifier set. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1829 abort (); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1830 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1831 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1832 /* Build the event. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1833 { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1834 Lisp_Object head, start, end; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1835 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1836 /* Build the components of the event. */ |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1837 head = modify_event_symbol (button - 1, |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1838 event->modifiers, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1839 Qmouse_click, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1840 lispy_mouse_names, &mouse_syms, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1841 (sizeof (lispy_mouse_names) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1842 / sizeof (lispy_mouse_names[0]))); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1843 end = Fcons (window, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1844 Fcons (posn, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1845 Fcons (Fcons (event->x, event->y), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1846 Fcons (make_number (event->timestamp), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1847 Qnil)))); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1848 if (event->modifiers & drag_modifier) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1849 start = Fcons (loc->window, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1850 Fcons (loc->buffer_pos, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1851 Fcons (Fcons (loc->x, loc->y), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1852 Fcons (make_number (loc->timestamp), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1853 Qnil)))); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1854 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1855 /* Assemble the pieces. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1856 if (event->modifiers & drag_modifier) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1857 return Fcons (head, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1858 Fcons (start, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1859 Fcons (end, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1860 Qnil))); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1861 else |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1862 return Fcons (head, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1863 Fcons (end, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1864 Qnil)); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1865 } |
518 | 1866 } |
1867 | |
1868 /* A scrollbar click. Build a list containing the relevant | |
1869 information. */ | |
1870 case scrollbar_click: | |
1871 { | |
1872 Lisp_Object button | |
1873 = modify_event_symbol (XFASTINT (event->code) - 1, | |
1874 event->modifiers, | |
1875 Qmouse_click, | |
1876 lispy_mouse_names, &mouse_syms, | |
1877 (sizeof (lispy_mouse_names) | |
1878 / sizeof (lispy_mouse_names[0]))); | |
1879 return Fcons (event->part, | |
765 | 1880 Fcons (FRAME_SELECTED_WINDOW (event->frame), |
518 | 1881 Fcons (button, |
1882 Fcons (Fcons (event->x, event->y), | |
708 | 1883 Fcons (make_number |
1884 (event->timestamp), | |
518 | 1885 Qnil))))); |
1886 } | |
1887 | |
1888 /* The 'kind' field of the event is something we don't recognize. */ | |
1889 default: | |
1890 abort(); | |
1891 } | |
1892 } | |
1893 | |
1894 static Lisp_Object | |
765 | 1895 make_lispy_movement (frame, x, y, time) |
1896 FRAME_PTR frame; | |
518 | 1897 Lisp_Object x, y; |
732 | 1898 unsigned long time; |
518 | 1899 { |
1900 Lisp_Object window; | |
1901 int ix, iy; | |
1902 Lisp_Object posn; | |
1903 int part; | |
1904 | |
1905 ix = XINT (x); | |
1906 iy = XINT (y); | |
765 | 1907 window = (frame |
1908 ? window_from_coordinates (frame, ix, iy, &part) | |
518 | 1909 : Qnil); |
1910 if (XTYPE (window) != Lisp_Window) | |
1911 posn = Qnil; | |
1912 else | |
1913 { | |
1914 ix -= XINT (XWINDOW (window)->left); | |
1915 iy -= XINT (XWINDOW (window)->top); | |
1916 if (part == 1) | |
1917 posn = Qmode_line; | |
1918 else if (part == 2) | |
732 | 1919 posn = Qvertical_line; |
518 | 1920 else |
1921 XSET (posn, Lisp_Int, buffer_posn_from_coords (XWINDOW (window), | |
1922 ix, iy)); | |
1923 } | |
1924 | |
1925 XSETINT (x, ix); | |
1926 XSETINT (y, iy); | |
1927 return Fcons (Qmouse_movement, | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1928 Fcons (Fcons (window, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1929 Fcons (posn, |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1930 Fcons (Fcons (x, y), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1931 Fcons (make_number (time), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1932 Qnil)))), |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1933 Qnil)); |
518 | 1934 } |
1935 | |
1936 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1937 /* Construct a switch frame event. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1938 static Lisp_Object |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1939 make_lispy_switch_frame (frame) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1940 Lisp_Object frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1941 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1942 return Fcons (Qswitch_frame, Fcons (frame, Qnil)); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1943 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1944 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1945 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1946 /* Manipulating modifiers. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1947 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1948 /* Parse the name of SYMBOL, and return the set of modifiers it contains. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1949 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1950 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1951 SYMBOL's name of the end of the modifiers; the string from this |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1952 position is the unmodified symbol name. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1953 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1954 This doesn't use any caches. */ |
518 | 1955 static int |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1956 parse_modifiers_uncached (symbol, modifier_end) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1957 Lisp_Object symbol; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1958 int *modifier_end; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1959 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1960 struct Lisp_String *name; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1961 int i; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1962 int modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1963 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1964 CHECK_SYMBOL (symbol, 1); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1965 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1966 modifiers = 0; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1967 name = XSYMBOL (symbol)->name; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1968 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1969 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1970 for (i = 0; i+2 <= name->size; ) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1971 switch (name->data[i]) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1972 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1973 #define SINGLE_LETTER_MOD(bit) \ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1974 if (name->data[i+1] != '-') \ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1975 goto no_more_modifiers; \ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1976 modifiers |= bit; \ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1977 i += 2; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1978 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1979 case 'A': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1980 SINGLE_LETTER_MOD (alt_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1981 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1982 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1983 case 'C': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1984 SINGLE_LETTER_MOD (ctrl_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1985 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1986 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1987 case 'H': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1988 SINGLE_LETTER_MOD (hyper_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1989 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1990 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1991 case 'M': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1992 SINGLE_LETTER_MOD (meta_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1993 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1994 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1995 case 'S': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1996 SINGLE_LETTER_MOD (shift_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1997 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1998 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
1999 case 's': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2000 if (i + 6 > name->size |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2001 || strncmp (name->data + i, "super-", 6)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2002 goto no_more_modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2003 modifiers |= super_modifier; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2004 i += 6; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2005 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2006 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2007 case 'd': |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2008 if (i + 5 > name->size) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2009 goto no_more_modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2010 if (! strncmp (name->data + i, "drag-", 5)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2011 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2012 modifiers |= drag_modifier; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2013 i += 5; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2014 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2015 else if (! strncmp (name->data + i, "down-", 5)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2016 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2017 modifiers |= down_modifier; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2018 i += 5; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2019 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2020 else |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2021 goto no_more_modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2022 break; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2023 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2024 default: |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2025 goto no_more_modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2026 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2027 #undef SINGLE_LETTER_MOD |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2028 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2029 no_more_modifiers: |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2030 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2031 /* Should we include the `click' modifier? */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2032 if (! (modifiers & (down_modifier | drag_modifier)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2033 && i + 7 == name->size |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2034 && strncmp (name->data + i, "mouse-", 6) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2035 && '0' <= name->data[i + 6] |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2036 && name->data[i + 6] <= '9') |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2037 modifiers |= click_modifier; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2038 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2039 if (modifier_end) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2040 *modifier_end = i; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2041 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2042 return modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2043 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2044 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2045 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2046 /* Return a symbol whose name is the modifier prefixes for MODIFIERS |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2047 prepended to the string BASE[0..BASE_LEN-1]. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2048 This doesn't use any caches. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2049 static Lisp_Object |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2050 apply_modifiers_uncached (modifiers, base, base_len) |
518 | 2051 int modifiers; |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2052 char *base; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2053 int base_len; |
518 | 2054 { |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2055 /* Since BASE could contain nulls, we can't use intern here; we have |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2056 to use Fintern, which expects a genuine Lisp_String, and keeps a |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2057 reference to it. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2058 char *new_mods = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2059 (char *) alloca (sizeof ("A-C-H-M-S-super-down-drag-")); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2060 int mod_len; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2061 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2062 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2063 char *p = new_mods; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2064 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2065 /* Only the event queue may use the `up' modifier; it should always |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2066 be turned into a click or drag event before presented to lisp code. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2067 if (modifiers & up_modifier) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2068 abort (); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2069 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2070 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2071 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2072 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2073 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2074 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2075 if (modifiers & super_modifier) { strcpy (p, "super-"); p += 6; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2076 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2077 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2078 /* The click modifier is denoted by the absence of other modifiers. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2079 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2080 *p = '\0'; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2081 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2082 mod_len = p - new_mods; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2083 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2084 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2085 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2086 Lisp_Object new_name = make_uninit_string (mod_len + base_len); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2087 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2088 bcopy (new_mods, XSTRING (new_name)->data, mod_len); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2089 bcopy (base, XSTRING (new_name)->data + mod_len, base_len); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2090 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2091 return Fintern (new_name, Qnil); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2092 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2093 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2094 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2095 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2096 static char *modifier_names[] = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2097 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2098 "up", "alt", "control", "hyper", "meta", "shift", "super", "down", "drag", |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2099 "click" |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2100 }; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2101 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2102 static Lisp_Object modifier_symbols; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2103 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2104 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2105 static Lisp_Object |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2106 lispy_modifier_list (modifiers) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2107 int modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2108 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2109 Lisp_Object modifier_list; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2110 int i; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2111 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2112 modifier_list = Qnil; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2113 for (i = 0; (1<<i) <= modifiers; i++) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2114 if (modifiers & (1<<i)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2115 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i], |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2116 modifier_list); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2117 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2118 return modifier_list; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2119 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2120 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2121 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2122 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK), |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2123 where UNMODIFIED is the unmodified form of SYMBOL, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2124 MASK is the set of modifiers present in SYMBOL's name. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2125 This is similar to parse_modifiers_uncached, but uses the cache in |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2126 SYMBOL's Qevent_symbol_element_mask property, and maintains the |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2127 Qevent_symbol_elements property. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2128 static Lisp_Object |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2129 parse_modifiers (symbol) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2130 Lisp_Object symbol; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2131 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2132 Lisp_Object elements = Fget (symbol, Qevent_symbol_element_mask); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2133 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2134 if (CONSP (elements)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2135 return elements; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2136 else |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2137 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2138 int end; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2139 int modifiers = parse_modifiers_uncached (symbol, &end); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2140 Lisp_Object unmodified |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2141 = Fintern (make_string (XSYMBOL (symbol)->name->data + end, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2142 XSYMBOL (symbol)->name->size - end), |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2143 Qnil); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2144 Lisp_Object mask; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2145 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2146 XFASTINT (mask) = modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2147 elements = Fcons (unmodified, Fcons (mask, Qnil)); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2148 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2149 /* Cache the parsing results on SYMBOL. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2150 Fput (symbol, Qevent_symbol_element_mask, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2151 elements); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2152 Fput (symbol, Qevent_symbol_elements, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2153 Fcons (unmodified, lispy_modifier_list (modifiers))); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2154 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2155 /* Since we know that SYMBOL is modifiers applied to unmodified, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2156 it would be nice to put that in unmodified's cache. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2157 But we can't, since we're not sure that parse_modifiers is |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2158 canonical. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2159 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2160 return elements; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2161 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2162 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2163 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2164 /* Apply the modifiers MODIFIERS to the symbol BASE. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2165 BASE must be unmodified. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2166 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2167 This is like apply_modifiers_uncached, but uses BASE's |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2168 Qmodifier_cache property, if present. It also builds |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2169 Qevent_symbol_elements properties, since it has that info anyway. |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2170 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2171 apply_modifiers copies the value of BASE's Qevent_kind property to |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2172 the modified symbol. */ |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2173 static Lisp_Object |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2174 apply_modifiers (modifiers, base) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2175 int modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2176 Lisp_Object base; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2177 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2178 Lisp_Object cache, index, entry; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2179 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2180 /* The click modifier never figures into cache indices. */ |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2181 cache = Fget (base, Qmodifier_cache); |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2182 XFASTINT (index) = (modifiers & ~click_modifier); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2183 entry = Fassq (index, cache); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2184 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2185 if (CONSP (entry)) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2186 return XCONS (entry)->cdr; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2187 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2188 /* We have to create the symbol ourselves. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2189 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2190 Lisp_Object new_symbol |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2191 = apply_modifiers_uncached (modifiers, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2192 XSYMBOL (base)->name->data, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2193 XSYMBOL (base)->name->size); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2194 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2195 /* Add the new symbol to the base's cache. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2196 Fput (base, Qmodifier_cache, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2197 Fcons (Fcons (index, new_symbol), cache)); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2198 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2199 /* We have the parsing info now for free, so add it to the caches. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2200 XFASTINT (index) = modifiers; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2201 Fput (new_symbol, Qevent_symbol_element_mask, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2202 Fcons (base, Fcons (index, Qnil))); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2203 Fput (new_symbol, Qevent_symbol_elements, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2204 Fcons (base, lispy_modifier_list (modifiers))); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2205 |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2206 /* This symbol is of the same kind as BASE. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2207 Fput (new_symbol, Qevent_kind, Fget (new_symbol, Qevent_kind)); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2208 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2209 return new_symbol; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2210 } |
518 | 2211 } |
2212 | |
2213 | |
2214 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc), | |
2215 return a symbol with the modifiers placed in the canonical order. | |
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
2216 Canonical order is alphabetical, except for down and drag, which |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2217 always come last. The 'click' modifier is never written out. |
518 | 2218 |
2219 Fdefine_key calls this to make sure that (for example) C-M-foo | |
2220 and M-C-foo end up being equivalent in the keymap. */ | |
2221 | |
2222 Lisp_Object | |
2223 reorder_modifiers (symbol) | |
2224 Lisp_Object symbol; | |
2225 { | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2226 /* It's hopefully okay to write the code this way, since everything |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2227 will soon be in caches, and no consing will be done at all. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2228 Lisp_Object parsed = parse_modifiers (symbol); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2229 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2230 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2231 XCONS (parsed)->car); |
518 | 2232 } |
2233 | |
2234 | |
2235 /* For handling events, we often want to produce a symbol whose name | |
2236 is a series of modifier key prefixes ("M-", "C-", etcetera) attached | |
2237 to some base, like the name of a function key or mouse button. | |
2238 modify_event_symbol produces symbols of this sort. | |
2239 | |
2240 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i] | |
2241 is the name of the i'th symbol. TABLE_SIZE is the number of elements | |
2242 in the table. | |
2243 | |
2244 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will | |
2245 persist between calls to modify_event_symbol that it can use to | |
2246 store a cache of the symbols it's generated for this NAME_TABLE | |
2247 before. | |
2248 | |
2249 SYMBOL_NUM is the number of the base name we want from NAME_TABLE. | |
2250 | |
2251 MODIFIERS is a set of modifier bits (as given in struct input_events) | |
2252 whose prefixes should be applied to the symbol name. | |
2253 | |
2254 SYMBOL_KIND is the value to be placed in the event_kind property of | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2255 the returned symbol. |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2256 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2257 The symbols we create are supposed to have an |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2258 `event-symbol-elements' propery, which lists the modifiers present |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2259 in the symbol's name. */ |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2260 |
518 | 2261 static Lisp_Object |
2262 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table, | |
2263 symbol_table, table_size) | |
2264 int symbol_num; | |
2265 unsigned modifiers; | |
2266 Lisp_Object symbol_kind; | |
2267 char **name_table; | |
2268 Lisp_Object *symbol_table; | |
2269 int table_size; | |
2270 { | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2271 Lisp_Object *slot; |
518 | 2272 |
2273 /* Is this a request for a valid symbol? */ | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2274 if (symbol_num < 0 || symbol_num >= table_size) |
518 | 2275 abort (); |
2276 | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2277 /* If *symbol_table doesn't seem to be initialized properly, fix that. |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2278 *symbol_table should be a lisp vector TABLE_SIZE elements long, |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2279 where the Nth element is the symbol for NAME_TABLE[N]. */ |
518 | 2280 if (XTYPE (*symbol_table) != Lisp_Vector |
2281 || XVECTOR (*symbol_table)->size != table_size) | |
2282 { | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2283 Lisp_Object size; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2284 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2285 XFASTINT (size) = table_size; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2286 *symbol_table = Fmake_vector (size, Qnil); |
518 | 2287 } |
2288 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2289 slot = & XVECTOR (*symbol_table)->contents[symbol_num]; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2290 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2291 /* Have we already used this symbol before? */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2292 if (NILP (*slot)) |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2293 { |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2294 /* No; let's create it. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2295 *slot = intern (name_table[symbol_num]); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2296 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2297 /* Fill in the cache entries for this symbol; this also |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2298 builds the Qevent_symbol_elements property, which the user |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2299 cares about. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2300 apply_modifiers (0, *slot); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2301 Fput (*slot, Qevent_kind, symbol_kind); |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2302 } |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2303 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2304 /* Apply modifiers to that symbol. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2305 return apply_modifiers (modifiers, *slot); |
518 | 2306 } |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2307 |
518 | 2308 |
2309 DEFUN ("mouse-click-p", Fmouse_click_p, Smouse_click_p, 1, 1, 0, | |
2310 "Return non-nil iff OBJECT is a representation of a mouse event.\n\ | |
2311 A mouse event is a list of five elements whose car is a symbol of the\n\ | |
2312 form <MODIFIERS>mouse-<DIGIT>. I hope this is a temporary hack.") | |
2313 (object) | |
2314 Lisp_Object object; | |
2315 { | |
2316 if (EVENT_HAS_PARAMETERS (object) | |
2317 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (object)), | |
2318 Qmouse_click)) | |
2319 return Qt; | |
2320 else | |
2321 return Qnil; | |
2322 } | |
2323 | |
2324 /* Store into *addr a value nonzero if terminal input chars are available. | |
2325 Serves the purpose of ioctl (0, FIONREAD, addr) | |
2326 but works even if FIONREAD does not exist. | |
2327 (In fact, this may actually read some input.) */ | |
2328 | |
2329 static void | |
2330 get_input_pending (addr) | |
2331 int *addr; | |
2332 { | |
2333 /* First of all, have we already counted some input? */ | |
2334 *addr = !NILP (Vquit_flag) || readable_events (); | |
2335 | |
2336 /* If input is being read as it arrives, and we have none, there is none. */ | |
2337 if (*addr > 0 || (interrupt_input && ! interrupts_deferred)) | |
2338 return; | |
2339 | |
2340 /* Try to read some input and see how much we get. */ | |
2341 gobble_input (0); | |
2342 *addr = !NILP (Vquit_flag) || readable_events (); | |
2343 } | |
2344 | |
2345 /* Interface to read_avail_input, blocking SIGIO if necessary. */ | |
2346 | |
2347 int | |
2348 gobble_input (expected) | |
2349 int expected; | |
2350 { | |
2351 #ifndef VMS | |
2352 #ifdef SIGIO | |
2353 if (interrupt_input) | |
2354 { | |
624 | 2355 SIGMASKTYPE mask; |
638 | 2356 mask = sigblockx (SIGIO); |
518 | 2357 read_avail_input (expected); |
638 | 2358 sigsetmask (mask); |
518 | 2359 } |
2360 else | |
2361 #endif | |
2362 read_avail_input (expected); | |
2363 #endif | |
2364 } | |
2365 | |
2366 #ifndef VMS | |
2367 | |
2368 /* Read any terminal input already buffered up by the system | |
2369 into the kbd_buffer, but do not wait. | |
2370 | |
2371 EXPECTED should be nonzero if the caller knows there is some input. | |
2372 | |
2373 Except on VMS, all input is read by this function. | |
2374 If interrupt_input is nonzero, this function MUST be called | |
2375 only when SIGIO is blocked. | |
2376 | |
2377 Returns the number of keyboard chars read, or -1 meaning | |
2378 this is a bad time to try to read input. */ | |
2379 | |
2380 static int | |
2381 read_avail_input (expected) | |
2382 int expected; | |
2383 { | |
2384 struct input_event buf[KBD_BUFFER_SIZE]; | |
2385 register int i; | |
2386 int nread; | |
2387 | |
2388 if (read_socket_hook) | |
2389 /* No need for FIONREAD or fcntl; just say don't wait. */ | |
2390 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected); | |
2391 else | |
2392 { | |
2393 unsigned char cbuf[KBD_BUFFER_SIZE]; | |
2394 | |
2395 #ifdef FIONREAD | |
2396 /* Find out how much input is available. */ | |
2397 if (ioctl (0, FIONREAD, &nread) < 0) | |
2398 /* Formerly simply reported no input, but that sometimes led to | |
2399 a failure of Emacs to terminate. | |
2400 SIGHUP seems appropriate if we can't reach the terminal. */ | |
2401 kill (getpid (), SIGHUP); | |
2402 if (nread == 0) | |
2403 return 0; | |
2404 if (nread > sizeof cbuf) | |
2405 nread = sizeof cbuf; | |
2406 #else /* no FIONREAD */ | |
2407 #ifdef USG | |
2408 /* Read some input if available, but don't wait. */ | |
2409 nread = sizeof cbuf; | |
2410 fcntl (fileno (stdin), F_SETFL, O_NDELAY); | |
2411 #else | |
2412 you lose; | |
2413 #endif | |
2414 #endif | |
2415 | |
2416 /* Now read; for one reason or another, this will not block. */ | |
2417 while (1) | |
2418 { | |
2419 nread = read (fileno (stdin), cbuf, nread); | |
2420 #ifdef AIX | |
2421 /* The kernel sometimes fails to deliver SIGHUP for ptys. | |
2422 This looks incorrect, but it isn't, because _BSD causes | |
2423 O_NDELAY to be defined in fcntl.h as O_NONBLOCK, | |
2424 and that causes a value other than 0 when there is no input. */ | |
2425 if (nread == 0) | |
2426 kill (SIGHUP, 0); | |
2427 #endif | |
2428 /* Retry the read if it is interrupted. */ | |
2429 if (nread >= 0 | |
2430 || ! (errno == EAGAIN || errno == EFAULT | |
2431 #ifdef EBADSLT | |
2432 || errno == EBADSLT | |
2433 #endif | |
2434 )) | |
2435 break; | |
2436 } | |
2437 | |
2438 #ifndef FIONREAD | |
2439 #ifdef USG | |
2440 fcntl (fileno (stdin), F_SETFL, 0); | |
2441 #endif /* USG */ | |
2442 #endif /* no FIONREAD */ | |
2443 for (i = 0; i < nread; i++) | |
2444 { | |
2445 buf[i].kind = ascii_keystroke; | |
2446 XSET (buf[i].code, Lisp_Int, cbuf[i]); | |
765 | 2447 buf[i].frame = selected_frame; |
518 | 2448 } |
2449 } | |
2450 | |
2451 /* Scan the chars for C-g and store them in kbd_buffer. */ | |
2452 for (i = 0; i < nread; i++) | |
2453 { | |
2454 kbd_buffer_store_event (&buf[i]); | |
2455 /* Don't look at input that follows a C-g too closely. | |
2456 This reduces lossage due to autorepeat on C-g. */ | |
2457 if (buf[i].kind == ascii_keystroke | |
2458 && XINT(buf[i].code) == quit_char) | |
2459 break; | |
2460 } | |
2461 | |
2462 return nread; | |
2463 } | |
2464 #endif /* not VMS */ | |
2465 | |
2466 #ifdef SIGIO /* for entire page */ | |
2467 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
2468 | |
1119
5d315d54b8b4
* keyboard.c (kbd_buffer_get_event): When performing the
Jim Blandy <jimb@redhat.com>
parents:
1104
diff
changeset
|
2469 SIGTYPE |
518 | 2470 input_available_signal (signo) |
2471 int signo; | |
2472 { | |
2473 /* Must preserve main program's value of errno. */ | |
2474 int old_errno = errno; | |
2475 #ifdef BSD4_1 | |
2476 extern int select_alarmed; | |
2477 #endif | |
2478 | |
2479 #ifdef USG | |
2480 /* USG systems forget handlers when they are used; | |
2481 must reestablish each time */ | |
2482 signal (signo, input_available_signal); | |
2483 #endif /* USG */ | |
2484 | |
2485 #ifdef BSD4_1 | |
2486 sigisheld (SIGIO); | |
2487 #endif | |
2488 | |
648 | 2489 if (input_available_clear_time) |
2490 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); | |
518 | 2491 |
2492 while (1) | |
2493 { | |
2494 int nread; | |
2495 nread = read_avail_input (1); | |
2496 /* -1 means it's not ok to read the input now. | |
2497 UNBLOCK_INPUT will read it later; now, avoid infinite loop. | |
2498 0 means there was no keyboard input available. */ | |
2499 if (nread <= 0) | |
2500 break; | |
2501 | |
2502 #ifdef BSD4_1 | |
2503 select_alarmed = 1; /* Force the select emulator back to life */ | |
2504 #endif | |
2505 } | |
2506 | |
2507 #ifdef BSD4_1 | |
2508 sigfree (); | |
2509 #endif | |
2510 errno = old_errno; | |
2511 } | |
2512 #endif /* SIGIO */ | |
2513 | |
2514 /* Return the prompt-string of a sparse keymap. | |
2515 This is the first element which is a string. | |
2516 Return nil if there is none. */ | |
2517 | |
2518 Lisp_Object | |
2519 map_prompt (map) | |
2520 Lisp_Object map; | |
2521 { | |
2522 while (CONSP (map)) | |
2523 { | |
2524 register Lisp_Object tem; | |
2525 tem = Fcar (map); | |
2526 if (XTYPE (tem) == Lisp_String) | |
2527 return tem; | |
2528 map = Fcdr (map); | |
2529 } | |
2530 return Qnil; | |
2531 } | |
2532 | |
2533 static int echo_flag; | |
2534 static int echo_now; | |
2535 | |
2536 /* Read a character like read_char but optionally prompt based on maps | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2537 in the array MAPS. NMAPS is the length of MAPS. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2538 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2539 PREV_EVENT is the previous input event, or nil if we are reading |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2540 the first event of a key sequence. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2541 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2542 If we use a mouse menu to read the input, we store 1 into *USED_MOUSE_MENU. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2543 Otherwise we store 0 there. |
518 | 2544 |
2545 The prompting is done based on the prompt-string of the map | |
2546 and the strings associated with various map elements. */ | |
2547 | |
2548 Lisp_Object | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2549 read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2550 int nmaps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2551 Lisp_Object *maps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2552 Lisp_Object prev_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2553 int *used_mouse_menu; |
518 | 2554 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2555 int mapno; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2556 register Lisp_Object name; |
518 | 2557 int nlength; |
765 | 2558 int width = FRAME_WIDTH (selected_frame) - 4; |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2559 char *menu = (char *) alloca (width + 4); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2560 int idx = -1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2561 Lisp_Object rest, vector; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2562 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2563 *used_mouse_menu = 0; |
518 | 2564 |
2565 /* Use local over global Menu maps */ | |
2566 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2567 if (! menu_prompting) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2568 return Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2569 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2570 /* Get the menu name from the first map that has one (a prompt string). */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2571 for (mapno = 0; mapno < nmaps; mapno++) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2572 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2573 name = map_prompt (maps[mapno]); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2574 if (!NILP (name)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2575 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2576 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2577 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2578 /* If we don't have any menus, just read a character normally. */ |
518 | 2579 if (NILP (name)) |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2580 return Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2581 |
1140
5c36807e445c
(read_char_menu_prompt): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1119
diff
changeset
|
2582 #ifdef HAVE_X_WINDOW |
5c36807e445c
(read_char_menu_prompt): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1119
diff
changeset
|
2583 #ifndef NO_X_MENU |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2584 /* If we got to this point via a mouse click, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2585 use a real menu for mouse selection. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2586 if (XTYPE (prev_event) == Lisp_Cons) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2587 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2588 /* Display the menu and get the selection. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2589 Lisp_Object *realmaps |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2590 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2591 Lisp_Object value; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2592 int nmaps1 = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2593 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2594 /* Use the maps that are not nil. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2595 for (mapno = 0; mapno < nmaps; mapno++) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2596 if (!NILP (maps[mapno])) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2597 realmaps[nmaps1++] = maps[mapno]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2598 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2599 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2600 if (NILP (value)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2601 XSET (value, Lisp_Int, quit_char); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2602 *used_mouse_menu = 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2603 return value; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2604 } |
1140
5c36807e445c
(read_char_menu_prompt): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1119
diff
changeset
|
2605 #endif /* not NO_X_MENU */ |
5c36807e445c
(read_char_menu_prompt): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1119
diff
changeset
|
2606 #endif /* HAVE_X_WINDOW */ |
518 | 2607 |
2608 /* Prompt string always starts with map's prompt, and a space. */ | |
2609 strcpy (menu, XSTRING (name)->data); | |
2610 nlength = XSTRING (name)->size; | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2611 menu[nlength++] = ':'; |
518 | 2612 menu[nlength++] = ' '; |
2613 menu[nlength] = 0; | |
2614 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2615 /* Start prompting at start of first map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2616 mapno = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2617 rest = maps[mapno]; |
518 | 2618 |
2619 /* Present the documented bindings, a line at a time. */ | |
2620 while (1) | |
2621 { | |
2622 int notfirst = 0; | |
2623 int i = nlength; | |
2624 Lisp_Object obj; | |
2625 int ch; | |
2626 | |
2627 /* Loop over elements of map. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2628 while (i < width) |
518 | 2629 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2630 Lisp_Object s, elt; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2631 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2632 /* If reached end of map, start at beginning of next map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2633 if (NILP (rest)) |
518 | 2634 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2635 mapno++; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2636 /* At end of last map, wrap around to first map if just starting, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2637 or end this line if already have something on it. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2638 if (mapno == nmaps) |
518 | 2639 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2640 if (notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2641 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2642 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2643 mapno = 0; |
518 | 2644 } |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2645 rest = maps[mapno]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2646 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2647 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2648 /* Look at the next element of the map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2649 if (idx >= 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2650 elt = XVECTOR (vector)->contents[idx]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2651 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2652 elt = Fcar_safe (rest); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2653 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2654 if (idx < 0 && XTYPE (elt) == Lisp_Vector) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2655 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2656 /* If we found a dense table in the keymap, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2657 advanced past it, but start scanning its contents. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2658 rest = Fcdr_safe (rest); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2659 vector = elt; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2660 idx = 0; |
518 | 2661 } |
2662 else | |
2663 { | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2664 /* An ordinary element. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2665 s = Fcar_safe (Fcdr_safe (elt)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2666 if (XTYPE (s) != Lisp_String) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2667 /* Ignore the element if it has no prompt string. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2668 ; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2669 /* If we have room for the prompt string, add it to this line. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2670 If this is the first on the line, always add it. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2671 else if (XSTRING (s)->size + i < width |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2672 || !notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2673 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2674 int thiswidth; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2675 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2676 /* Punctuate between strings. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2677 if (notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2678 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2679 strcpy (menu + i, ", "); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2680 i += 2; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2681 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2682 notfirst = 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2683 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2684 /* Add as much of string as fits. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2685 thiswidth = XSTRING (s)->size; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2686 if (thiswidth + i > width) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2687 thiswidth = width - i; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2688 bcopy (XSTRING (s)->data, menu + i, thiswidth); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2689 i += thiswidth; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2690 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2691 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2692 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2693 /* If this element does not fit, end the line now, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2694 and save the element for the next line. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2695 strcpy (menu + i, "..."); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2696 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2697 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2698 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2699 /* Move past this element. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2700 if (idx >= 0 && idx + 1 >= XVECTOR (rest)->size) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2701 /* Handle reaching end of dense table. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2702 idx = -1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2703 if (idx >= 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2704 idx++; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2705 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2706 rest = Fcdr_safe (rest); |
518 | 2707 } |
2708 } | |
2709 | |
2710 /* Prompt with that and read response. */ | |
2711 message1 (menu); | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2712 obj = read_char (1, 0, 0, Qnil, 0); |
518 | 2713 |
2714 if (XTYPE (obj) != Lisp_Int) | |
2715 return obj; | |
2716 else | |
2717 ch = XINT (obj); | |
2718 | |
2719 if (obj != menu_prompt_more_char | |
2720 && (XTYPE (menu_prompt_more_char) != Lisp_Int | |
2721 || obj != make_number (Ctl (XINT (menu_prompt_more_char))))) | |
2722 return obj; | |
2723 } | |
2724 } | |
2725 | |
2726 /* Reading key sequences. */ | |
2727 | |
2728 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings | |
2729 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a | |
2730 keymap, or nil otherwise. Return the index of the first keymap in | |
2731 which KEY has any binding, or NMAPS if no map has a binding. | |
2732 | |
2733 If KEY is a meta ASCII character, treat it like meta-prefix-char | |
2734 followed by the corresponding non-meta character. Keymaps in | |
2735 CURRENT with non-prefix bindings for meta-prefix-char become nil in | |
2736 NEXT. | |
2737 | |
2738 When KEY is not defined in any of the keymaps, if it is an upper | |
2739 case letter and there are bindings for the corresponding lower-case | |
2740 letter, return the bindings for the lower-case letter. | |
2741 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2742 If KEY has no bindings in any of the CURRENT maps, NEXT is left |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2743 unmodified. |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2744 |
518 | 2745 NEXT may == CURRENT. */ |
2746 | |
2747 static int | |
2748 follow_key (key, nmaps, current, defs, next) | |
2749 Lisp_Object key; | |
2750 Lisp_Object *current, *defs, *next; | |
2751 int nmaps; | |
2752 { | |
2753 int i, first_binding; | |
2754 | |
2755 /* If KEY is a meta ASCII character, treat it like meta-prefix-char | |
2756 followed by the corresponding non-meta character. */ | |
2757 if (XTYPE (key) == Lisp_Int | |
2758 && XINT (key) >= 0200) | |
2759 { | |
2760 for (i = 0; i < nmaps; i++) | |
2761 if (! NILP (current[i])) | |
2762 { | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2763 next[i] = |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2764 get_keyelt (access_keymap (current[i], meta_prefix_char, 1)); |
518 | 2765 |
2766 /* Note that since we pass the resulting bindings through | |
2767 get_keymap_1, non-prefix bindings for meta-prefix-char | |
2768 disappear. */ | |
2769 next[i] = get_keymap_1 (next[i], 0); | |
2770 } | |
2771 else | |
2772 next[i] = Qnil; | |
2773 | |
2774 current = next; | |
2775 XSET (key, Lisp_Int, XFASTINT (key) & 0177); | |
2776 } | |
2777 | |
2778 first_binding = nmaps; | |
2779 for (i = nmaps - 1; i >= 0; i--) | |
2780 { | |
2781 if (! NILP (current[i])) | |
2782 { | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2783 defs[i] = get_keyelt (access_keymap (current[i], key, 1)); |
518 | 2784 if (! NILP (defs[i])) |
2785 first_binding = i; | |
2786 } | |
2787 else | |
2788 defs[i] = Qnil; | |
2789 } | |
2790 | |
2791 /* When KEY is not defined in any of the keymaps, if it is an upper | |
2792 case letter and there are bindings for the corresponding | |
2793 lower-case letter, return the bindings for the lower-case letter. */ | |
2794 if (first_binding == nmaps | |
2795 && XTYPE (key) == Lisp_Int | |
2796 && UPPERCASEP (XINT (key))) | |
2797 { | |
2798 XSETINT (key, DOWNCASE (XINT (key))); | |
2799 | |
2800 first_binding = nmaps; | |
2801 for (i = nmaps - 1; i >= 0; i--) | |
2802 { | |
2803 if (! NILP (current[i])) | |
2804 { | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2805 defs[i] = get_keyelt (access_keymap (current[i], key, 1)); |
518 | 2806 if (! NILP (defs[i])) |
2807 first_binding = i; | |
2808 } | |
2809 else | |
2810 defs[i] = Qnil; | |
2811 } | |
2812 } | |
2813 | |
2814 /* Given the set of bindings we've found, produce the next set of maps. */ | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2815 if (first_binding < nmaps) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2816 for (i = 0; i < nmaps; i++) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2817 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0); |
518 | 2818 |
2819 return first_binding; | |
2820 } | |
2821 | |
2822 /* Read a sequence of keys that ends with a non prefix character | |
2823 according to the keymaps in KEYMAPS[0..nmaps-1]. Keymaps appearing | |
2824 earlier in KEYMAPS take precidence over those appearing later. | |
2825 | |
2826 Store the sequence in KEYBUF, a buffer of size BUFSIZE. Prompt | |
2827 with PROMPT. Echo starting immediately unless `prompt' is 0. | |
2828 Return the length of the key sequence stored. | |
2829 | |
765 | 2830 If the user switches frames in the midst of a key sequence, we |
518 | 2831 throw away any prefix we have read so far, and start afresh. For |
2832 mouse clicks, we look up the click in the keymap of the buffer | |
2833 clicked on, throwing away any prefix if it is not the same buffer | |
2834 we used to be reading from. */ | |
2835 | |
2836 static int | |
2837 read_key_sequence (keybuf, bufsize, prompt) | |
2838 Lisp_Object *keybuf; | |
2839 int bufsize; | |
2840 Lisp_Object prompt; | |
2841 { | |
2842 /* How many keys there are in the current key sequence. */ | |
2843 int t; | |
2844 | |
2845 /* The buffer that the most recently read event was typed at. This | |
2846 helps us read mouse clicks according to the buffer clicked in, | |
765 | 2847 and notice when the mouse has moved from one frame to another. */ |
518 | 2848 struct buffer *last_event_buffer = current_buffer; |
2849 | |
2850 /* The length of the echo buffer when we started reading, and | |
2851 the length of this_command_keys when we started reading. */ | |
2852 int echo_start; | |
2853 int keys_start = this_command_key_count; | |
2854 | |
2855 /* The number of keymaps we're scanning right now, and the number of | |
2856 keymaps we have allocated space for. */ | |
2857 int nmaps; | |
2858 int nmaps_allocated = 0; | |
2859 | |
899 | 2860 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1] |
518 | 2861 in the current keymaps, or nil where it is not a prefix. */ |
899 | 2862 Lisp_Object *submaps; |
518 | 2863 |
2864 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in | |
2865 the current keymaps. */ | |
2866 Lisp_Object *defs; | |
2867 | |
899 | 2868 /* The index of the first keymap that has a binding for this key |
2869 sequence. In other words, the lowest i such that defs[i] is | |
2870 non-nil.*/ | |
518 | 2871 int first_binding; |
2872 | |
2873 /* If mock_input > t, then KEYBUF[t] should be read as the next | |
899 | 2874 input key. |
2875 | |
2876 We use this to recover after recognizing a function key. Once we | |
2877 realize that a suffix of the current key sequence is actually a | |
2878 function key's escape sequence, we replace the suffix with the | |
2879 function key's binding from Vfunction_key_map. Now keybuf | |
2880 contains a new and different key sequence, so the echo area and | |
2881 the submaps and defs arrays are wrong. In this situation, we set | |
2882 mock_input to t, set t to 0, and jump to restart; the loop will | |
2883 read keys from keybuf up until mock_input, which rebuilds the | |
2884 state, and then it will resume reading characters from the keyboard. */ | |
518 | 2885 int mock_input = 0; |
2886 | |
899 | 2887 /* If the sequence is unbound in submaps[], then |
2888 keymap[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map, | |
2889 and fkey_map is its binding. If mock_input is in use, these | |
2890 might be > t, indicating that all function key scanning should | |
518 | 2891 hold off until t reaches them. */ |
899 | 2892 |
518 | 2893 int fkey_start = 0, fkey_end = 0; |
2894 Lisp_Object fkey_map = Vfunction_key_map; | |
2895 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2896 /* If we receive a ``switch-frame'' event in the middle of a key sequence, |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2897 we put it off for later. While we're reading, we keep the event here. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2898 Lisp_Object delayed_switch_frame = Qnil; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2899 |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2900 last_nonmenu_event = Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2901 |
518 | 2902 if (INTERACTIVE) |
2903 { | |
2904 if (prompt) | |
2905 echo_prompt (prompt); | |
2906 else if (cursor_in_echo_area) | |
2907 /* This doesn't put in a dash if the echo buffer is empty, so | |
2908 you don't always see a dash hanging out in the minibuffer. */ | |
2909 echo_dash (); | |
2910 echo_start = echo_length (); | |
2911 } | |
2912 | |
899 | 2913 /* If there is no function key map, turn off function key scanning. */ |
518 | 2914 if (NILP (Fkeymapp (Vfunction_key_map))) |
2915 fkey_start = fkey_end = bufsize + 1; | |
2916 | |
2917 restart: | |
2918 t = 0; | |
2919 this_command_key_count = keys_start; | |
2920 | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2921 /* This is a no-op the first time through, but if we restart, it |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2922 reverts the echo area to its original state. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2923 if (INTERACTIVE) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2924 echo_truncate (echo_start); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2925 |
518 | 2926 { |
2927 Lisp_Object *maps; | |
2928 | |
2929 nmaps = current_minor_maps (0, &maps) + 2; | |
2930 if (nmaps > nmaps_allocated) | |
2931 { | |
899 | 2932 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0])); |
518 | 2933 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0])); |
2934 nmaps_allocated = nmaps; | |
2935 } | |
899 | 2936 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0])); |
2937 submaps[nmaps-2] = last_event_buffer->keymap; | |
2938 submaps[nmaps-1] = global_map; | |
518 | 2939 } |
2940 | |
2941 /* Find an accurate initial value for first_binding. */ | |
2942 for (first_binding = 0; first_binding < nmaps; first_binding++) | |
899 | 2943 if (! NILP (submaps[first_binding])) |
518 | 2944 break; |
2945 | |
899 | 2946 while ((first_binding < nmaps && ! NILP (submaps[first_binding])) |
518 | 2947 || (first_binding >= nmaps && fkey_start < t)) |
2948 { | |
2949 Lisp_Object key; | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2950 int used_mouse_menu = 0; |
518 | 2951 |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2952 /* These variables are analogous to echo_start and keys_start; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2953 while those allow us to restart the entire key sequence, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2954 echo_local_start and keys_local_start allow us to throw away |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2955 just one key. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2956 int echo_local_start = echo_length (); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2957 int keys_local_start = this_command_key_count; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2958 int local_first_binding = first_binding; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2959 |
518 | 2960 if (t >= bufsize) |
2961 error ("key sequence too long"); | |
2962 | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2963 retry_key: |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2964 /* These are no-ops, unless we throw away a keystroke below and |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2965 jumped back up to retry_key; in that case, these restore these |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2966 variables to their original state, allowing us to restart the |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2967 loop. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2968 echo_truncate (echo_local_start); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2969 this_command_key_count = keys_local_start; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2970 first_binding = local_first_binding; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2971 |
899 | 2972 /* Are we re-reading a key sequence, as indicated by mock_input? */ |
518 | 2973 if (t < mock_input) |
2974 { | |
2975 key = keybuf[t]; | |
2976 add_command_key (key); | |
2977 echo_char (key); | |
2978 } | |
899 | 2979 |
2980 /* If not, we should actually read a character. */ | |
518 | 2981 else |
2982 { | |
2983 struct buffer *buf; | |
2984 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2985 key = read_char (!prompt, nmaps, submaps, last_nonmenu_event, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2986 &used_mouse_menu); |
518 | 2987 |
2988 /* The above routines return -1 at the end of a macro. | |
2989 Emacs 18 handles this by returning immediately with a | |
2990 zero, so that's what we'll do. */ | |
2991 if (XTYPE (key) == Lisp_Int && XINT (key) < 0) | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2992 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2993 unread_switch_frame = delayed_switch_frame; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2994 return 0; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2995 } |
518 | 2996 |
2997 Vquit_flag = Qnil; | |
2998 | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2999 /* Clicks in non-text areas get prefixed by the symbol |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3000 in their CHAR-ADDRESS field. For example, a click on |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3001 the mode line is prefixed by the symbol `mode-line'. */ |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3002 if (EVENT_HAS_PARAMETERS (key)) |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3003 { |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3004 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key)); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3005 if (EQ (kind, Qmouse_click)) |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3006 { |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3007 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key)); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3008 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3009 if (XTYPE (posn) == Lisp_Symbol) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3010 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3011 if (t + 1 >= bufsize) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3012 error ("key sequence too long"); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3013 keybuf[t] = posn; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3014 keybuf[t+1] = key; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3015 mock_input = t + 2; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3016 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3017 goto retry_key; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3018 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3019 } |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3020 else if (EQ (kind, Qswitch_frame)) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3021 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3022 /* If we're at the beginning of a key sequence, go |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3023 ahead and return this event. If we're in the |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3024 midst of a key sequence, delay it until the end. */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3025 if (t > 0) |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3026 { |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3027 delayed_switch_frame = key; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3028 goto retry_key; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3029 } |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3030 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3031 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3032 |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3033 #if 0 /* This shouldn't be necessary any more, now that we have |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3034 switch-frame events. */ |
765 | 3035 #ifdef MULTI_FRAME |
518 | 3036 /* What buffer was this event typed/moused at? */ |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3037 if (used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3038 /* Never change last_event_buffer for using a menu. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3039 buf = last_event_buffer; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3040 else if (XTYPE (key) == Lisp_Int || XTYPE (key) == Lisp_Symbol) |
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3041 { |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3042 buf = ((XTYPE (Vlast_event_frame) == Lisp_Frame) |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3043 ? (XBUFFER |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3044 (XWINDOW |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3045 (FRAME_SELECTED_WINDOW |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3046 (XFRAME (Vlast_event_frame)))->buffer)) |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3047 : last_event_buffer); |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
3048 } |
518 | 3049 else if (EVENT_HAS_PARAMETERS (key)) |
3050 { | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3051 Lisp_Object window = POSN_WINDOW (EVENT_START (key)); |
518 | 3052 |
3053 if (NILP (window)) | |
3054 abort (); | |
3055 | |
3056 buf = XBUFFER (XWINDOW (window)->buffer); | |
3057 } | |
3058 else | |
3059 abort (); | |
3060 | |
3061 /* If this event came to a different buffer than the one | |
3062 we're currently in, switch buffers and start a new key | |
3063 sequence, starting with key. */ | |
3064 if (buf != last_event_buffer) | |
3065 { | |
3066 last_event_buffer = buf; | |
765 | 3067 Fselect_frame (Vlast_event_frame, Qnil); |
518 | 3068 |
3069 /* Arrange to read key as the next event. */ | |
3070 keybuf[0] = key; | |
3071 mock_input = 1; | |
3072 | |
3073 goto restart; | |
3074 } | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3075 #endif /* MULTI_FRAME */ |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3076 #endif /* 0 */ |
518 | 3077 } |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3078 |
518 | 3079 first_binding = (follow_key (key, |
3080 nmaps - first_binding, | |
899 | 3081 submaps + first_binding, |
518 | 3082 defs + first_binding, |
899 | 3083 submaps + first_binding) |
518 | 3084 + first_binding); |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3085 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3086 /* If this key wasn't bound, we'll try some fallbacks. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3087 if (first_binding >= nmaps) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3088 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3089 Lisp_Object head = EVENT_HEAD (key); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3090 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3091 if (XTYPE (head) == Lisp_Symbol) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3092 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3093 Lisp_Object breakdown = parse_modifiers (head); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3094 Lisp_Object modifiers = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3095 XINT (XCONS (XCONS (breakdown)->cdr)->car); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3096 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3097 /* We drop unbound `down-' events altogether. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3098 if (modifiers & down_modifier) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3099 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3100 /* Adding prefixes for non-textual mouse clicks creates |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3101 two characters of mock input, and this can't be the |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3102 first, so it's okay to clear mock_input in that case. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3103 Only function key expansion could create more than |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3104 two keys, but that should never generate mouse events, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3105 so it's okay to nuke mock_input in that case too. |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3106 Isn't this just the most wonderful code ever? */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3107 mock_input = 0; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3108 goto retry_key; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3109 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3110 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3111 /* We turn unbound `drag-' events into `click-' |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3112 events, if the click would be bound. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3113 else if (modifiers & drag_modifier) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3114 { |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3115 Lisp_Object new_head = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3116 apply_modifiers (modifiers & ~drag_modifier, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3117 XCONS (breakdown)->car); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3118 Lisp_Object new_click = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3119 Fcons (new_head, Fcons (EVENT_START (key), Qnil)); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3120 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3121 /* Look for a binding for this new key. follow_key |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3122 promises that it didn't munge submaps the |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3123 last time we called it, since key was unbound. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3124 first_binding = |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3125 (follow_key (new_click, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3126 nmaps - local_first_binding, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3127 submaps + local_first_binding, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3128 defs + local_first_binding, |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3129 submaps + local_first_binding) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3130 + local_first_binding); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3131 |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3132 /* If that click is bound, go for it. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3133 if (first_binding < nmaps) |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3134 key = new_click; |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3135 /* Otherwise, we'll leave key set to the drag event. */ |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3136 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3137 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3138 } |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3139 |
518 | 3140 keybuf[t++] = key; |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3141 /* Normally, last_nonmenu_event gets the previous key we read. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3142 But when a mouse popup menu is being used, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3143 we don't update last_nonmenu_event; it continues to hold the mouse |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3144 event that preceded the first level of menu. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3145 if (!used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3146 last_nonmenu_event = key; |
518 | 3147 |
3148 /* If the sequence is unbound, see if we can hang a function key | |
899 | 3149 off the end of it. We only want to scan real keyboard input |
3150 for function key sequences, so if mock_input says that we're | |
3151 re-scanning after expanding a function key, don't examine it. */ | |
518 | 3152 if (first_binding >= nmaps |
899 | 3153 && t >= mock_input) |
518 | 3154 { |
3155 Lisp_Object fkey_next; | |
3156 | |
3157 /* Scan from fkey_end until we find a bound suffix. */ | |
3158 while (fkey_end < t) | |
3159 { | |
853 | 3160 /* Look up meta-characters by prefixing them |
3161 with meta_prefix_char. I hate this. */ | |
899 | 3162 if (keybuf[fkey_end] & 0x80) |
853 | 3163 fkey_next = |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3164 get_keymap_1 |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3165 ((get_keyelt |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3166 (access_keymap (fkey_map, meta_prefix_char, 1))), |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3167 0); |
853 | 3168 else |
3169 fkey_next = fkey_map; | |
3170 | |
518 | 3171 fkey_next = |
853 | 3172 get_keyelt (access_keymap |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3173 (fkey_next, keybuf[fkey_end++] & 0x7f, 1)); |
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
3174 |
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
3175 /* If keybuf[fkey_start..fkey_end] is bound in the |
547 | 3176 function key map and it's a suffix of the current |
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
3177 sequence (i.e. fkey_end == t), replace it with |
547 | 3178 the binding and restart with fkey_start at the end. */ |
518 | 3179 if (XTYPE (fkey_next) == Lisp_Vector |
3180 && fkey_end == t) | |
3181 { | |
3182 t = fkey_start + XVECTOR (fkey_next)->size; | |
3183 if (t >= bufsize) | |
3184 error ("key sequence too long"); | |
3185 | |
3186 bcopy (XVECTOR (fkey_next)->contents, | |
3187 keybuf + fkey_start, | |
3188 (t - fkey_start) * sizeof (keybuf[0])); | |
3189 | |
3190 mock_input = t; | |
3191 fkey_start = fkey_end = t; | |
3192 | |
3193 goto restart; | |
3194 } | |
3195 | |
3196 fkey_map = get_keymap_1 (fkey_next, 0); | |
3197 | |
547 | 3198 /* If we no longer have a bound suffix, try a new positions for |
3199 fkey_start. */ | |
518 | 3200 if (NILP (fkey_map)) |
3201 { | |
3202 fkey_end = ++fkey_start; | |
3203 fkey_map = Vfunction_key_map; | |
3204 } | |
3205 } | |
3206 } | |
3207 } | |
3208 | |
3209 read_key_sequence_cmd = (first_binding < nmaps | |
3210 ? defs[first_binding] | |
3211 : Qnil); | |
3212 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3213 unread_switch_frame = delayed_switch_frame; |
518 | 3214 return t; |
3215 } | |
3216 | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3217 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0, |
518 | 3218 "Read a sequence of keystrokes and return as a string or vector.\n\ |
3219 The sequence is sufficient to specify a non-prefix command in the\n\ | |
3220 current local and global maps.\n\ | |
3221 \n\ | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3222 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\ |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3223 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\ |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3224 as a continuation of the previous key.\n\ |
518 | 3225 \n\ |
765 | 3226 If Emacs is running on multiple frames, switching between frames in\n\ |
518 | 3227 the midst of a keystroke will toss any prefix typed so far. A C-g\n\ |
3228 typed while in this function is treated like any other character, and\n\ | |
3229 `quit-flag' is not set.") | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3230 (prompt, continue_echo) |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3231 Lisp_Object prompt, continue_echo; |
518 | 3232 { |
3233 Lisp_Object keybuf[30]; | |
3234 register int i; | |
3235 struct gcpro gcpro1, gcpro2; | |
3236 | |
3237 if (!NILP (prompt)) | |
3238 CHECK_STRING (prompt, 0); | |
3239 QUIT; | |
3240 | |
3241 bzero (keybuf, sizeof keybuf); | |
3242 GCPRO1 (keybuf[0]); | |
3243 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0])); | |
3244 | |
727 | 3245 if (NILP (continue_echo)) |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3246 this_command_key_count = 0; |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3247 |
518 | 3248 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])), |
3249 NILP (prompt) ? 0 : XSTRING (prompt)->data); | |
3250 | |
3251 UNGCPRO; | |
3252 return make_array (i, keybuf); | |
3253 } | |
3254 | |
3255 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0, | |
3256 "Execute CMD as an editor command.\n\ | |
3257 CMD must be a symbol that satisfies the `commandp' predicate.\n\ | |
3258 Optional second arg RECORD-FLAG non-nil\n\ | |
3259 means unconditionally put this command in `command-history'.\n\ | |
3260 Otherwise, that is done only if an arg is read using the minibuffer.") | |
3261 (cmd, record) | |
3262 Lisp_Object cmd, record; | |
3263 { | |
3264 register Lisp_Object final; | |
3265 register Lisp_Object tem; | |
3266 Lisp_Object prefixarg; | |
3267 struct backtrace backtrace; | |
3268 extern int debug_on_next_call; | |
3269 | |
3270 prefixarg = Vprefix_arg, Vprefix_arg = Qnil; | |
3271 Vcurrent_prefix_arg = prefixarg; | |
3272 debug_on_next_call = 0; | |
3273 | |
3274 if (XTYPE (cmd) == Lisp_Symbol) | |
3275 { | |
3276 tem = Fget (cmd, Qdisabled); | |
3277 if (!NILP (tem)) | |
3278 return call1 (Vrun_hooks, Vdisabled_command_hook); | |
3279 } | |
3280 | |
3281 while (1) | |
3282 { | |
648 | 3283 final = Findirect_function (cmd); |
518 | 3284 |
3285 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload))) | |
3286 do_autoload (final, cmd); | |
3287 else | |
3288 break; | |
3289 } | |
3290 | |
3291 if (XTYPE (final) == Lisp_String | |
3292 || XTYPE (final) == Lisp_Vector) | |
3293 { | |
3294 /* If requested, place the macro in the command history. For | |
3295 other sorts of commands, call-interactively takes care of | |
3296 this. */ | |
3297 if (!NILP (record)) | |
3298 Vcommand_history | |
3299 = Fcons (Fcons (Qexecute_kbd_macro, | |
3300 Fcons (final, Fcons (prefixarg, Qnil))), | |
3301 Vcommand_history); | |
3302 | |
3303 return Fexecute_kbd_macro (final, prefixarg); | |
3304 } | |
3305 if (CONSP (final) || XTYPE (final) == Lisp_Subr | |
3306 || XTYPE (final) == Lisp_Compiled) | |
3307 { | |
3308 backtrace.next = backtrace_list; | |
3309 backtrace_list = &backtrace; | |
3310 backtrace.function = &Qcall_interactively; | |
3311 backtrace.args = &cmd; | |
3312 backtrace.nargs = 1; | |
3313 backtrace.evalargs = 0; | |
3314 | |
3315 tem = Fcall_interactively (cmd, record); | |
3316 | |
3317 backtrace_list = backtrace.next; | |
3318 return tem; | |
3319 } | |
3320 return Qnil; | |
3321 } | |
3322 | |
3323 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, | |
3324 1, 1, "P", | |
3325 "Read function name, then read its arguments and call it.") | |
3326 (prefixarg) | |
3327 Lisp_Object prefixarg; | |
3328 { | |
3329 Lisp_Object function; | |
3330 char buf[40]; | |
3331 Lisp_Object saved_keys; | |
3332 struct gcpro gcpro1; | |
3333 | |
3334 saved_keys = Fthis_command_keys (); | |
3335 buf[0] = 0; | |
3336 GCPRO1 (saved_keys); | |
3337 | |
3338 if (EQ (prefixarg, Qminus)) | |
3339 strcpy (buf, "- "); | |
3340 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4) | |
3341 strcpy (buf, "C-u "); | |
3342 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int) | |
3343 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car)); | |
3344 else if (XTYPE (prefixarg) == Lisp_Int) | |
3345 sprintf (buf, "%d ", XINT (prefixarg)); | |
3346 | |
3347 /* This isn't strictly correct if execute-extended-command | |
3348 is bound to anything else. Perhaps it should use | |
3349 this_command_keys? */ | |
3350 strcat (buf, "M-x "); | |
3351 | |
3352 /* Prompt with buf, and then read a string, completing from and | |
3353 restricting to the set of all defined commands. Don't provide | |
3354 any initial input. The last Qnil says not to perform a | |
3355 peculiar hack on the initial input. */ | |
3356 function = Fcompleting_read (build_string (buf), | |
3357 Vobarray, Qcommandp, | |
3358 Qt, Qnil, Qnil); | |
3359 | |
708 | 3360 /* Set this_command_keys to the concatenation of saved_keys and |
3361 function, followed by a RET. */ | |
518 | 3362 { |
708 | 3363 struct Lisp_String *str; |
518 | 3364 int i; |
3365 Lisp_Object tem; | |
3366 | |
708 | 3367 this_command_key_count = 0; |
3368 | |
3369 str = XSTRING (saved_keys); | |
3370 for (i = 0; i < str->size; i++) | |
518 | 3371 { |
708 | 3372 XFASTINT (tem) = str->data[i]; |
518 | 3373 add_command_key (tem); |
3374 } | |
708 | 3375 |
3376 str = XSTRING (function); | |
3377 for (i = 0; i < str->size; i++) | |
3378 { | |
3379 XFASTINT (tem) = str->data[i]; | |
3380 add_command_key (tem); | |
3381 } | |
3382 | |
3383 XFASTINT (tem) = '\015'; | |
3384 add_command_key (tem); | |
518 | 3385 } |
3386 | |
3387 UNGCPRO; | |
3388 | |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3389 function = Fintern (function, Qnil); |
518 | 3390 Vprefix_arg = prefixarg; |
3391 this_command = function; | |
3392 | |
3393 return Fcommand_execute (function, Qt); | |
3394 } | |
3395 | |
3396 | |
3397 detect_input_pending () | |
3398 { | |
3399 if (!input_pending) | |
3400 get_input_pending (&input_pending); | |
3401 | |
3402 return input_pending; | |
3403 } | |
3404 | |
648 | 3405 /* This is called in some cases before a possible quit. |
3406 It cases the next call to detect_input_pending to recompute input_pending. | |
3407 So calling this function unnecessarily can't do any harm. */ | |
3408 clear_input_pending () | |
3409 { | |
3410 input_pending = 0; | |
3411 } | |
3412 | |
518 | 3413 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, |
3414 "T if command input is currently available with no waiting.\n\ | |
3415 Actually, the value is nil only if we can be sure that no input is available.") | |
3416 () | |
3417 { | |
3418 if (!NILP (unread_command_char)) | |
3419 return (Qt); | |
3420 | |
3421 return detect_input_pending () ? Qt : Qnil; | |
3422 } | |
3423 | |
3424 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0, | |
727 | 3425 "Return vector of last 100 chars read from terminal.") |
518 | 3426 () |
3427 { | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
3428 Lisp_Object *keys = XVECTOR (recent_keys)->contents; |
518 | 3429 Lisp_Object val; |
3430 | |
3431 if (total_keys < NUM_RECENT_KEYS) | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
3432 return Fvector (total_keys, keys); |
518 | 3433 else |
3434 { | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
3435 val = Fvector (NUM_RECENT_KEYS, keys); |
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
3436 bcopy (keys + recent_keys_index, |
518 | 3437 XVECTOR (val)->contents, |
3438 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object)); | |
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
3439 bcopy (keys, |
518 | 3440 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index, |
3441 recent_keys_index * sizeof (Lisp_Object)); | |
3442 return val; | |
3443 } | |
3444 } | |
3445 | |
3446 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, | |
3447 "Return string of the keystrokes that invoked this command.") | |
3448 () | |
3449 { | |
3450 return make_array (this_command_key_count, this_command_keys); | |
3451 } | |
3452 | |
3453 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0, | |
3454 "Return the current depth in recursive edits.") | |
3455 () | |
3456 { | |
3457 Lisp_Object temp; | |
3458 XFASTINT (temp) = command_loop_level + minibuf_level; | |
3459 return temp; | |
3460 } | |
3461 | |
3462 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, | |
3463 "FOpen dribble file: ", | |
3464 "Start writing all keyboard characters to FILE.") | |
3465 (file) | |
3466 Lisp_Object file; | |
3467 { | |
3468 if (NILP (file)) | |
3469 { | |
3470 fclose (dribble); | |
3471 dribble = 0; | |
3472 } | |
3473 else | |
3474 { | |
3475 file = Fexpand_file_name (file, Qnil); | |
3476 dribble = fopen (XSTRING (file)->data, "w"); | |
3477 } | |
3478 return Qnil; | |
3479 } | |
3480 | |
3481 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0, | |
3482 "Discard the contents of the terminal input buffer.\n\ | |
3483 Also cancel any kbd macro being defined.") | |
3484 () | |
3485 { | |
3486 defining_kbd_macro = 0; | |
3487 update_mode_lines++; | |
3488 | |
3489 unread_command_char = Qnil; | |
3490 | |
3491 discard_tty_input (); | |
3492 | |
3493 kbd_fetch_ptr = kbd_store_ptr; | |
3494 input_pending = 0; | |
3495 | |
3496 return Qnil; | |
3497 } | |
3498 | |
3499 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "", | |
3500 "Stop Emacs and return to superior process. You can resume later.\n\ | |
3501 On systems that don't have job control, run a subshell instead.\n\n\ | |
3502 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\ | |
3503 to be read as terminal input by Emacs's superior shell.\n\ | |
3504 Before suspending, if `suspend-hook' is bound and value is non-nil\n\ | |
3505 call the value as a function of no args. Don't suspend if it returns non-nil.\n\ | |
3506 Otherwise, suspend normally and after resumption call\n\ | |
3507 `suspend-resume-hook' if that is bound and non-nil.\n\ | |
3508 \n\ | |
3509 Some operating systems cannot stop the Emacs process and resume it later.\n\ | |
3510 On such systems, Emacs will start a subshell and wait for it to exit.") | |
3511 (stuffstring) | |
3512 Lisp_Object stuffstring; | |
3513 { | |
3514 register Lisp_Object tem; | |
3515 int count = specpdl_ptr - specpdl; | |
3516 int old_height, old_width; | |
3517 int width, height; | |
3518 struct gcpro gcpro1; | |
3519 extern init_sys_modes (); | |
3520 | |
3521 if (!NILP (stuffstring)) | |
3522 CHECK_STRING (stuffstring, 0); | |
3523 GCPRO1 (stuffstring); | |
3524 | |
3525 /* Call value of suspend-hook | |
3526 if it is bound and value is non-nil. */ | |
3527 if (!NILP (Vrun_hooks)) | |
3528 { | |
3529 tem = call1 (Vrun_hooks, intern ("suspend-hook")); | |
3530 if (!EQ (tem, Qnil)) return Qnil; | |
3531 } | |
3532 | |
765 | 3533 get_frame_size (&old_width, &old_height); |
518 | 3534 reset_sys_modes (); |
3535 /* sys_suspend can get an error if it tries to fork a subshell | |
3536 and the system resources aren't available for that. */ | |
3537 record_unwind_protect (init_sys_modes, 0); | |
3538 stuff_buffered_input (stuffstring); | |
3539 sys_suspend (); | |
3540 unbind_to (count, Qnil); | |
3541 | |
3542 /* Check if terminal/window size has changed. | |
3543 Note that this is not useful when we are running directly | |
3544 with a window system; but suspend should be disabled in that case. */ | |
765 | 3545 get_frame_size (&width, &height); |
518 | 3546 if (width != old_width || height != old_height) |
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
3547 change_frame_size (0, height, width, 0, 0); |
518 | 3548 |
3549 /* Call value of suspend-resume-hook | |
3550 if it is bound and value is non-nil. */ | |
3551 if (!NILP (Vrun_hooks)) | |
3552 call1 (Vrun_hooks, intern ("suspend-resume-hook")); | |
3553 | |
3554 UNGCPRO; | |
3555 return Qnil; | |
3556 } | |
3557 | |
3558 /* If STUFFSTRING is a string, stuff its contents as pending terminal input. | |
3559 Then in any case stuff anthing Emacs has read ahead and not used. */ | |
3560 | |
3561 stuff_buffered_input (stuffstring) | |
3562 Lisp_Object stuffstring; | |
3563 { | |
3564 register unsigned char *p; | |
3565 | |
3566 /* stuff_char works only in BSD, versions 4.2 and up. */ | |
3567 #ifdef BSD | |
3568 #ifndef BSD4_1 | |
3569 if (XTYPE (stuffstring) == Lisp_String) | |
3570 { | |
3571 register int count; | |
3572 | |
3573 p = XSTRING (stuffstring)->data; | |
3574 count = XSTRING (stuffstring)->size; | |
3575 while (count-- > 0) | |
3576 stuff_char (*p++); | |
3577 stuff_char ('\n'); | |
3578 } | |
3579 /* Anything we have read ahead, put back for the shell to read. */ | |
3580 while (kbd_fetch_ptr != kbd_store_ptr) | |
3581 { | |
3582 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE) | |
3583 kbd_fetch_ptr = kbd_buffer; | |
3584 if (kbd_fetch_ptr->kind == ascii_keystroke) | |
3585 stuff_char (XINT (kbd_fetch_ptr->code)); | |
3586 kbd_fetch_ptr++; | |
3587 } | |
3588 input_pending = 0; | |
3589 #endif | |
3590 #endif /* BSD and not BSD4_1 */ | |
3591 } | |
3592 | |
648 | 3593 set_waiting_for_input (time_to_clear) |
3594 EMACS_TIME *time_to_clear; | |
518 | 3595 { |
648 | 3596 input_available_clear_time = time_to_clear; |
518 | 3597 |
3598 /* Tell interrupt_signal to throw back to read_char, */ | |
3599 waiting_for_input = 1; | |
3600 | |
3601 /* If interrupt_signal was called before and buffered a C-g, | |
3602 make it run again now, to avoid timing error. */ | |
3603 if (!NILP (Vquit_flag)) | |
3604 quit_throw_to_read_char (); | |
3605 | |
3606 /* If alarm has gone off already, echo now. */ | |
3607 if (echo_flag) | |
3608 { | |
3609 echo (); | |
3610 echo_flag = 0; | |
3611 } | |
3612 } | |
3613 | |
3614 clear_waiting_for_input () | |
3615 { | |
3616 /* Tell interrupt_signal not to throw back to read_char, */ | |
3617 waiting_for_input = 0; | |
648 | 3618 input_available_clear_time = 0; |
518 | 3619 } |
3620 | |
3621 /* This routine is called at interrupt level in response to C-G. | |
3622 If interrupt_input, this is the handler for SIGINT. | |
3623 Otherwise, it is called from kbd_buffer_store_event, | |
3624 in handling SIGIO or SIGTINT. | |
3625 | |
3626 If `waiting_for_input' is non zero, then unless `echoing' is nonzero, | |
3627 immediately throw back to read_char. | |
3628 | |
3629 Otherwise it sets the Lisp variable quit-flag not-nil. | |
3630 This causes eval to throw, when it gets a chance. | |
3631 If quit-flag is already non-nil, it stops the job right away. */ | |
3632 | |
3633 SIGTYPE | |
3634 interrupt_signal () | |
3635 { | |
3636 char c; | |
3637 /* Must preserve main program's value of errno. */ | |
3638 int old_errno = errno; | |
3639 extern Lisp_Object Vwindow_system; | |
3640 | |
3641 #ifdef USG | |
3642 /* USG systems forget handlers when they are used; | |
3643 must reestablish each time */ | |
3644 signal (SIGINT, interrupt_signal); | |
3645 signal (SIGQUIT, interrupt_signal); | |
3646 #endif /* USG */ | |
3647 | |
3648 cancel_echoing (); | |
3649 | |
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
3650 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame)) |
518 | 3651 { |
3652 fflush (stdout); | |
3653 reset_sys_modes (); | |
3654 sigfree (); | |
3655 #ifdef SIGTSTP /* Support possible in later USG versions */ | |
3656 /* | |
3657 * On systems which can suspend the current process and return to the original | |
3658 * shell, this command causes the user to end up back at the shell. | |
3659 * The "Auto-save" and "Abort" questions are not asked until | |
3660 * the user elects to return to emacs, at which point he can save the current | |
3661 * job and either dump core or continue. | |
3662 */ | |
3663 sys_suspend (); | |
3664 #else | |
3665 #ifdef VMS | |
3666 if (sys_suspend () == -1) | |
3667 { | |
3668 printf ("Not running as a subprocess;\n"); | |
3669 printf ("you can continue or abort.\n"); | |
3670 } | |
3671 #else /* not VMS */ | |
3672 /* Perhaps should really fork an inferior shell? | |
3673 But that would not provide any way to get back | |
3674 to the original shell, ever. */ | |
3675 printf ("No support for stopping a process on this operating system;\n"); | |
3676 printf ("you can continue or abort.\n"); | |
3677 #endif /* not VMS */ | |
3678 #endif /* not SIGTSTP */ | |
3679 printf ("Auto-save? (y or n) "); | |
3680 fflush (stdout); | |
3681 if (((c = getchar ()) & ~040) == 'Y') | |
3682 Fdo_auto_save (Qnil, Qnil); | |
3683 while (c != '\n') c = getchar (); | |
3684 #ifdef VMS | |
3685 printf ("Abort (and enter debugger)? (y or n) "); | |
3686 #else /* not VMS */ | |
3687 printf ("Abort (and dump core)? (y or n) "); | |
3688 #endif /* not VMS */ | |
3689 fflush (stdout); | |
3690 if (((c = getchar ()) & ~040) == 'Y') | |
3691 abort (); | |
3692 while (c != '\n') c = getchar (); | |
3693 printf ("Continuing...\n"); | |
3694 fflush (stdout); | |
3695 init_sys_modes (); | |
3696 } | |
3697 else | |
3698 { | |
3699 /* If executing a function that wants to be interrupted out of | |
3700 and the user has not deferred quitting by binding `inhibit-quit' | |
3701 then quit right away. */ | |
3702 if (immediate_quit && NILP (Vinhibit_quit)) | |
3703 { | |
3704 immediate_quit = 0; | |
3705 sigfree (); | |
3706 Fsignal (Qquit, Qnil); | |
3707 } | |
3708 else | |
3709 /* Else request quit when it's safe */ | |
3710 Vquit_flag = Qt; | |
3711 } | |
3712 | |
3713 if (waiting_for_input && !echoing) | |
3714 quit_throw_to_read_char (); | |
3715 | |
3716 errno = old_errno; | |
3717 } | |
3718 | |
3719 /* Handle a C-g by making read_char return C-g. */ | |
3720 | |
3721 quit_throw_to_read_char () | |
3722 { | |
3723 quit_error_check (); | |
3724 sigfree (); | |
3725 /* Prevent another signal from doing this before we finish. */ | |
650 | 3726 clear_waiting_for_input (); |
518 | 3727 input_pending = 0; |
3728 | |
3729 unread_command_char = Qnil; | |
3730 | |
3731 _longjmp (getcjmp, 1); | |
3732 } | |
3733 | |
3734 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0, | |
3735 "Set mode of reading keyboard input.\n\ | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3736 First arg INTERRUPT non-nil means use input interrupts;\n\ |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3737 nil means use CBREAK mode.\n\ |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3738 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\ |
518 | 3739 (no effect except in CBREAK mode).\n\ |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3740 Third arg META non-nil means accept 8-bit input (for a Meta key).\n\ |
518 | 3741 Otherwise, the top bit is ignored, on the assumption it is parity.\n\ |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3742 Optional fourth arg QUIT if non-nil specifies character to use for quitting.") |
518 | 3743 (interrupt, flow, meta, quit) |
3744 Lisp_Object interrupt, flow, meta, quit; | |
3745 { | |
3746 if (!NILP (quit) | |
3747 && (XTYPE (quit) != Lisp_Int | |
3748 || XINT (quit) < 0 || XINT (quit) > 0400)) | |
3749 error ("set-input-mode: QUIT must be an ASCII character."); | |
3750 | |
3751 reset_sys_modes (); | |
3752 #ifdef SIGIO | |
3753 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
3754 #ifdef NO_SOCK_SIGIO | |
3755 if (read_socket_hook) | |
3756 interrupt_input = 0; /* No interrupts if reading from a socket. */ | |
3757 else | |
3758 #endif /* NO_SOCK_SIGIO */ | |
3759 interrupt_input = !NILP (interrupt); | |
3760 #else /* not SIGIO */ | |
3761 interrupt_input = 0; | |
3762 #endif /* not SIGIO */ | |
3763 /* Our VMS input only works by interrupts, as of now. */ | |
3764 #ifdef VMS | |
3765 interrupt_input = 1; | |
3766 #endif | |
3767 flow_control = !NILP (flow); | |
3768 meta_key = !NILP (meta); | |
3769 if (!NILP (quit)) | |
3770 /* Don't let this value be out of range. */ | |
3771 quit_char = XINT (quit) & (meta_key ? 0377 : 0177); | |
3772 | |
3773 init_sys_modes (); | |
3774 return Qnil; | |
3775 } | |
3776 | |
3777 init_keyboard () | |
3778 { | |
3779 this_command_keys_size = 40; | |
3780 this_command_keys = | |
3781 (Lisp_Object *) xmalloc (this_command_keys_size * sizeof (Lisp_Object)); | |
3782 | |
3783 /* This is correct before outermost invocation of the editor loop */ | |
3784 command_loop_level = -1; | |
3785 immediate_quit = 0; | |
3786 quit_char = Ctl ('g'); | |
3787 unread_command_char = Qnil; | |
3788 total_keys = 0; | |
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
3789 recent_keys_index = 0; |
518 | 3790 kbd_fetch_ptr = kbd_buffer; |
3791 kbd_store_ptr = kbd_buffer; | |
3792 do_mouse_tracking = 0; | |
3793 input_pending = 0; | |
3794 | |
3795 if (!noninteractive) | |
3796 { | |
3797 signal (SIGINT, interrupt_signal); | |
3798 #ifdef HAVE_TERMIO | |
3799 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and | |
3800 SIGQUIT and we can't tell which one it will give us. */ | |
3801 signal (SIGQUIT, interrupt_signal); | |
3802 #endif /* HAVE_TERMIO */ | |
3803 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
3804 #ifdef SIGIO | |
3805 signal (SIGIO, input_available_signal); | |
1008
f1df63f98e5c
* keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents:
985
diff
changeset
|
3806 #endif /* SIGIO */ |
518 | 3807 } |
3808 | |
3809 /* Use interrupt input by default, if it works and noninterrupt input | |
3810 has deficiencies. */ | |
3811 | |
3812 #ifdef INTERRUPT_INPUT | |
3813 interrupt_input = 1; | |
3814 #else | |
3815 interrupt_input = 0; | |
3816 #endif | |
3817 | |
3818 /* Our VMS input only works by interrupts, as of now. */ | |
3819 #ifdef VMS | |
3820 interrupt_input = 1; | |
3821 #endif | |
3822 | |
3823 sigfree (); | |
3824 dribble = 0; | |
3825 | |
3826 if (keyboard_init_hook) | |
3827 (*keyboard_init_hook) (); | |
3828 | |
3829 #ifdef POLL_FOR_INPUT | |
3830 poll_suppress_count = 1; | |
3831 start_polling (); | |
3832 #endif | |
3833 } | |
3834 | |
3835 /* This type's only use is in syms_of_keyboard, to initialize the | |
3836 event header symbols and put properties on them. */ | |
3837 struct event_head { | |
3838 Lisp_Object *var; | |
3839 char *name; | |
3840 Lisp_Object *kind; | |
3841 }; | |
3842 | |
3843 struct event_head head_table[] = { | |
3844 &Qmouse_movement, "mouse-movement", &Qmouse_movement, | |
3845 &Qvscrollbar_part, "vscrollbar-part", &Qscrollbar_click, | |
3846 &Qvslider_part, "vslider-part", &Qscrollbar_click, | |
3847 &Qvthumbup_part, "vthumbup-part", &Qscrollbar_click, | |
3848 &Qvthumbdown_part, "vthumbdown-part", &Qscrollbar_click, | |
3849 &Qhscrollbar_part, "hscrollbar-part", &Qscrollbar_click, | |
3850 &Qhslider_part, "hslider-part", &Qscrollbar_click, | |
3851 &Qhthumbleft_part, "hthumbleft-part", &Qscrollbar_click, | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3852 &Qhthumbright_part,"hthumbright-part", &Qscrollbar_click, |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3853 &Qswitch_frame, "switch-frame", &Qswitch_frame |
518 | 3854 }; |
3855 | |
3856 syms_of_keyboard () | |
3857 { | |
3858 Qself_insert_command = intern ("self-insert-command"); | |
3859 staticpro (&Qself_insert_command); | |
3860 | |
3861 Qforward_char = intern ("forward-char"); | |
3862 staticpro (&Qforward_char); | |
3863 | |
3864 Qbackward_char = intern ("backward-char"); | |
3865 staticpro (&Qbackward_char); | |
3866 | |
3867 Qdisabled = intern ("disabled"); | |
3868 staticpro (&Qdisabled); | |
3869 | |
3870 Qfunction_key = intern ("function-key"); | |
3871 staticpro (&Qfunction_key); | |
1322
5f327f1dddd3
* keyboard.c (modify_event_symbol): Make sure that the unmodified
Jim Blandy <jimb@redhat.com>
parents:
1310
diff
changeset
|
3872 Qmouse_click = intern ("mouse-click"); |
518 | 3873 staticpro (&Qmouse_click); |
3874 Qmouse_movement = intern ("scrollbar-click"); | |
3875 staticpro (&Qmouse_movement); | |
3876 | |
3877 Qmode_line = intern ("mode-line"); | |
3878 staticpro (&Qmode_line); | |
732 | 3879 Qvertical_line = intern ("vertical-line"); |
3880 staticpro (&Qvertical_line); | |
518 | 3881 |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3882 Qevent_kind = intern ("event-kind"); |
518 | 3883 staticpro (&Qevent_kind); |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3884 Qevent_symbol_elements = intern ("event-symbol-elements"); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3885 staticpro (&Qevent_symbol_elements); |
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3886 Qevent_symbol_element_mask = intern ("event-symbol-element-mask"); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3887 staticpro (&Qevent_symbol_element_mask); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3888 Qmodifier_cache = intern ("modifier-cache"); |
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3889 staticpro (&Qmodifier_cache); |
518 | 3890 |
3891 { | |
3892 struct event_head *p; | |
3893 | |
3894 for (p = head_table; | |
3895 p < head_table + (sizeof (head_table) / sizeof (head_table[0])); | |
3896 p++) | |
3897 { | |
3898 *p->var = intern (p->name); | |
3899 staticpro (p->var); | |
3900 Fput (*p->var, Qevent_kind, *p->kind); | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3901 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil)); |
518 | 3902 } |
3903 } | |
3904 | |
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3905 { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3906 int i; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3907 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3908 for (i = 0; i < NUM_MOUSE_BUTTONS; i++) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3909 staticpro (&button_down_location[i].window); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3910 } |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3911 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3912 { |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3913 int i; |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3914 int len = sizeof (modifier_names) / sizeof (modifier_names[0]); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3915 |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3916 modifier_symbols = Fmake_vector (make_number (len), Qnil); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3917 for (i = 0; i < len; i++) |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3918 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3919 staticpro (&modifier_symbols); |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3920 } |
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3921 |
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
3922 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil); |
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
3923 staticpro (&recent_keys); |
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
3924 |
518 | 3925 func_key_syms = Qnil; |
3926 staticpro (&func_key_syms); | |
3927 | |
3928 mouse_syms = Qnil; | |
3929 staticpro (&mouse_syms); | |
3930 | |
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3931 unread_switch_frame = Qnil; |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3932 staticpro (&unread_switch_frame); |
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3933 |
518 | 3934 defsubr (&Sread_key_sequence); |
3935 defsubr (&Srecursive_edit); | |
3936 defsubr (&Strack_mouse); | |
3937 defsubr (&Smouse_click_p); | |
3938 defsubr (&Sinput_pending_p); | |
3939 defsubr (&Scommand_execute); | |
3940 defsubr (&Srecent_keys); | |
3941 defsubr (&Sthis_command_keys); | |
3942 defsubr (&Ssuspend_emacs); | |
3943 defsubr (&Sabort_recursive_edit); | |
3944 defsubr (&Sexit_recursive_edit); | |
3945 defsubr (&Srecursion_depth); | |
3946 defsubr (&Stop_level); | |
3947 defsubr (&Sdiscard_input); | |
3948 defsubr (&Sopen_dribble_file); | |
3949 defsubr (&Sset_input_mode); | |
3950 defsubr (&Sexecute_extended_command); | |
3951 | |
3952 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook, | |
3953 "Value is called instead of any command that is disabled\n\ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3954 \(has a non-nil `disabled' property)."); |
518 | 3955 |
3956 DEFVAR_LISP ("last-command-char", &last_command_char, | |
3957 "Last terminal input key that was part of a command."); | |
3958 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3959 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3960 "Last terminal input key in a command, except for mouse menus.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3961 Mouse menus give back keys that don't look like mouse events;\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3962 this variable holds the actual mouse event that led to the menu,\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3963 so that you can determine whether the command was run by mouse or not."); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3964 |
518 | 3965 DEFVAR_LISP ("last-input-char", &last_input_char, |
3966 "Last terminal input key."); | |
3967 | |
3968 DEFVAR_LISP ("unread-command-char", &unread_command_char, | |
3969 "Object to be read as next input from input stream, or nil if none."); | |
3970 | |
3971 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, | |
3972 "Meta-prefix character code. Meta-foo as command input\n\ | |
3973 turns into this character followed by foo."); | |
3974 XSET (meta_prefix_char, Lisp_Int, 033); | |
3975 | |
3976 DEFVAR_LISP ("last-command", &last_command, | |
3977 "The last command executed. Normally a symbol with a function definition,\n\ | |
3978 but can be whatever was found in the keymap, or whatever the variable\n\ | |
3979 `this-command' was set to by that command."); | |
3980 last_command = Qnil; | |
3981 | |
3982 DEFVAR_LISP ("this-command", &this_command, | |
3983 "The command now being executed.\n\ | |
3984 The command can set this variable; whatever is put here\n\ | |
3985 will be in `last-command' during the following command."); | |
3986 this_command = Qnil; | |
3987 | |
3988 DEFVAR_INT ("auto-save-interval", &auto_save_interval, | |
3989 "*Number of keyboard input characters between auto-saves.\n\ | |
3990 Zero means disable autosaving due to number of characters typed."); | |
3991 auto_save_interval = 300; | |
3992 | |
3993 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, | |
3994 "*Number of seconds idle time before auto-save.\n\ | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
3995 Zero or nil means disable auto-saving due to idleness.\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
3996 After auto-saving due to this many seconds of idle time,\n\ |
701 | 3997 Emacs also does a garbage collection if that seems to be warranted."); |
518 | 3998 XFASTINT (Vauto_save_timeout) = 30; |
3999 | |
4000 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, | |
4001 "*Nonzero means echo unfinished commands after this many seconds of pause."); | |
4002 echo_keystrokes = 1; | |
4003 | |
4004 DEFVAR_INT ("polling-period", &polling_period, | |
4005 "*Interval between polling for input during Lisp execution.\n\ | |
4006 The reason for polling is to make C-g work to stop a running program.\n\ | |
4007 Polling is needed only when using X windows and SIGIO does not work.\n\ | |
4008 Polling is automatically disabled in all other cases."); | |
4009 polling_period = 2; | |
4010 | |
4011 DEFVAR_INT ("num-input-keys", &num_input_keys, | |
4012 "*Number of complete keys read from the keyboard so far."); | |
4013 num_input_keys = 0; | |
4014 | |
765 | 4015 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame, |
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
4016 "*The frame in which the most recently read event occurred.\n\ |
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
4017 If the last event came from a keyboard macro, this is set to `macro'."); |
765 | 4018 Vlast_event_frame = Qnil; |
518 | 4019 |
4020 DEFVAR_LISP ("help-char", &help_char, | |
4021 "Character to recognize as meaning Help.\n\ | |
4022 When it is read, do `(eval help-form)', and display result if it's a string.\n\ | |
4023 If the value of `help-form' is nil, this char can be read normally."); | |
4024 XSET (help_char, Lisp_Int, Ctl ('H')); | |
4025 | |
4026 DEFVAR_LISP ("help-form", &Vhelp_form, | |
4027 "Form to execute when character help-char is read.\n\ | |
4028 If the form returns a string, that string is displayed.\n\ | |
4029 If `help-form' is nil, the help char is not recognized."); | |
4030 Vhelp_form = Qnil; | |
4031 | |
4032 DEFVAR_LISP ("top-level", &Vtop_level, | |
4033 "Form to evaluate when Emacs starts up.\n\ | |
4034 Useful to set before you dump a modified Emacs."); | |
4035 Vtop_level = Qnil; | |
4036 | |
4037 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, | |
4038 "String used as translate table for keyboard input, or nil.\n\ | |
4039 Each character is looked up in this string and the contents used instead.\n\ | |
4040 If string is of length N, character codes N and up are untranslated."); | |
4041 Vkeyboard_translate_table = Qnil; | |
4042 | |
4043 DEFVAR_BOOL ("menu-prompting", &menu_prompting, | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4044 "Non-nil means prompt with menus when appropriate.\n\ |
518 | 4045 This is done when reading from a keymap that has a prompt string,\n\ |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4046 for elements that have prompt strings.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4047 The menu is displayed on the screen\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4048 if X menus were enabled at configuration\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4049 time and the previous event was a mouse click prefix key.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4050 Otherwise, menu prompting uses the echo area."); |
518 | 4051 menu_prompting = 1; |
4052 | |
4053 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char, | |
4054 "Character to see next line of menu prompt.\n\ | |
4055 Type this character while in a menu prompt to rotate around the lines of it."); | |
4056 XSET (menu_prompt_more_char, Lisp_Int, ' '); | |
4057 } | |
4058 | |
4059 keys_of_keyboard () | |
4060 { | |
4061 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs"); | |
4062 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs"); | |
4063 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit"); | |
4064 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit"); | |
4065 initial_define_key (meta_map, 'x', "execute-extended-command"); | |
4066 } |