0
|
1 /* The event_stream interface for X11 with Xt, and/or tty frames.
|
211
|
2 Copyright (C) 1991-5, 1997 Free Software Foundation, Inc.
|
0
|
3 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
4 Copyright (C) 1996 Ben Wing.
|
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: Not in FSF. */
|
|
24
|
|
25 #include <config.h>
|
|
26 #include "lisp.h"
|
|
27
|
|
28 #include "console-x.h"
|
157
|
29 #include "../lwlib/lwlib.h"
|
0
|
30 #include "EmacsFrame.h"
|
|
31
|
|
32 #include "blocktype.h"
|
|
33 #include "buffer.h"
|
|
34 #include "commands.h"
|
|
35 #include "console.h"
|
|
36 #include "console-tty.h"
|
|
37 #include "events.h"
|
|
38 #include "frame.h"
|
|
39 #include "objects-x.h"
|
|
40 #include "process.h"
|
|
41 #include "redisplay.h"
|
187
|
42 #include "elhash.h"
|
0
|
43
|
|
44 #include "systime.h"
|
|
45 #include "sysproc.h" /* for MAXDESC */
|
|
46
|
|
47 #include "xintrinsicp.h" /* CoreP.h needs this */
|
|
48 #include <X11/CoreP.h> /* Numerous places access the fields of
|
|
49 a core widget directly. We could
|
165
|
50 use XtGetValues(), but ... */
|
219
|
51 #include <X11/ShellP.h>
|
|
52
|
70
|
53 #ifdef HAVE_XIM
|
|
54 #ifdef XIM_MOTIF
|
|
55 #include <Xm/Xm.h>
|
|
56 #endif
|
|
57 #include "lstream.h"
|
|
58 #include "mule-coding.h"
|
|
59 #endif
|
0
|
60
|
197
|
61 #ifdef HAVE_OFFIX_DND
|
|
62 #include "offix.h"
|
|
63 #endif
|
|
64
|
100
|
65 #ifdef WINDOWSNT
|
|
66 /* Hmm, under unix we want X modifiers, under NT we want X modifiers if
|
|
67 we are running X and Windows modifiers otherwise.
|
|
68 gak. This is a kludge until we support multiple native GUIs!
|
|
69 */
|
|
70 #undef MOD_ALT
|
|
71 #undef MOD_CONTROL
|
|
72 #undef MOD_SHIFT
|
|
73 #endif
|
|
74
|
157
|
75 #include "events-mod.h"
|
100
|
76
|
20
|
77 static void enqueue_Xt_dispatch_event (Lisp_Object event);
|
|
78
|
0
|
79 static struct event_stream *Xt_event_stream;
|
|
80
|
|
81 /* With the new event model, all events go through XtDispatchEvent()
|
|
82 and are picked up by an event handler that is added to each frame
|
|
83 widget. (This is how it's supposed to be.) In the old method,
|
|
84 Emacs sucks out events directly from XtNextEvent() and only
|
|
85 dispatches the events that it doesn't need to deal with. This
|
|
86 old way has lots of corresponding junk that is no longer
|
|
87 necessary: lwlib extensions, synthetic XAnyEvents, unnecessary
|
|
88 magic events, etc. */
|
|
89
|
|
90 /* The one and only one application context that Emacs uses. */
|
|
91 XtAppContext Xt_app_con;
|
|
92
|
|
93 /* Do we accept events sent by other clients? */
|
|
94 int x_allow_sendevents;
|
|
95
|
|
96 int modifier_keys_are_sticky;
|
|
97
|
|
98 #ifdef DEBUG_XEMACS
|
|
99 int x_debug_events;
|
|
100 #endif
|
|
101
|
|
102 static int process_events_occurred;
|
|
103 static int tty_events_occurred;
|
|
104
|
|
105 /* Mask of bits indicating the descriptors that we wait for input on */
|
|
106 extern SELECT_TYPE input_wait_mask, process_only_mask, tty_only_mask;
|
|
107
|
|
108 static CONST String x_fallback_resources[] =
|
|
109 {
|
|
110 /* This file is automatically generated from the app-defaults file
|
|
111 in ../etc/Emacs.ad. These resources are consulted only if no
|
|
112 app-defaults file is found at all.
|
|
113 */
|
159
|
114 #include <Emacs.ad.h>
|
0
|
115 0
|
|
116 };
|
|
117
|
|
118 void emacs_Xt_mapping_action (Widget w, XEvent *event);
|
|
119 void debug_process_finalization (struct Lisp_Process *p);
|
|
120 void emacs_Xt_event_handler (Widget wid, XtPointer closure, XEvent *event,
|
|
121 Boolean *continue_to_dispatch);
|
|
122
|
|
123 #ifdef EPOCH
|
|
124 void dispatch_epoch_event (struct frame *f, XEvent *event, Lisp_Object type);
|
|
125 #endif
|
|
126
|
|
127 static int last_quit_check_signal_tick_count;
|
|
128
|
|
129 Lisp_Object Qkey_mapping;
|
187
|
130 Lisp_Object Qsans_modifiers;
|
0
|
131
|
|
132
|
|
133 /************************************************************************/
|
|
134 /* keymap handling */
|
|
135 /************************************************************************/
|
|
136
|
|
137 /* X bogusly doesn't define the interpretations of any bits besides
|
|
138 ModControl, ModShift, and ModLock; so the Interclient Communication
|
|
139 Conventions Manual says that we have to bend over backwards to figure
|
|
140 out what the other modifier bits mean. According to ICCCM:
|
|
141
|
|
142 - Any keycode which is assigned ModControl is a "control" key.
|
|
143
|
|
144 - Any modifier bit which is assigned to a keycode which generates Meta_L
|
|
145 or Meta_R is the modifier bit meaning "meta". Likewise for Super, Hyper,
|
|
146 etc.
|
|
147
|
|
148 - Any keypress event which contains ModControl in its state should be
|
|
149 interpreted as a "control" character.
|
|
150
|
|
151 - Any keypress event which contains a modifier bit in its state which is
|
|
152 generated by a keycode whose corresponding keysym is Meta_L or Meta_R
|
|
153 should be interpreted as a "meta" character. Likewise for Super, Hyper,
|
|
154 etc.
|
|
155
|
|
156 - It is illegal for a keysym to be associated with more than one modifier
|
|
157 bit.
|
|
158
|
|
159 This means that the only thing that emacs can reasonably interpret as a
|
|
160 "meta" key is a key whose keysym is Meta_L or Meta_R, and which generates
|
|
161 one of the modifier bits Mod1-Mod5.
|
|
162
|
|
163 Unfortunately, many keyboards don't have Meta keys in their default
|
|
164 configuration. So, if there are no Meta keys, but there are "Alt" keys,
|
|
165 emacs will interpret Alt as Meta. If there are both Meta and Alt keys,
|
|
166 then the Meta keys mean "Meta", and the Alt keys mean "Alt" (it used to
|
|
167 mean "Symbol," but that just confused the hell out of way too many people).
|
|
168
|
|
169 This works with the default configurations of the 19 keyboard-types I've
|
|
170 checked.
|
|
171
|
|
172 Emacs detects keyboard configurations which violate the above rules, and
|
|
173 prints an error message on the standard-error-output. (Perhaps it should
|
|
174 use a pop-up-window instead.)
|
|
175 */
|
|
176
|
|
177 static void
|
|
178 x_reset_key_mapping (struct device *d)
|
|
179 {
|
|
180 Display *display = DEVICE_X_DISPLAY (d);
|
|
181 struct x_device *xd = DEVICE_X_DATA (d);
|
187
|
182 KeySym *keysym, *keysym_end;
|
|
183 Lisp_Object hashtable;
|
|
184 int key_code_count, keysyms_per_code;
|
|
185
|
0
|
186 if (xd->x_keysym_map)
|
|
187 XFree ((char *) xd->x_keysym_map);
|
183
|
188 XDisplayKeycodes (display,
|
|
189 &xd->x_keysym_map_min_code,
|
|
190 &xd->x_keysym_map_max_code);
|
187
|
191 key_code_count = xd->x_keysym_map_max_code - xd->x_keysym_map_min_code + 1;
|
|
192 xd->x_keysym_map =
|
|
193 XGetKeyboardMapping (display, xd->x_keysym_map_min_code, key_code_count,
|
|
194 &xd->x_keysym_map_keysyms_per_code);
|
|
195
|
|
196 xd->x_keysym_map_hashtable = hashtable =
|
|
197 make_lisp_hashtable (128, HASHTABLE_NONWEAK, HASHTABLE_EQUAL);
|
|
198
|
|
199 for (keysym = xd->x_keysym_map,
|
|
200 keysyms_per_code = xd->x_keysym_map_keysyms_per_code,
|
|
201 keysym_end = keysym + (key_code_count * keysyms_per_code);
|
|
202 keysym < keysym_end;
|
|
203 keysym += keysyms_per_code)
|
|
204 {
|
|
205 int j;
|
|
206 char *keysym_name;
|
|
207
|
|
208 if (keysym[0] == NoSymbol)
|
|
209 continue;
|
|
210
|
|
211 if ((keysym_name = XKeysymToString (keysym[0])) != NULL)
|
|
212 Fputhash (build_string (keysym_name), Qsans_modifiers, hashtable);
|
|
213
|
|
214 for (j = 1; j < keysyms_per_code; j++)
|
|
215 {
|
|
216 if (keysym[j] == keysym[0] ||
|
|
217 keysym[j] == NoSymbol)
|
|
218 continue;
|
|
219
|
|
220 if ((keysym_name = XKeysymToString (keysym[j])) != NULL)
|
|
221 {
|
|
222 Lisp_Object name = build_string (keysym_name);
|
|
223 if (NILP (Fgethash (name, hashtable, Qnil)))
|
|
224 Fputhash (name, Qt, hashtable);
|
|
225 }
|
|
226 }
|
|
227 }
|
0
|
228 }
|
|
229
|
|
230 static CONST char *
|
|
231 index_to_name (int indice)
|
|
232 {
|
2
|
233 switch (indice)
|
|
234 {
|
|
235 case ShiftMapIndex: return "ModShift";
|
183
|
236 case LockMapIndex: return "ModLock";
|
2
|
237 case ControlMapIndex: return "ModControl";
|
|
238 case Mod1MapIndex: return "Mod1";
|
|
239 case Mod2MapIndex: return "Mod2";
|
|
240 case Mod3MapIndex: return "Mod3";
|
|
241 case Mod4MapIndex: return "Mod4";
|
|
242 case Mod5MapIndex: return "Mod5";
|
|
243 default: return "???";
|
|
244 }
|
0
|
245 }
|
|
246
|
|
247 /* Boy, I really wish C had local functions... */
|
|
248 struct c_doesnt_have_closures /* #### not yet used */
|
|
249 {
|
|
250 int warned_about_overlapping_modifiers;
|
|
251 int warned_about_predefined_modifiers;
|
|
252 int warned_about_duplicate_modifiers;
|
|
253 int meta_bit;
|
|
254 int hyper_bit;
|
|
255 int super_bit;
|
|
256 int alt_bit;
|
|
257 int mode_bit;
|
|
258 };
|
|
259
|
|
260 static void
|
|
261 x_reset_modifier_mapping (struct device *d)
|
|
262 {
|
|
263 Display *display = DEVICE_X_DISPLAY (d);
|
|
264 struct x_device *xd = DEVICE_X_DATA (d);
|
|
265 int modifier_index, modifier_key, column, mkpm;
|
|
266 int warned_about_overlapping_modifiers = 0;
|
2
|
267 int warned_about_predefined_modifiers = 0;
|
|
268 int warned_about_duplicate_modifiers = 0;
|
|
269 int meta_bit = 0;
|
0
|
270 int hyper_bit = 0;
|
|
271 int super_bit = 0;
|
2
|
272 int alt_bit = 0;
|
|
273 int mode_bit = 0;
|
0
|
274
|
|
275 xd->lock_interpretation = 0;
|
|
276
|
|
277 if (xd->x_modifier_keymap)
|
|
278 XFreeModifiermap (xd->x_modifier_keymap);
|
|
279
|
|
280 x_reset_key_mapping (d);
|
|
281
|
|
282 xd->x_modifier_keymap = XGetModifierMapping (display);
|
|
283
|
|
284 /* Boy, I really wish C had local functions...
|
|
285 */
|
|
286
|
|
287 /* The call to warn_when_safe must be on the same line as the string or
|
|
288 make-msgfile won't pick it up properly (the newline doesn't confuse
|
|
289 it, but the backslash does). */
|
|
290
|
|
291 #define modwarn(name,old,other) \
|
|
292 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is generated by %s.", \
|
|
293 name, code, index_to_name (old), other), \
|
|
294 warned_about_overlapping_modifiers = 1
|
|
295
|
|
296 #define modbarf(name,other) \
|
|
297 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is nonsensical.", \
|
|
298 name, code, other), \
|
|
299 warned_about_predefined_modifiers = 1
|
|
300
|
|
301 #define check_modifier(name,mask) \
|
|
302 if ((1<<modifier_index) != mask) \
|
|
303 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is nonsensical.", \
|
|
304 name, code, index_to_name (modifier_index)), \
|
|
305 warned_about_predefined_modifiers = 1
|
|
306
|
|
307 #define store_modifier(name,old) \
|
|
308 if (old && old != modifier_index) \
|
|
309 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates both %s and %s, which is nonsensical.",\
|
|
310 name, code, index_to_name (old), \
|
|
311 index_to_name (modifier_index)), \
|
|
312 warned_about_duplicate_modifiers = 1; \
|
|
313 if (modifier_index == ShiftMapIndex) modbarf (name,"ModShift"); \
|
|
314 else if (modifier_index == LockMapIndex) modbarf (name,"ModLock"); \
|
|
315 else if (modifier_index == ControlMapIndex) modbarf (name,"ModControl"); \
|
|
316 else if (sym == XK_Mode_switch) \
|
|
317 mode_bit = modifier_index; /* Mode_switch is special, see below... */ \
|
|
318 else if (modifier_index == meta_bit && old != meta_bit) \
|
|
319 modwarn (name, meta_bit, "Meta"); \
|
|
320 else if (modifier_index == super_bit && old != super_bit) \
|
|
321 modwarn (name, super_bit, "Super"); \
|
|
322 else if (modifier_index == hyper_bit && old != hyper_bit) \
|
|
323 modwarn (name, hyper_bit, "Hyper"); \
|
|
324 else if (modifier_index == alt_bit && old != alt_bit) \
|
|
325 modwarn (name, alt_bit, "Alt"); \
|
|
326 else \
|
|
327 old = modifier_index;
|
|
328
|
|
329 mkpm = xd->x_modifier_keymap->max_keypermod;
|
|
330 for (modifier_index = 0; modifier_index < 8; modifier_index++)
|
|
331 for (modifier_key = 0; modifier_key < mkpm; modifier_key++) {
|
|
332 KeySym last_sym = 0;
|
|
333 for (column = 0; column < 4; column += 2) {
|
|
334 KeyCode code = xd->x_modifier_keymap->modifiermap[modifier_index * mkpm
|
|
335 + modifier_key];
|
|
336 KeySym sym = (code ? XKeycodeToKeysym (display, code, column) : 0);
|
|
337 if (sym == last_sym) continue;
|
|
338 last_sym = sym;
|
|
339 switch (sym) {
|
|
340 case XK_Mode_switch:store_modifier ("Mode_switch", mode_bit); break;
|
|
341 case XK_Meta_L: store_modifier ("Meta_L", meta_bit); break;
|
|
342 case XK_Meta_R: store_modifier ("Meta_R", meta_bit); break;
|
|
343 case XK_Super_L: store_modifier ("Super_L", super_bit); break;
|
|
344 case XK_Super_R: store_modifier ("Super_R", super_bit); break;
|
|
345 case XK_Hyper_L: store_modifier ("Hyper_L", hyper_bit); break;
|
|
346 case XK_Hyper_R: store_modifier ("Hyper_R", hyper_bit); break;
|
|
347 case XK_Alt_L: store_modifier ("Alt_L", alt_bit); break;
|
|
348 case XK_Alt_R: store_modifier ("Alt_R", alt_bit); break;
|
|
349 case XK_Control_L: check_modifier ("Control_L", ControlMask); break;
|
|
350 case XK_Control_R: check_modifier ("Control_R", ControlMask); break;
|
|
351 case XK_Shift_L: check_modifier ("Shift_L", ShiftMask); break;
|
|
352 case XK_Shift_R: check_modifier ("Shift_R", ShiftMask); break;
|
|
353 case XK_Shift_Lock: check_modifier ("Shift_Lock", LockMask);
|
|
354 xd->lock_interpretation = XK_Shift_Lock; break;
|
|
355 case XK_Caps_Lock: check_modifier ("Caps_Lock", LockMask);
|
|
356 xd->lock_interpretation = XK_Caps_Lock; break;
|
|
357
|
|
358 /* It probably doesn't make any sense for a modifier bit to be
|
|
359 assigned to a key that is not one of the above, but OpenWindows
|
|
360 assigns modifier bits to a couple of random function keys for
|
|
361 no reason that I can discern, so printing a warning here would
|
20
|
362 be annoying. */
|
0
|
363 }
|
|
364 }
|
|
365 }
|
|
366 #undef store_modifier
|
|
367 #undef check_modifier
|
|
368 #undef modwarn
|
|
369 #undef modbarf
|
|
370
|
|
371 /* If there was no Meta key, then try using the Alt key instead.
|
|
372 If there is both a Meta key and an Alt key, then the Alt key
|
20
|
373 is not disturbed and remains an Alt key. */
|
0
|
374 if (! meta_bit && alt_bit)
|
|
375 meta_bit = alt_bit, alt_bit = 0;
|
|
376
|
|
377 /* mode_bit overrides everything, since it's processed down inside of
|
|
378 XLookupString() instead of by us. If Meta and Mode_switch both
|
|
379 generate the same modifier bit (which is an error), then we don't
|
|
380 interpret that bit as Meta, because we can't make XLookupString()
|
|
381 not interpret it as Mode_switch; and interpreting it as both would
|
20
|
382 be totally wrong. */
|
0
|
383 if (mode_bit)
|
|
384 {
|
|
385 CONST char *warn = 0;
|
|
386 if (mode_bit == meta_bit) warn = "Meta", meta_bit = 0;
|
|
387 else if (mode_bit == hyper_bit) warn = "Hyper", hyper_bit = 0;
|
|
388 else if (mode_bit == super_bit) warn = "Super", super_bit = 0;
|
|
389 else if (mode_bit == alt_bit) warn = "Alt", alt_bit = 0;
|
|
390 if (warn)
|
|
391 {
|
|
392 warn_when_safe
|
|
393 (Qkey_mapping, Qwarning,
|
|
394 "XEmacs: %s is being used for both Mode_switch and %s.",
|
|
395 index_to_name (mode_bit), warn),
|
|
396 warned_about_overlapping_modifiers = 1;
|
|
397 }
|
|
398 }
|
|
399 #undef index_to_name
|
|
400
|
|
401 xd->MetaMask = (meta_bit ? (1 << meta_bit) : 0);
|
|
402 xd->HyperMask = (hyper_bit ? (1 << hyper_bit) : 0);
|
|
403 xd->SuperMask = (super_bit ? (1 << super_bit) : 0);
|
|
404 xd->AltMask = (alt_bit ? (1 << alt_bit) : 0);
|
|
405 xd->ModeMask = (mode_bit ? (1 << mode_bit) : 0); /* unused */
|
|
406
|
|
407
|
|
408 if (warned_about_overlapping_modifiers)
|
|
409 warn_when_safe (Qkey_mapping, Qwarning, "\n"
|
|
410 " Two distinct modifier keys (such as Meta and Hyper) cannot generate\n"
|
|
411 " the same modifier bit, because Emacs won't be able to tell which\n"
|
|
412 " modifier was actually held down when some other key is pressed. It\n"
|
|
413 " won't be able to tell Meta-x and Hyper-x apart, for example. Change\n"
|
|
414 " one of these keys to use some other modifier bit. If you intend for\n"
|
|
415 " these keys to have the same behavior, then change them to have the\n"
|
|
416 " same keysym as well as the same modifier bit.");
|
|
417
|
|
418 if (warned_about_predefined_modifiers)
|
|
419 warn_when_safe (Qkey_mapping, Qwarning, "\n"
|
|
420 " The semantics of the modifier bits ModShift, ModLock, and ModControl\n"
|
|
421 " are predefined. It does not make sense to assign ModControl to any\n"
|
|
422 " keysym other than Control_L or Control_R, or to assign any modifier\n"
|
|
423 " bits to the \"control\" keysyms other than ModControl. You can't\n"
|
|
424 " turn a \"control\" key into a \"meta\" key (or vice versa) by simply\n"
|
|
425 " assigning the key a different modifier bit. You must also make that\n"
|
|
426 " key generate an appropriate keysym (Control_L, Meta_L, etc).");
|
|
427
|
20
|
428 /* No need to say anything more for warned_about_duplicate_modifiers. */
|
0
|
429
|
|
430 if (warned_about_overlapping_modifiers || warned_about_predefined_modifiers)
|
|
431 warn_when_safe (Qkey_mapping, Qwarning, "\n"
|
|
432 " The meanings of the modifier bits Mod1 through Mod5 are determined\n"
|
|
433 " by the keysyms used to control those bits. Mod1 does NOT always\n"
|
|
434 " mean Meta, although some non-ICCCM-compliant programs assume that.");
|
|
435 }
|
|
436
|
|
437 void
|
|
438 x_init_modifier_mapping (struct device *d)
|
|
439 {
|
187
|
440 struct x_device *xd = DEVICE_X_DATA (d);
|
|
441 xd->x_keysym_map_hashtable = Qnil;
|
|
442 xd->x_keysym_map = NULL;
|
|
443 xd->x_modifier_keymap = NULL;
|
0
|
444 x_reset_modifier_mapping (d);
|
|
445 }
|
|
446
|
|
447 static int
|
|
448 x_key_is_modifier_p (KeyCode keycode, struct device *d)
|
|
449 {
|
|
450 struct x_device *xd = DEVICE_X_DATA (d);
|
183
|
451 KeySym *syms;
|
0
|
452 int i;
|
183
|
453
|
|
454 if (keycode < xd->x_keysym_map_min_code ||
|
|
455 keycode > xd->x_keysym_map_max_code)
|
|
456 return 0;
|
|
457
|
|
458 syms = &xd->x_keysym_map [(keycode - xd->x_keysym_map_min_code) *
|
|
459 xd->x_keysym_map_keysyms_per_code];
|
0
|
460 for (i = 0; i < xd->x_keysym_map_keysyms_per_code; i++)
|
|
461 if (IsModifierKey (syms [i]) ||
|
|
462 syms [i] == XK_Mode_switch) /* why doesn't IsModifierKey count this? */
|
|
463 return 1;
|
|
464 return 0;
|
|
465 }
|
|
466
|
|
467 /* key-handling code is always ugly. It just ends up working out
|
|
468 that way.
|
|
469
|
|
470 Here are some pointers:
|
|
471
|
|
472 -- DOWN_MASK indicates which modifiers should be treated as "down"
|
|
473 when the corresponding upstroke happens. It gets reset for
|
|
474 a particular modifier when that modifier goes up, and reset
|
|
475 for all modifiers when a non-modifier key is pressed. Example:
|
|
476
|
|
477 I press Control-A-Shift and then release Control-A-Shift.
|
|
478 I want the Shift key to be sticky but not the Control key.
|
|
479
|
|
480 -- LAST_DOWNKEY and RELEASE_TIME are used to keep track of
|
|
481 auto-repeat -- see below.
|
|
482
|
|
483 -- If a modifier key is sticky, I can unstick it by pressing
|
|
484 the modifier key again. */
|
|
485
|
|
486 static void
|
|
487 x_handle_sticky_modifiers (XEvent *ev, struct device *d)
|
|
488 {
|
2
|
489 struct x_device *xd;
|
|
490 KeyCode keycode;
|
|
491 int type;
|
|
492
|
|
493 if (!modifier_keys_are_sticky) /* Optimize for non-sticky modifiers */
|
0
|
494 return;
|
|
495
|
2
|
496 xd = DEVICE_X_DATA (d);
|
|
497 keycode = ev->xkey.keycode;
|
|
498 type = ev->type;
|
183
|
499
|
|
500 if (keycode < xd->x_keysym_map_min_code ||
|
|
501 keycode > xd->x_keysym_map_max_code)
|
|
502 return;
|
|
503
|
2
|
504 if (! ((type == KeyPress || type == KeyRelease) &&
|
|
505 x_key_is_modifier_p (keycode, d)))
|
|
506 { /* Not a modifier key */
|
|
507 Bool key_event_p = (type == KeyPress || type == KeyRelease);
|
183
|
508
|
0
|
509 if (type == KeyPress && !xd->last_downkey)
|
|
510 xd->last_downkey = keycode;
|
|
511 else if (type == ButtonPress ||
|
|
512 (type == KeyPress && xd->last_downkey &&
|
|
513 (keycode != xd->last_downkey ||
|
|
514 ev->xkey.time != xd->release_time)))
|
|
515 {
|
|
516 xd->need_to_add_mask = 0;
|
|
517 xd->last_downkey = 0;
|
|
518 }
|
|
519 if (type == KeyPress)
|
|
520 xd->release_time = 0;
|
|
521 if (type == KeyPress || type == ButtonPress)
|
|
522 xd->down_mask = 0;
|
|
523
|
2
|
524 if (key_event_p)
|
|
525 ev->xkey.state |= xd->need_to_add_mask;
|
|
526 else
|
|
527 ev->xbutton.state |= xd->need_to_add_mask;
|
0
|
528
|
|
529 if (type == KeyRelease && keycode == xd->last_downkey)
|
|
530 /* If I hold press-and-release the Control key and then press
|
|
531 and hold down the right arrow, I want it to auto-repeat
|
|
532 Control-Right. On the other hand, if I do the same but
|
|
533 manually press the Right arrow a bunch of times, I want
|
|
534 to see one Control-Right and then a bunch of Rights.
|
|
535 This means that we need to distinguish between an
|
|
536 auto-repeated key and a key pressed and released a bunch
|
|
537 of times.
|
|
538
|
|
539 Naturally, the designers of the X spec didn't see fit
|
|
540 to provide an obvious way to distinguish these cases.
|
|
541 So we assume that if the release and the next press
|
|
542 occur at the same time, the key was actually auto-
|
20
|
543 repeated. Under Open-Windows, at least, this works. */
|
2
|
544 xd->release_time = key_event_p ? ev->xkey.time : ev->xbutton.time;
|
0
|
545 }
|
2
|
546 else /* Modifier key pressed */
|
0
|
547 {
|
2
|
548 int i;
|
0
|
549 KeySym *syms = &xd->x_keysym_map [(keycode - xd->x_keysym_map_min_code) *
|
|
550 xd->x_keysym_map_keysyms_per_code];
|
2
|
551
|
|
552 /* If a non-modifier key was pressed in the middle of a bunch
|
|
553 of modifiers, then it unsticks all the modifiers that were
|
|
554 previously pressed. We cannot unstick the modifiers until
|
|
555 now because we want to check for auto-repeat of the
|
|
556 non-modifier key. */
|
|
557
|
|
558 if (xd->last_downkey)
|
|
559 {
|
|
560 xd->last_downkey = 0;
|
|
561 xd->need_to_add_mask = 0;
|
|
562 }
|
0
|
563
|
|
564 #define FROB(mask) \
|
|
565 do { \
|
|
566 if (type == KeyPress) \
|
|
567 { \
|
|
568 /* If modifier key is already sticky, \
|
|
569 then unstick it. Note that we do \
|
|
570 not test down_mask to deal with the \
|
|
571 unlikely but possible case that the \
|
|
572 modifier key auto-repeats. */ \
|
|
573 if (xd->need_to_add_mask & mask) \
|
|
574 { \
|
|
575 xd->need_to_add_mask &= ~mask; \
|
|
576 xd->down_mask &= ~mask; \
|
|
577 } \
|
|
578 else \
|
|
579 xd->down_mask |= mask; \
|
|
580 } \
|
|
581 else \
|
|
582 { \
|
|
583 if (xd->down_mask & mask) \
|
|
584 { \
|
|
585 xd->down_mask &= ~mask; \
|
|
586 xd->need_to_add_mask |= mask; \
|
|
587 } \
|
|
588 } \
|
|
589 } while (0)
|
|
590
|
|
591 for (i = 0; i < xd->x_keysym_map_keysyms_per_code; i++)
|
2
|
592 switch (syms[i])
|
|
593 {
|
|
594 case XK_Control_L: case XK_Control_R: FROB (ControlMask); break;
|
|
595 case XK_Shift_L: case XK_Shift_R: FROB (ShiftMask); break;
|
|
596 case XK_Meta_L: case XK_Meta_R: FROB (xd->MetaMask); break;
|
|
597 case XK_Super_L: case XK_Super_R: FROB (xd->SuperMask); break;
|
|
598 case XK_Hyper_L: case XK_Hyper_R: FROB (xd->HyperMask); break;
|
|
599 case XK_Alt_L: case XK_Alt_R: FROB (xd->AltMask); break;
|
|
600 }
|
0
|
601 }
|
|
602 #undef FROB
|
|
603 }
|
|
604
|
|
605 static void
|
|
606 clear_sticky_modifiers (struct device *d)
|
|
607 {
|
|
608 struct x_device *xd = DEVICE_X_DATA (d);
|
|
609
|
|
610 xd->need_to_add_mask = 0;
|
80
|
611 xd->last_downkey = 0;
|
|
612 xd->release_time = 0;
|
|
613 xd->down_mask = 0;
|
0
|
614 }
|
|
615
|
|
616 static int
|
|
617 keysym_obeys_caps_lock_p (KeySym sym, struct device *d)
|
|
618 {
|
|
619 struct x_device *xd = DEVICE_X_DATA (d);
|
2
|
620 /* Eeeeevil hack. Don't apply Caps_Lock to things that aren't alphabetic
|
0
|
621 characters, where "alphabetic" means something more than simply A-Z.
|
2
|
622 That is, if Caps_Lock is down, typing ESC doesn't produce Shift-ESC.
|
20
|
623 But if shift-lock is down, then it does. */
|
0
|
624 if (xd->lock_interpretation == XK_Shift_Lock)
|
|
625 return 1;
|
183
|
626
|
2
|
627 return
|
|
628 ((sym >= XK_A) && (sym <= XK_Z)) ||
|
|
629 ((sym >= XK_a) && (sym <= XK_z)) ||
|
|
630 ((sym >= XK_Agrave) && (sym <= XK_Odiaeresis)) ||
|
|
631 ((sym >= XK_agrave) && (sym <= XK_odiaeresis)) ||
|
|
632 ((sym >= XK_Ooblique) && (sym <= XK_Thorn)) ||
|
|
633 ((sym >= XK_oslash) && (sym <= XK_thorn));
|
0
|
634 }
|
|
635
|
|
636 /* called from EmacsFrame.c (actually from Xt itself) when a
|
2
|
637 MappingNotify event is received. In its infinite wisdom, Xt
|
|
638 decided that Xt event handlers never get MappingNotify events.
|
|
639 O'Reilly Xt Programming Manual 9.1.2 says:
|
183
|
640
|
20
|
641 MappingNotify is automatically handled by Xt, so it isn't passed
|
|
642 to event handlers and you don't need to worry about it.
|
2
|
643
|
|
644 Of course, we DO worry about it, so we need a special translation. */
|
0
|
645 void
|
|
646 emacs_Xt_mapping_action (Widget w, XEvent* event)
|
|
647 {
|
|
648 struct device *d = get_device_from_display (event->xany.display);
|
|
649 #if 0
|
|
650 /* nyet. Now this is handled by Xt. */
|
|
651 XRefreshKeyboardMapping (&event->xmapping);
|
|
652 #endif
|
|
653 /* xmodmap generates about a billion MappingKeyboard events, followed
|
|
654 by a single MappingModifier event, so it might be worthwhile to
|
|
655 take extra MappingKeyboard events out of the queue before requesting
|
20
|
656 the current keymap from the server. */
|
2
|
657 switch (event->xmapping.request)
|
|
658 {
|
|
659 case MappingKeyboard: x_reset_key_mapping (d); break;
|
|
660 case MappingModifier: x_reset_modifier_mapping (d); break;
|
|
661 case MappingPointer: /* Do something here? */ break;
|
|
662 default: abort();
|
|
663 }
|
0
|
664 }
|
|
665
|
|
666
|
|
667 /************************************************************************/
|
|
668 /* X to Emacs event conversion */
|
|
669 /************************************************************************/
|
|
670
|
|
671 static Lisp_Object
|
179
|
672 x_keysym_to_emacs_keysym (KeySym keysym, int simple_p)
|
0
|
673 {
|
|
674 char *name;
|
|
675 if (keysym >= XK_exclam && keysym <= XK_asciitilde)
|
|
676 /* We must assume that the X keysym numbers for the ASCII graphic
|
|
677 characters are the same as their ASCII codes. */
|
78
|
678 return make_char (keysym);
|
0
|
679
|
|
680 switch (keysym)
|
|
681 {
|
|
682 /* These would be handled correctly by the default case, but by
|
185
|
683 special-casing them here we don't garbage a string or call
|
|
684 intern(). */
|
78
|
685 case XK_BackSpace: return QKbackspace;
|
|
686 case XK_Tab: return QKtab;
|
|
687 case XK_Linefeed: return QKlinefeed;
|
|
688 case XK_Return: return QKreturn;
|
|
689 case XK_Escape: return QKescape;
|
|
690 case XK_space: return QKspace;
|
|
691 case XK_Delete: return QKdelete;
|
|
692 case 0: return Qnil;
|
0
|
693 default:
|
78
|
694 if (simple_p) return Qnil;
|
0
|
695 /* !!#### not Mule-ized */
|
|
696 name = XKeysymToString (keysym);
|
187
|
697 if (!name || !name[0])
|
|
698 /* This happens if there is a mismatch between the Xlib of
|
|
699 XEmacs and the Xlib of the X server...
|
|
700
|
|
701 Let's hard-code in some knowledge of common keysyms introduced
|
|
702 in recent X11 releases. Snarfed from X11/keysymdef.h
|
|
703
|
|
704 Probably we should add some stuff here for X11R6. */
|
|
705 switch (keysym)
|
|
706 {
|
|
707 case 0xFF95: return KEYSYM ("kp-home");
|
|
708 case 0xFF96: return KEYSYM ("kp-left");
|
|
709 case 0xFF97: return KEYSYM ("kp-up");
|
|
710 case 0xFF98: return KEYSYM ("kp-right");
|
|
711 case 0xFF99: return KEYSYM ("kp-down");
|
|
712 case 0xFF9A: return KEYSYM ("kp-prior");
|
|
713 case 0xFF9B: return KEYSYM ("kp-next");
|
|
714 case 0xFF9C: return KEYSYM ("kp-end");
|
|
715 case 0xFF9D: return KEYSYM ("kp-begin");
|
|
716 case 0xFF9E: return KEYSYM ("kp-insert");
|
|
717 case 0xFF9F: return KEYSYM ("kp-delete");
|
|
718
|
|
719 case 0x1005FF10: return KEYSYM ("SunF36"); /* labeled F11 */
|
|
720 case 0x1005FF11: return KEYSYM ("SunF37"); /* labeled F12 */
|
|
721 default:
|
|
722 {
|
|
723 char buf [64];
|
|
724 sprintf (buf, "unknown-keysym-0x%X", (int) keysym);
|
|
725 return KEYSYM (buf);
|
|
726 }
|
|
727 }
|
0
|
728 /* If it's got a one-character name, that's good enough. */
|
80
|
729 if (!name[1])
|
|
730 return make_char (name[0]);
|
183
|
731
|
0
|
732 /* If it's in the "Keyboard" character set, downcase it.
|
|
733 The case of those keysyms is too totally random for us to
|
|
734 force anyone to remember them.
|
|
735 The case of the other character sets is significant, however.
|
70
|
736 */
|
138
|
737 if ((((unsigned int) keysym) & (~0x1FF)) == ((unsigned int) 0xFE00))
|
0
|
738 {
|
|
739 char buf [255];
|
|
740 char *s1, *s2;
|
74
|
741 for (s1 = name, s2 = buf; *s1; s1++, s2++) {
|
|
742 if (*s1 == '_') {
|
|
743 *s2 = '-';
|
|
744 } else {
|
|
745 *s2 = tolower (* (unsigned char *) s1);
|
|
746 }
|
|
747 }
|
0
|
748 *s2 = 0;
|
78
|
749 return KEYSYM (buf);
|
0
|
750 }
|
78
|
751 return KEYSYM (name);
|
0
|
752 }
|
|
753 }
|
|
754
|
179
|
755 static Lisp_Object
|
|
756 x_to_emacs_keysym (XKeyPressedEvent *event, int simple_p)
|
|
757 /* simple_p means don't try too hard (ASCII only) */
|
|
758 {
|
|
759 KeySym keysym = 0;
|
|
760
|
|
761 #ifdef HAVE_XIM
|
|
762 int len;
|
|
763 char buffer[64];
|
|
764 char *bufptr = buffer;
|
|
765 int bufsiz = sizeof (buffer);
|
|
766 Status status;
|
|
767 #ifdef XIM_XLIB
|
|
768 XIC xic = FRAME_X_XIC (x_any_window_to_frame
|
|
769 (get_device_from_display (event->display),
|
|
770 event->window));
|
|
771 #endif /* XIM_XLIB */
|
|
772 #endif /* HAVE_XIM */
|
|
773
|
185
|
774 /* We use XLookupString if we're not using XIM, or are using
|
|
775 XIM_XLIB but input context creation failed. */
|
|
776 #if ! (defined (HAVE_XIM) && defined (XIM_MOTIF))
|
|
777 #if defined (HAVE_XIM) && defined (XIM_XLIB)
|
|
778 if (!xic)
|
|
779 #endif /* XIM_XLIB */
|
179
|
780 {
|
|
781 /* Apparently it's necessary to specify a dummy here (rather
|
|
782 than passing in 0) to avoid crashes on German IRIX */
|
|
783 char dummy[256];
|
|
784 XLookupString (event, dummy, 200, &keysym, 0);
|
|
785 return x_keysym_to_emacs_keysym (keysym, simple_p);
|
|
786 }
|
185
|
787 #endif /* ! XIM_MOTIF */
|
179
|
788
|
|
789 #ifdef HAVE_XIM
|
|
790 Lookup_String: /* Come-From XBufferOverflow */
|
|
791 #ifdef XIM_MOTIF
|
|
792 len = XmImMbLookupString (XtWindowToWidget (event->display, event->window),
|
|
793 event, bufptr, bufsiz, &keysym, &status);
|
|
794 #else /* XIM_XLIB */
|
|
795 len = XmbLookupString (xic, event, bufptr, bufsiz, &keysym, &status);
|
185
|
796 #endif /* HAVE_XIM */
|
179
|
797
|
|
798 #ifdef DEBUG_XEMACS
|
|
799 if (x_debug_events > 0)
|
|
800 {
|
|
801 stderr_out (" status=");
|
|
802 #define print_status_when(S) if (status == S) stderr_out (#S)
|
|
803 print_status_when (XLookupKeySym);
|
|
804 print_status_when (XLookupBoth);
|
|
805 print_status_when (XLookupChars);
|
|
806 print_status_when (XLookupNone);
|
|
807 print_status_when (XBufferOverflow);
|
183
|
808
|
179
|
809 if (status == XLookupKeySym || status == XLookupBoth)
|
|
810 stderr_out (" keysym=%s", XKeysymToString (keysym));
|
|
811 if (status == XLookupChars || status == XLookupBoth)
|
|
812 {
|
|
813 if (len != 1)
|
|
814 {
|
|
815 int j;
|
|
816 stderr_out (" chars=\"");
|
|
817 for (j=0; j<len; j++)
|
|
818 stderr_out ("%c", bufptr[j]);
|
|
819 stderr_out ("\"");
|
|
820 }
|
|
821 else if (bufptr[0] <= 32 || bufptr[0] >= 127)
|
|
822 stderr_out (" char=0x%x", bufptr[0]);
|
|
823 else
|
|
824 stderr_out (" char=%c", bufptr[0]);
|
|
825 }
|
|
826 stderr_out ("\n");
|
|
827 }
|
|
828 #endif /* DEBUG_XEMACS */
|
|
829
|
|
830 switch (status)
|
|
831 {
|
|
832 case XLookupKeySym:
|
|
833 case XLookupBoth:
|
|
834 return x_keysym_to_emacs_keysym (keysym, simple_p);
|
|
835
|
|
836 case XLookupChars:
|
|
837 {
|
|
838 /* Generate multiple emacs events */
|
|
839 struct device *d = get_device_from_display (event->display);
|
|
840 Emchar ch;
|
185
|
841 Lisp_Object instream, fb_instream;
|
|
842 Lstream *istr;
|
|
843 struct gcpro gcpro1, gcpro2;
|
|
844
|
|
845 fb_instream =
|
179
|
846 make_fixed_buffer_input_stream ((unsigned char *) bufptr, len);
|
|
847
|
|
848 /* ### Use Fget_coding_system (Vcomposed_input_coding_system) */
|
185
|
849 instream =
|
|
850 make_decoding_input_stream (XLSTREAM (fb_instream),
|
207
|
851 Fget_coding_system (Qundecided));
|
183
|
852
|
185
|
853 istr = XLSTREAM (instream);
|
|
854
|
|
855 GCPRO2 (instream, fb_instream);
|
|
856 while ((ch = Lstream_get_emchar (istr)) != EOF)
|
179
|
857 {
|
189
|
858 Lisp_Object emacs_event = Fmake_event (Qnil, Qnil);
|
185
|
859 struct Lisp_Event *ev = XEVENT (emacs_event);
|
|
860 ev->channel = DEVICE_CONSOLE (d);
|
|
861 ev->event_type = key_press_event;
|
|
862 ev->timestamp = event->time;
|
|
863 ev->event.key.modifiers = 0;
|
|
864 ev->event.key.keysym = make_char (ch);
|
179
|
865 enqueue_Xt_dispatch_event (emacs_event);
|
|
866 }
|
185
|
867 Lstream_close (istr);
|
|
868 UNGCPRO;
|
|
869 Lstream_delete (istr);
|
|
870 Lstream_delete (XLSTREAM (fb_instream));
|
179
|
871 return Qnil;
|
|
872 }
|
|
873 case XLookupNone: return Qnil;
|
|
874 case XBufferOverflow:
|
185
|
875 bufptr = (char *) alloca (len+1);
|
179
|
876 bufsiz = len+1;
|
|
877 goto Lookup_String;
|
|
878 }
|
185
|
879 return Qnil; /* not reached */
|
179
|
880 #endif /* HAVE_XIM */
|
|
881 }
|
|
882
|
0
|
883 static void
|
|
884 set_last_server_timestamp (struct device *d, XEvent *x_event)
|
|
885 {
|
2
|
886 Time t;
|
|
887 switch (x_event->type)
|
0
|
888 {
|
|
889 case KeyPress:
|
2
|
890 case KeyRelease: t = x_event->xkey.time; break;
|
0
|
891 case ButtonPress:
|
2
|
892 case ButtonRelease: t = x_event->xbutton.time; break;
|
0
|
893 case EnterNotify:
|
2
|
894 case LeaveNotify: t = x_event->xcrossing.time; break;
|
|
895 case MotionNotify: t = x_event->xmotion.time; break;
|
|
896 case PropertyNotify: t = x_event->xproperty.time; break;
|
|
897 case SelectionClear: t = x_event->xselectionclear.time; break;
|
|
898 case SelectionRequest: t = x_event->xselectionrequest.time; break;
|
|
899 case SelectionNotify: t = x_event->xselection.time; break;
|
|
900 default: return;
|
0
|
901 }
|
2
|
902 DEVICE_X_LAST_SERVER_TIMESTAMP (d) = t;
|
0
|
903 }
|
|
904
|
|
905 static int
|
|
906 x_event_to_emacs_event (XEvent *x_event, struct Lisp_Event *emacs_event)
|
|
907 {
|
2
|
908 Display *display = x_event->xany.display;
|
|
909 struct device *d = get_device_from_display (display);
|
0
|
910 struct x_device *xd = DEVICE_X_DATA (d);
|
|
911
|
|
912 set_last_server_timestamp (d, x_event);
|
|
913
|
2
|
914 switch (x_event->type)
|
0
|
915 {
|
|
916 case KeyRelease:
|
|
917 x_handle_sticky_modifiers (x_event, d);
|
|
918 return 0;
|
|
919
|
|
920 case KeyPress:
|
|
921 case ButtonPress:
|
|
922 case ButtonRelease:
|
|
923 {
|
20
|
924 unsigned int modifiers = 0;
|
|
925 int shift_p, lock_p;
|
|
926 Bool key_event_p = (x_event->type == KeyPress);
|
|
927 unsigned int *state =
|
|
928 key_event_p ? &x_event->xkey.state : &x_event->xbutton.state;
|
|
929
|
|
930 /* If this is a synthetic KeyPress or Button event, and the user
|
|
931 has expressed a disinterest in this security hole, then drop
|
|
932 it on the floor. */
|
|
933 if ((key_event_p
|
|
934 ? x_event->xkey.send_event
|
|
935 : x_event->xbutton.send_event)
|
2
|
936 #ifdef EXTERNAL_WIDGET
|
20
|
937 /* ben: events get sent to an ExternalShell using XSendEvent.
|
|
938 This is not a perfect solution. */
|
|
939 && !FRAME_X_EXTERNAL_WINDOW_P
|
|
940 (x_any_window_to_frame (d, x_event->xany.window))
|
2
|
941 #endif
|
20
|
942 && !x_allow_sendevents)
|
|
943 return 0;
|
2
|
944
|
20
|
945 DEVICE_X_MOUSE_TIMESTAMP (d) =
|
|
946 DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (d) =
|
|
947 key_event_p ? x_event->xkey.time : x_event->xbutton.time;
|
2
|
948
|
20
|
949 x_handle_sticky_modifiers (x_event, d);
|
183
|
950
|
20
|
951 if (*state & ControlMask) modifiers |= MOD_CONTROL;
|
|
952 if (*state & xd->MetaMask) modifiers |= MOD_META;
|
|
953 if (*state & xd->SuperMask) modifiers |= MOD_SUPER;
|
|
954 if (*state & xd->HyperMask) modifiers |= MOD_HYPER;
|
|
955 if (*state & xd->AltMask) modifiers |= MOD_ALT;
|
0
|
956
|
20
|
957 /* Ignore the Caps_Lock key if:
|
|
958 - any other modifiers are down, so that Caps_Lock doesn't
|
|
959 turn C-x into C-X, which would suck.
|
|
960 - the event was a mouse event. */
|
|
961 if (modifiers || ! key_event_p)
|
70
|
962 *state &= (~LockMask);
|
2
|
963
|
20
|
964 shift_p = *state & ShiftMask;
|
|
965 lock_p = *state & LockMask;
|
2
|
966
|
20
|
967 if (shift_p || lock_p)
|
|
968 modifiers |= MOD_SHIFT;
|
0
|
969
|
20
|
970 if (key_event_p)
|
|
971 {
|
|
972 Lisp_Object keysym;
|
|
973 XKeyEvent *ev = &x_event->xkey;
|
|
974 KeyCode keycode = ev->keycode;
|
2
|
975
|
20
|
976 if (x_key_is_modifier_p (keycode, d)) /* it's a modifier key */
|
|
977 return 0;
|
0
|
978
|
20
|
979 /* This used to compute the frame from the given X window and
|
|
980 store it here, but we really don't care about the frame. */
|
|
981 emacs_event->channel = DEVICE_CONSOLE (d);
|
|
982 keysym = x_to_emacs_keysym (&x_event->xkey, 0);
|
183
|
983
|
20
|
984 /* If the emacs keysym is nil, then that means that the
|
|
985 X keysym was NoSymbol, which probably means that
|
|
986 we're in the midst of reading a Multi_key sequence,
|
183
|
987 or a "dead" key prefix, or XIM input. Ignore it. */
|
20
|
988 if (NILP (keysym))
|
|
989 return 0;
|
|
990
|
|
991 /* More Caps_Lock garbage: Caps_Lock should *only* add the
|
|
992 shift modifier to two-case keys (that is, A-Z and
|
|
993 related characters). So at this point (after looking up
|
|
994 the keysym) if the keysym isn't a dual-case alphabetic,
|
|
995 and if the caps lock key was down but the shift key
|
|
996 wasn't, then turn off the shift modifier. Gag barf */
|
|
997 /* #### type lossage: assuming equivalence of emacs and
|
|
998 X keysyms */
|
|
999 /* !!#### maybe fix for Mule */
|
|
1000 if (lock_p && !shift_p &&
|
|
1001 ! (CHAR_OR_CHAR_INTP (keysym)
|
|
1002 && keysym_obeys_caps_lock_p
|
|
1003 ((KeySym) XCHAR_OR_CHAR_INT (keysym), d)))
|
|
1004 modifiers &= (~MOD_SHIFT);
|
|
1005
|
|
1006 /* If this key contains two distinct keysyms, that is,
|
|
1007 "shift" generates a different keysym than the
|
|
1008 non-shifted key, then don't apply the shift modifier
|
|
1009 bit: it's implicit. Otherwise, if there would be no
|
|
1010 other way to tell the difference between the shifted
|
|
1011 and unshifted version of this key, apply the shift bit.
|
|
1012 Non-graphics, like Backspace and F1 get the shift bit
|
|
1013 in the modifiers slot. Neither the characters "a",
|
|
1014 "A", "2", nor "@" normally have the shift bit set.
|
|
1015 However, "F1" normally does. */
|
|
1016 if (modifiers & MOD_SHIFT)
|
|
1017 {
|
|
1018 int Mode_switch_p = *state & xd->ModeMask;
|
|
1019 KeySym bot = XLookupKeysym (ev, Mode_switch_p ? 2 : 0);
|
|
1020 KeySym top = XLookupKeysym (ev, Mode_switch_p ? 3 : 1);
|
|
1021 if (top && bot && top != bot)
|
|
1022 modifiers &= ~MOD_SHIFT;
|
|
1023 }
|
|
1024 emacs_event->event_type = key_press_event;
|
|
1025 emacs_event->timestamp = ev->time;
|
|
1026 emacs_event->event.key.modifiers = modifiers;
|
|
1027 emacs_event->event.key.keysym = keysym;
|
|
1028 }
|
|
1029 else /* Mouse press/release event */
|
|
1030 {
|
|
1031 XButtonEvent *ev = &x_event->xbutton;
|
|
1032 struct frame *frame = x_window_to_frame (d, ev->window);
|
|
1033 if (! frame)
|
|
1034 return 0; /* not for us */
|
|
1035 XSETFRAME (emacs_event->channel, frame);
|
183
|
1036
|
20
|
1037 emacs_event->event_type = (x_event->type == ButtonPress) ?
|
|
1038 button_press_event : button_release_event;
|
183
|
1039
|
20
|
1040 emacs_event->event.button.modifiers = modifiers;
|
70
|
1041 emacs_event->timestamp = ev->time;
|
|
1042 emacs_event->event.button.button = ev->button;
|
|
1043 emacs_event->event.button.x = ev->x;
|
|
1044 emacs_event->event.button.y = ev->y;
|
197
|
1045
|
70
|
1046 }
|
0
|
1047 }
|
2
|
1048 break;
|
183
|
1049
|
0
|
1050 case MotionNotify:
|
|
1051 {
|
2
|
1052 XMotionEvent *ev = &x_event->xmotion;
|
|
1053 struct frame *frame = x_window_to_frame (d, ev->window);
|
|
1054 unsigned int modifiers = 0;
|
|
1055 XMotionEvent event2;
|
183
|
1056
|
2
|
1057 if (! frame)
|
|
1058 return 0; /* not for us */
|
183
|
1059
|
2
|
1060 /* We use MotionHintMask, so we will get only one motion event
|
|
1061 until the next time we call XQueryPointer or the user
|
|
1062 clicks the mouse. So call XQueryPointer now (meaning that
|
|
1063 the event will be in sync with the server just before
|
|
1064 Fnext_event() returns). If the mouse is still in motion,
|
|
1065 then the server will immediately generate exactly one more
|
|
1066 motion event, which will be on the queue waiting for us
|
|
1067 next time around. */
|
|
1068 event2 = *ev;
|
|
1069 if (XQueryPointer (event2.display, event2.window,
|
|
1070 &event2.root, &event2.subwindow,
|
|
1071 &event2.x_root, &event2.y_root,
|
|
1072 &event2.x, &event2.y,
|
|
1073 &event2.state))
|
|
1074 ev = &event2; /* only one structure copy */
|
183
|
1075
|
2
|
1076 DEVICE_X_MOUSE_TIMESTAMP (d) = ev->time;
|
|
1077
|
|
1078 XSETFRAME (emacs_event->channel, frame);
|
|
1079 emacs_event->event_type = pointer_motion_event;
|
|
1080 emacs_event->timestamp = ev->time;
|
|
1081 emacs_event->event.motion.x = ev->x;
|
|
1082 emacs_event->event.motion.y = ev->y;
|
|
1083 if (ev->state & ShiftMask) modifiers |= MOD_SHIFT;
|
|
1084 if (ev->state & ControlMask) modifiers |= MOD_CONTROL;
|
|
1085 if (ev->state & xd->MetaMask) modifiers |= MOD_META;
|
|
1086 if (ev->state & xd->SuperMask) modifiers |= MOD_SUPER;
|
|
1087 if (ev->state & xd->HyperMask) modifiers |= MOD_HYPER;
|
|
1088 if (ev->state & xd->AltMask) modifiers |= MOD_ALT;
|
|
1089 /* Currently ignores Shift_Lock but probably shouldn't
|
|
1090 (but it definitely should ignore Caps_Lock). */
|
|
1091 emacs_event->event.motion.modifiers = modifiers;
|
0
|
1092 }
|
2
|
1093 break;
|
183
|
1094
|
0
|
1095 case ClientMessage:
|
2
|
1096 {
|
|
1097 /* Patch bogus TAKE_FOCUS messages from MWM; CurrentTime is
|
|
1098 passed as the timestamp of the TAKE_FOCUS, which the ICCCM
|
|
1099 explicitly prohibits. */
|
|
1100 XClientMessageEvent *ev = &x_event->xclient;
|
197
|
1101 #ifdef HAVE_OFFIX_DND
|
|
1102 if (DndIsDropMessage(x_event))
|
|
1103 {
|
|
1104 unsigned int state, modifiers = 0, button=0;
|
|
1105 struct frame *frame = x_any_window_to_frame (d, ev->window);
|
211
|
1106 Extbyte *data;
|
197
|
1107 unsigned long size, dtype;
|
|
1108 Lisp_Object l_type = Qnil, l_data = Qnil;
|
|
1109 Lisp_Object l_dndlist = Qnil, l_item = Qnil;
|
|
1110 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
1111
|
|
1112 GCPRO4 (l_type, l_data, l_dndlist, l_item);
|
|
1113
|
|
1114 if (! frame)
|
|
1115 return 0; /* not for us */
|
|
1116 XSETFRAME (emacs_event->channel, frame);
|
|
1117
|
|
1118 emacs_event->event_type = dnd_drop_event;
|
|
1119 emacs_event->timestamp = DEVICE_X_LAST_SERVER_TIMESTAMP (d);
|
|
1120
|
|
1121 state=DndDragButtons(x_event);
|
|
1122
|
|
1123 if (state & ShiftMask) modifiers |= MOD_SHIFT;
|
|
1124 if (state & ControlMask) modifiers |= MOD_CONTROL;
|
|
1125 if (state & xd->MetaMask) modifiers |= MOD_META;
|
|
1126 if (state & xd->SuperMask) modifiers |= MOD_SUPER;
|
|
1127 if (state & xd->HyperMask) modifiers |= MOD_HYPER;
|
|
1128 if (state & xd->AltMask) modifiers |= MOD_ALT;
|
|
1129
|
|
1130 if (state & Button5Mask) button = Button5;
|
|
1131 if (state & Button4Mask) button = Button4;
|
|
1132 if (state & Button3Mask) button = Button3;
|
|
1133 if (state & Button2Mask) button = Button2;
|
|
1134 if (state & Button1Mask) button = Button1;
|
|
1135
|
|
1136 emacs_event->event.dnd_drop.modifiers = modifiers;
|
|
1137 emacs_event->event.dnd_drop.button = button;
|
|
1138
|
|
1139 DndDropCoordinates(FRAME_X_TEXT_WIDGET(frame), x_event,
|
|
1140 &(emacs_event->event.dnd_drop.x),
|
|
1141 &(emacs_event->event.dnd_drop.y) );
|
|
1142
|
|
1143 DndGetData(x_event,&data,&size);
|
|
1144
|
|
1145 dtype=DndDataType(x_event);
|
|
1146 switch (dtype)
|
|
1147 {
|
|
1148 case DndFiles: /* null terminated strings, end null */
|
|
1149 {
|
|
1150 int len;
|
|
1151 while (*data)
|
|
1152 {
|
|
1153 len = strlen ((char*) data);
|
211
|
1154 l_item = make_ext_string (data, len,
|
197
|
1155 FORMAT_FILENAME);
|
|
1156 /* order is irrelevant */
|
|
1157 l_dndlist = Fcons (l_item, l_dndlist);
|
|
1158 data += len+1;
|
|
1159 }
|
|
1160 }
|
|
1161 break;
|
|
1162 case DndText:
|
|
1163 case DndMIME:
|
|
1164 /* is there a better way to format this ? */
|
211
|
1165 l_dndlist = make_ext_string (data, strlen((char *)data),
|
197
|
1166 FORMAT_BINARY);
|
|
1167 break;
|
|
1168 case DndFile:
|
|
1169 case DndDir:
|
|
1170 case DndLink:
|
|
1171 case DndExe:
|
|
1172 case DndURL: /* this could also break with FORMAT_FILENAME */
|
211
|
1173 l_dndlist = make_ext_string (data, strlen((char *)data),
|
197
|
1174 FORMAT_FILENAME);
|
|
1175 break;
|
|
1176 default: /* Unknown, RawData and any other type */
|
211
|
1177 l_dndlist = make_ext_string (data, size,
|
197
|
1178 FORMAT_BINARY);
|
|
1179 break;
|
|
1180 }
|
211
|
1181
|
197
|
1182 l_type=make_int(dtype);
|
|
1183
|
|
1184 emacs_event->event.dnd_drop.data = Fcons (l_type, Fcons (l_dndlist, Qnil));
|
|
1185
|
|
1186 UNGCPRO;
|
|
1187
|
|
1188 break;
|
|
1189 }
|
|
1190 #endif
|
2
|
1191 if (ev->message_type == DEVICE_XATOM_WM_PROTOCOLS (d)
|
|
1192 && ev->data.l[0] == DEVICE_XATOM_WM_TAKE_FOCUS (d)
|
|
1193 && ev->data.l[1] == 0)
|
|
1194 {
|
|
1195 ev->data.l[1] = DEVICE_X_LAST_SERVER_TIMESTAMP (d);
|
|
1196 }
|
|
1197 }
|
|
1198 /* fall through */
|
183
|
1199
|
0
|
1200 default: /* it's a magic event */
|
|
1201 {
|
2
|
1202 struct frame *frame;
|
|
1203 Window w;
|
183
|
1204 XEvent *x_event_copy = &emacs_event->event.magic.underlying_x_event;
|
|
1205
|
|
1206 #define FROB(event_member, window_member) \
|
|
1207 x_event_copy->event_member = x_event->event_member; \
|
|
1208 w = x_event->event_member.window_member
|
|
1209
|
2
|
1210 switch (x_event->type)
|
|
1211 {
|
183
|
1212 case SelectionRequest: FROB(xselectionrequest, owner); break;
|
|
1213 case SelectionClear: FROB(xselectionclear, window); break;
|
|
1214 case SelectionNotify: FROB(xselection, requestor); break;
|
|
1215 case PropertyNotify: FROB(xproperty, window); break;
|
|
1216 case ClientMessage: FROB(xclient, window); break;
|
|
1217 case ConfigureNotify: FROB(xconfigure, window); break;
|
|
1218 case Expose:
|
|
1219 case GraphicsExpose: FROB(xexpose, window); break;
|
|
1220 case MapNotify:
|
|
1221 case UnmapNotify: FROB(xmap, window); break;
|
|
1222 case EnterNotify:
|
|
1223 case LeaveNotify: FROB(xcrossing, window); break;
|
|
1224 case FocusIn:
|
|
1225 case FocusOut: FROB(xfocus, window); break;
|
|
1226 case VisibilityNotify: FROB(xvisibility, window); break;
|
|
1227 default:
|
|
1228 w = x_event->xany.window;
|
|
1229 *x_event_copy = *x_event;
|
|
1230 break;
|
2
|
1231 }
|
183
|
1232 #undef FROB
|
2
|
1233 frame = x_any_window_to_frame (d, w);
|
183
|
1234
|
2
|
1235 if (!frame)
|
|
1236 return 0;
|
0
|
1237
|
2
|
1238 emacs_event->event_type = magic_event;
|
|
1239 XSETFRAME (emacs_event->channel, frame);
|
183
|
1240
|
2
|
1241 break;
|
0
|
1242 }
|
|
1243 }
|
|
1244 return 1;
|
|
1245 }
|
|
1246
|
70
|
1247
|
0
|
1248
|
|
1249 /************************************************************************/
|
|
1250 /* magic-event handling */
|
|
1251 /************************************************************************/
|
|
1252
|
|
1253 static void
|
|
1254 handle_focus_event_1 (struct frame *f, int in_p)
|
|
1255 {
|
70
|
1256 #ifdef HAVE_XIM
|
|
1257 XIM_focus_event (f, in_p);
|
|
1258 #endif /* HAVE_XIM */
|
|
1259
|
0
|
1260 /* On focus change, clear all memory of sticky modifiers
|
|
1261 to avoid non-intuitive behavior. */
|
|
1262 clear_sticky_modifiers (XDEVICE (FRAME_DEVICE (f)));
|
|
1263
|
|
1264 /* We don't want to handle the focus change now, because we might
|
|
1265 be in an accept-process-output, sleep-for, or sit-for. So
|
|
1266 we enqueue it.
|
|
1267
|
|
1268 Actually, we half handle it: we handle it as far as changing the
|
|
1269 box cursor for redisplay, but we don't call any hooks or do any
|
|
1270 select-frame stuff until after the sit-for.
|
|
1271 */
|
|
1272 {
|
|
1273 Lisp_Object frm;
|
|
1274 Lisp_Object conser;
|
|
1275 struct gcpro gcpro1;
|
183
|
1276
|
0
|
1277 XSETFRAME (frm, f);
|
|
1278 conser = Fcons (frm, Fcons (FRAME_DEVICE (f), in_p ? Qt : Qnil));
|
|
1279 GCPRO1 (conser);
|
|
1280 emacs_handle_focus_change_preliminary (conser);
|
|
1281 enqueue_magic_eval_event (emacs_handle_focus_change_final,
|
|
1282 conser);
|
|
1283 UNGCPRO;
|
|
1284 }
|
|
1285 }
|
|
1286
|
|
1287 /* This is called from the external-widget code */
|
|
1288
|
|
1289 void emacs_Xt_handle_focus_event (XEvent *event);
|
|
1290 void
|
|
1291 emacs_Xt_handle_focus_event (XEvent *event)
|
|
1292 {
|
|
1293 /*
|
|
1294 * It's curious that we're using x_any_window_to_frame() instead
|
|
1295 * of x_window_to_frame(). I don't know what the impact of this is.
|
|
1296 */
|
183
|
1297
|
0
|
1298 struct frame *f =
|
|
1299 x_any_window_to_frame (get_device_from_display (event->xany.display),
|
|
1300 event->xfocus.window);
|
|
1301 if (!f)
|
|
1302 /* focus events are sometimes generated just before
|
|
1303 a frame is destroyed. */
|
|
1304 return;
|
2
|
1305 handle_focus_event_1 (f, event->type == FocusIn);
|
0
|
1306 }
|
|
1307
|
108
|
1308 /* both MapNotify and VisibilityNotify can cause this
|
|
1309 JV is_visible has the same semantics as f->visible*/
|
104
|
1310 static void
|
|
1311 change_frame_visibility (struct frame *f, int is_visible)
|
|
1312 {
|
|
1313 Lisp_Object frame = Qnil;
|
|
1314
|
|
1315 XSETFRAME (frame, f);
|
|
1316
|
|
1317 if (!FRAME_VISIBLE_P (f) && is_visible)
|
|
1318 {
|
108
|
1319 FRAME_VISIBLE_P (f) = is_visible;
|
104
|
1320 /* This improves the double flicker when uniconifying a frame
|
|
1321 some. A lot of it is not showing a buffer which has changed
|
|
1322 while the frame was iconified. To fix it further requires
|
|
1323 the good 'ol double redisplay structure. */
|
|
1324 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
1325 va_run_hook_with_args (Qmap_frame_hook, 1, frame);
|
|
1326 #ifdef EPOCH
|
|
1327 dispatch_epoch_event (f, event, Qx_map);
|
|
1328 #endif
|
|
1329 }
|
183
|
1330 else if (FRAME_VISIBLE_P (f) && !is_visible)
|
104
|
1331 {
|
|
1332 FRAME_VISIBLE_P (f) = 0;
|
|
1333 va_run_hook_with_args (Qunmap_frame_hook, 1, frame);
|
|
1334 #ifdef EPOCH
|
|
1335 dispatch_epoch_event (f, event, Qx_unmap);
|
|
1336 #endif
|
|
1337 }
|
108
|
1338 else if (FRAME_VISIBLE_P (f) * is_visible < 0)
|
|
1339 {
|
|
1340 FRAME_VISIBLE_P(f) = - FRAME_VISIBLE_P(f);
|
|
1341 if (FRAME_REPAINT_P(f))
|
|
1342 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
1343 va_run_hook_with_args (Qmap_frame_hook, 1, frame);
|
|
1344 #ifdef EPOCH
|
|
1345 dispatch_epoch_event (f, event, Qx_map);
|
|
1346 #endif
|
|
1347 }
|
104
|
1348 }
|
|
1349
|
0
|
1350 static void
|
|
1351 handle_map_event (struct frame *f, XEvent *event)
|
|
1352 {
|
|
1353 Lisp_Object frame = Qnil;
|
|
1354
|
|
1355 XSETFRAME (frame, f);
|
2
|
1356 if (event->type == MapNotify)
|
0
|
1357 {
|
|
1358 XWindowAttributes xwa;
|
|
1359
|
|
1360 /* Bleagh!!!!!! Apparently some window managers (e.g. MWM)
|
|
1361 send synthetic MapNotify events when a window is first
|
|
1362 created, EVENT IF IT'S CREATED ICONIFIED OR INVISIBLE.
|
|
1363 Or something like that. We initially tried a different
|
|
1364 solution below, but that ran into a different window-
|
|
1365 manager bug.
|
|
1366
|
|
1367 It seems that the only reliable way is to treat a
|
|
1368 MapNotify event as a "hint" that the window might or
|
|
1369 might not be visible, and check explicitly. */
|
|
1370
|
|
1371 XGetWindowAttributes (event->xany.display, event->xmap.window,
|
|
1372 &xwa);
|
|
1373 if (xwa.map_state != IsViewable)
|
|
1374 {
|
|
1375 /* Calling Fframe_iconified_p is the only way we have to
|
|
1376 correctly update FRAME_ICONIFIED_P */
|
|
1377 Fframe_iconified_p (frame);
|
|
1378 return;
|
|
1379 }
|
|
1380
|
|
1381 FRAME_X_TOTALLY_VISIBLE_P (f) = 1;
|
|
1382 #if 0
|
|
1383 /* Bleagh again!!!! We initially tried the following hack
|
|
1384 around the MWM problem, but it turns out that TWM
|
|
1385 has a race condition when you un-iconify, where it maps
|
|
1386 the window and then tells the server that the window
|
|
1387 is un-iconified. Usually, XEmacs wakes up between
|
|
1388 those two occurrences, and thus thinks that un-iconified
|
|
1389 windows are still iconified.
|
|
1390
|
|
1391 Ah, the joys of X. */
|
|
1392
|
|
1393 /* By Emacs definition, a frame that is iconified is not
|
|
1394 visible. Marking a frame as visible will automatically cause
|
|
1395 frame-iconified-p to return nil, regardless of whether the
|
|
1396 frame is actually iconified. Therefore, we have to ignore
|
|
1397 MapNotify events on iconified frames. (It's not obvious
|
|
1398 to me why these are being sent, but it happens at startup
|
|
1399 with frames that are initially iconified; perhaps they are
|
|
1400 synthetic MapNotify events coming from the window manager.)
|
|
1401 Note that `frame-iconified-p' queries the server
|
|
1402 to determine whether the frame is currently iconified,
|
|
1403 rather than consulting some internal (and likely
|
|
1404 inaccurate) state flag. Therefore, ignoring the MapNotify
|
|
1405 is correct. */
|
104
|
1406 if (!FRAME_VISIBLE_P (f) && NILP (Fframe_iconified_p (frame)))
|
185
|
1407 #endif /* 0 */
|
104
|
1408 change_frame_visibility (f, 1);
|
0
|
1409 }
|
|
1410 else
|
|
1411 {
|
|
1412 FRAME_X_TOTALLY_VISIBLE_P (f) = 0;
|
104
|
1413 change_frame_visibility (f, 0);
|
0
|
1414 /* Calling Fframe_iconified_p is the only way we have to
|
|
1415 correctly update FRAME_ICONIFIED_P */
|
|
1416 Fframe_iconified_p (frame);
|
|
1417 }
|
|
1418 }
|
|
1419
|
|
1420 static void
|
|
1421 handle_client_message (struct frame *f, XEvent *event)
|
|
1422 {
|
|
1423 struct device *d = XDEVICE (FRAME_DEVICE (f));
|
|
1424 Lisp_Object frame = Qnil;
|
|
1425
|
|
1426 XSETFRAME (frame, f);
|
|
1427
|
|
1428 if (event->xclient.message_type == DEVICE_XATOM_WM_PROTOCOLS (d) &&
|
|
1429 event->xclient.data.l[0] == DEVICE_XATOM_WM_DELETE_WINDOW (d))
|
|
1430 {
|
|
1431 /* WM_DELETE_WINDOW is a misc-user event, but other ClientMessages,
|
|
1432 such as WM_TAKE_FOCUS, are eval events. That's because delete-window
|
|
1433 was probably executed with a mouse click, while the others could
|
|
1434 have been sent as a result of mouse motion or some other implicit
|
|
1435 action. (Call this a "heuristic"...) The reason for caring about
|
|
1436 this is so that clicking on the close-box will make emacs prompt
|
|
1437 using a dialog box instead of the minibuffer if there are unsaved
|
|
1438 buffers.
|
70
|
1439 */
|
0
|
1440 enqueue_misc_user_event (frame, Qeval,
|
|
1441 list3 (Qdelete_frame, frame, Qt));
|
|
1442 }
|
|
1443 else if (event->xclient.message_type == DEVICE_XATOM_WM_PROTOCOLS (d) &&
|
|
1444 event->xclient.data.l[0] == DEVICE_XATOM_WM_TAKE_FOCUS (d))
|
|
1445 {
|
|
1446 handle_focus_event_1 (f, 1);
|
|
1447 #if 0
|
|
1448 /* If there is a dialog box up, focus on it.
|
183
|
1449
|
0
|
1450 #### Actually, we're raising it too, which is wrong. We should
|
|
1451 #### just focus on it, but lwlib doesn't currently give us an
|
|
1452 #### easy way to do that. This should be fixed.
|
|
1453 */
|
|
1454 unsigned long take_focus_timestamp = event->xclient.data.l[1];
|
|
1455 Widget widget = lw_raise_all_pop_up_widgets ();
|
|
1456 if (widget)
|
|
1457 {
|
|
1458 /* kludge: raise_all returns bottommost widget, but we really
|
|
1459 want the topmost. So just raise it for now. */
|
|
1460 XMapRaised (XtDisplay (widget), XtWindow (widget));
|
|
1461 /* Grab the focus with the timestamp of the TAKE_FOCUS. */
|
|
1462 XSetInputFocus (XtDisplay (widget), XtWindow (widget),
|
|
1463 RevertToParent, take_focus_timestamp);
|
|
1464 }
|
|
1465 #endif
|
|
1466 }
|
|
1467 #ifdef EPOCH
|
|
1468 dispatch_epoch_event (f, event, Qx_client_message);
|
|
1469 #endif
|
|
1470 }
|
|
1471
|
|
1472 static void
|
|
1473 emacs_Xt_handle_magic_event (struct Lisp_Event *emacs_event)
|
|
1474 {
|
|
1475 /* This function can GC */
|
183
|
1476 XEvent *event = &emacs_event->event.magic.underlying_x_event;
|
0
|
1477 struct frame *f = XFRAME (EVENT_CHANNEL (emacs_event));
|
|
1478
|
|
1479 if (!FRAME_LIVE_P (f))
|
|
1480 return;
|
|
1481
|
|
1482 switch (event->type)
|
|
1483 {
|
|
1484 case SelectionRequest:
|
|
1485 x_handle_selection_request (&event->xselectionrequest);
|
|
1486 break;
|
183
|
1487
|
0
|
1488 case SelectionClear:
|
|
1489 x_handle_selection_clear (&event->xselectionclear);
|
|
1490 break;
|
183
|
1491
|
0
|
1492 case SelectionNotify:
|
|
1493 x_handle_selection_notify (&event->xselection);
|
|
1494 break;
|
183
|
1495
|
0
|
1496 case PropertyNotify:
|
|
1497 x_handle_property_notify (&event->xproperty);
|
|
1498 #ifdef EPOCH
|
|
1499 dispatch_epoch_event (f, event, Qx_property_change);
|
|
1500 #endif
|
|
1501 break;
|
183
|
1502
|
0
|
1503 case Expose:
|
|
1504 x_redraw_exposed_area (f, event->xexpose.x, event->xexpose.y,
|
|
1505 event->xexpose.width, event->xexpose.height);
|
|
1506 break;
|
183
|
1507
|
0
|
1508 case GraphicsExpose: /* This occurs when an XCopyArea's source area was
|
|
1509 obscured or not available. */
|
|
1510 x_redraw_exposed_area (f, event->xexpose.x, event->xexpose.y,
|
|
1511 event->xexpose.width, event->xexpose.height);
|
|
1512 break;
|
183
|
1513
|
0
|
1514 case MapNotify:
|
|
1515 case UnmapNotify:
|
|
1516 handle_map_event (f, event);
|
|
1517 break;
|
183
|
1518
|
0
|
1519 case EnterNotify:
|
|
1520 if (event->xcrossing.detail != NotifyInferior)
|
|
1521 {
|
|
1522 Lisp_Object frame;
|
183
|
1523
|
0
|
1524 XSETFRAME (frame, f);
|
|
1525 /* FRAME_X_MOUSE_P (f) = 1; */
|
|
1526 va_run_hook_with_args (Qmouse_enter_frame_hook, 1, frame);
|
|
1527 }
|
|
1528 break;
|
183
|
1529
|
0
|
1530 case LeaveNotify:
|
|
1531 if (event->xcrossing.detail != NotifyInferior)
|
|
1532 {
|
|
1533 Lisp_Object frame;
|
183
|
1534
|
0
|
1535 XSETFRAME (frame, f);
|
|
1536 /* FRAME_X_MOUSE_P (f) = 0; */
|
|
1537 va_run_hook_with_args (Qmouse_leave_frame_hook, 1, frame);
|
|
1538 }
|
|
1539 break;
|
183
|
1540
|
0
|
1541 case FocusIn:
|
|
1542 case FocusOut:
|
|
1543 #ifdef EXTERNAL_WIDGET
|
|
1544 /* External widget lossage: Ben said:
|
|
1545 YUCK. The only way to make focus changes work properly is to
|
|
1546 completely ignore all FocusIn/FocusOut events and depend only
|
|
1547 on notifications from the ExternalClient widget. */
|
|
1548 if (FRAME_X_EXTERNAL_WINDOW_P (f))
|
|
1549 break;
|
|
1550 #endif
|
2
|
1551 handle_focus_event_1 (f, event->type == FocusIn);
|
0
|
1552 break;
|
183
|
1553
|
0
|
1554 case ClientMessage:
|
|
1555 handle_client_message (f, event);
|
|
1556 break;
|
183
|
1557
|
0
|
1558 case VisibilityNotify: /* window visiblity has changed */
|
82
|
1559 if (event->xvisibility.window == XtWindow (FRAME_X_SHELL_WIDGET (f)))
|
102
|
1560 {
|
104
|
1561 FRAME_X_TOTALLY_VISIBLE_P (f) =
|
|
1562 (event->xvisibility.state == VisibilityUnobscured);
|
100
|
1563 /* Note that the fvwm pager only sends VisibilityNotify when
|
|
1564 changing pages. Is this all we need to do ? JV */
|
183
|
1565 /* Nope. We must at least trigger a redisplay here.
|
|
1566 Since this case seems similar to MapNotify, I've
|
|
1567 factored out some code to change_frame_visibility().
|
104
|
1568 This triggers the necessary redisplay and runs
|
|
1569 (un)map-frame-hook. - dkindred@cs.cmu.edu */
|
108
|
1570 /* Changed it again to support the tristate visibility flag */
|
104
|
1571 change_frame_visibility (f, (event->xvisibility.state
|
108
|
1572 != VisibilityFullyObscured) ? 1 : -1);
|
100
|
1573 }
|
20
|
1574 break;
|
183
|
1575
|
0
|
1576 case ConfigureNotify:
|
2
|
1577 #ifdef HAVE_XIM
|
20
|
1578 XIM_SetGeometry (f);
|
2
|
1579 #endif
|
0
|
1580 break;
|
|
1581
|
|
1582 default:
|
|
1583 break;
|
|
1584 }
|
|
1585 }
|
|
1586
|
|
1587
|
|
1588 /************************************************************************/
|
|
1589 /* timeout events */
|
|
1590 /************************************************************************/
|
|
1591
|
|
1592 static int timeout_id_tick;
|
|
1593
|
|
1594 /* Xt interval id's might not fit into an int (they're pointers, as it
|
|
1595 happens), so we need to provide a conversion list. */
|
|
1596
|
|
1597 struct Xt_timeout
|
|
1598 {
|
|
1599 int id;
|
|
1600 XtIntervalId interval_id;
|
|
1601 struct Xt_timeout *next;
|
|
1602 } *pending_timeouts, *completed_timeouts;
|
|
1603
|
|
1604 struct Xt_timeout_blocktype
|
|
1605 {
|
|
1606 Blocktype_declare (struct Xt_timeout);
|
|
1607 } *the_Xt_timeout_blocktype;
|
|
1608
|
|
1609 /* called by XtAppNextEvent() */
|
|
1610 static void
|
|
1611 Xt_timeout_callback (XtPointer closure, XtIntervalId *id)
|
|
1612 {
|
|
1613 struct Xt_timeout *timeout = (struct Xt_timeout *) closure;
|
|
1614 struct Xt_timeout *t2 = pending_timeouts;
|
|
1615 /* Remove this one from the list of pending timeouts */
|
|
1616 if (t2 == timeout)
|
|
1617 pending_timeouts = pending_timeouts->next;
|
|
1618 else
|
|
1619 {
|
|
1620 while (t2->next && t2->next != timeout) t2 = t2->next;
|
|
1621 assert (t2->next);
|
|
1622 t2->next = t2->next->next;
|
|
1623 }
|
|
1624 /* Add this one to the list of completed timeouts */
|
|
1625 timeout->next = completed_timeouts;
|
|
1626 completed_timeouts = timeout;
|
|
1627 }
|
|
1628
|
|
1629 static int
|
|
1630 emacs_Xt_add_timeout (EMACS_TIME thyme)
|
|
1631 {
|
|
1632 struct Xt_timeout *timeout = Blocktype_alloc (the_Xt_timeout_blocktype);
|
|
1633 EMACS_TIME current_time;
|
|
1634 int milliseconds;
|
|
1635
|
|
1636 timeout->id = timeout_id_tick++;
|
|
1637 timeout->next = pending_timeouts;
|
|
1638 pending_timeouts = timeout;
|
|
1639 EMACS_GET_TIME (current_time);
|
|
1640 EMACS_SUB_TIME (thyme, thyme, current_time);
|
|
1641 milliseconds = EMACS_SECS (thyme) * 1000 +
|
|
1642 EMACS_USECS (thyme) / 1000;
|
|
1643 if (milliseconds < 1)
|
|
1644 milliseconds = 1;
|
|
1645 timeout->interval_id = XtAppAddTimeOut (Xt_app_con, milliseconds,
|
|
1646 Xt_timeout_callback,
|
|
1647 (XtPointer) timeout);
|
|
1648 return timeout->id;
|
|
1649 }
|
|
1650
|
|
1651 static void
|
|
1652 emacs_Xt_remove_timeout (int id)
|
|
1653 {
|
|
1654 struct Xt_timeout *timeout, *t2;
|
|
1655
|
|
1656 /* Find the timeout on the list of pending ones, if it's still there. */
|
|
1657 if (!pending_timeouts) return;
|
|
1658 if (id == pending_timeouts->id)
|
|
1659 {
|
|
1660 timeout = pending_timeouts;
|
|
1661 pending_timeouts = pending_timeouts->next;
|
|
1662 }
|
|
1663 else
|
|
1664 {
|
|
1665 t2 = pending_timeouts;
|
|
1666 while (t2->next && t2->next->id != id) t2 = t2->next;
|
|
1667 if (! t2->next) return;
|
|
1668 timeout = t2->next;
|
|
1669 t2->next = t2->next->next;
|
|
1670 }
|
|
1671
|
|
1672 /* At this point, we've found the thing on the list of pending timeouts,
|
|
1673 and removed it.
|
|
1674 */
|
|
1675
|
|
1676 XtRemoveTimeOut (timeout->interval_id);
|
|
1677 Blocktype_free (the_Xt_timeout_blocktype, timeout);
|
|
1678 }
|
|
1679
|
|
1680 static void
|
|
1681 Xt_timeout_to_emacs_event (struct Lisp_Event *emacs_event)
|
|
1682 {
|
|
1683 struct Xt_timeout *timeout = completed_timeouts;
|
|
1684 assert (timeout);
|
|
1685 completed_timeouts = completed_timeouts->next;
|
|
1686 emacs_event->event_type = timeout_event;
|
|
1687 /* timeout events have nil as channel */
|
|
1688 emacs_event->timestamp = 0; /* #### wrong!! */
|
|
1689 emacs_event->event.timeout.interval_id = timeout->id;
|
|
1690 Blocktype_free (the_Xt_timeout_blocktype, timeout);
|
|
1691 }
|
|
1692
|
|
1693
|
|
1694 /************************************************************************/
|
|
1695 /* process and tty events */
|
|
1696 /************************************************************************/
|
|
1697
|
|
1698 struct what_is_ready_closure
|
|
1699 {
|
|
1700 int fd;
|
|
1701 Lisp_Object what;
|
|
1702 XtInputId id;
|
|
1703 };
|
|
1704
|
|
1705 static Lisp_Object *filedesc_with_input;
|
|
1706 static struct what_is_ready_closure **filedesc_to_what_closure;
|
|
1707
|
|
1708 static void
|
|
1709 init_what_input_once (void)
|
|
1710 {
|
|
1711 int i;
|
|
1712
|
185
|
1713 filedesc_with_input = xnew_array (Lisp_Object, MAXDESC);
|
|
1714 filedesc_to_what_closure =
|
|
1715 xnew_array (struct what_is_ready_closure *, MAXDESC);
|
0
|
1716
|
|
1717 for (i = 0; i < MAXDESC; i++)
|
|
1718 {
|
|
1719 filedesc_to_what_closure[i] = 0;
|
|
1720 filedesc_with_input[i] = Qnil;
|
|
1721 }
|
|
1722
|
|
1723 process_events_occurred = 0;
|
|
1724 tty_events_occurred = 0;
|
|
1725 }
|
|
1726
|
|
1727 static void
|
|
1728 mark_what_as_being_ready (struct what_is_ready_closure *closure)
|
|
1729 {
|
|
1730 if (NILP (filedesc_with_input[closure->fd]))
|
|
1731 {
|
|
1732 SELECT_TYPE temp_mask;
|
|
1733 FD_ZERO (&temp_mask);
|
|
1734 FD_SET (closure->fd, &temp_mask);
|
|
1735 /* Check to make sure there's *really* input available.
|
|
1736 Sometimes things seem to get confused and this gets called
|
|
1737 for the tty fd when there's really only input available
|
|
1738 on some process's fd. (It will subsequently get called
|
|
1739 for that process's fd, so returning without setting any
|
|
1740 flags will take care of it.) To see the problem, uncomment
|
|
1741 the stderr_out below, turn NORMAL_QUIT_CHECK_TIMEOUT_MSECS
|
183
|
1742 down to 25, do sh -c 'xemacs -nw -q -f shell 2>/tmp/log'
|
0
|
1743 and press return repeatedly. (Seen under AIX & Linux.)
|
|
1744 -dkindred@cs.cmu.edu */
|
183
|
1745 if (!poll_fds_for_input (temp_mask))
|
0
|
1746 {
|
|
1747 #if 0
|
|
1748 stderr_out ("mark_what_as_being_ready: no input available (fd=%d)\n",
|
|
1749 closure->fd);
|
|
1750 #endif
|
|
1751 return;
|
|
1752 }
|
|
1753 filedesc_with_input[closure->fd] = closure->what;
|
|
1754 if (PROCESSP (closure->what))
|
|
1755 /* Don't increment this if the current process is already marked
|
|
1756 * as having input. */
|
|
1757 process_events_occurred++;
|
|
1758 else
|
|
1759 tty_events_occurred++;
|
|
1760 }
|
|
1761 }
|
|
1762
|
|
1763 static void
|
|
1764 Xt_what_callback (void *closure, int *source, XtInputId *id)
|
|
1765 {
|
|
1766 /* If closure is 0, then we got a fake event from a signal handler.
|
|
1767 The only purpose of this is to make XtAppProcessEvent() stop
|
|
1768 blocking. */
|
|
1769 if (closure)
|
|
1770 mark_what_as_being_ready ((struct what_is_ready_closure *) closure);
|
|
1771 else
|
|
1772 {
|
|
1773 fake_event_occurred++;
|
|
1774 drain_signal_event_pipe ();
|
|
1775 }
|
|
1776 }
|
|
1777
|
|
1778 static void
|
|
1779 select_filedesc (int fd, Lisp_Object what)
|
|
1780 {
|
|
1781 struct what_is_ready_closure *closure;
|
|
1782
|
|
1783 /* If somebody is trying to select something that's already selected
|
|
1784 for, then something went wrong. The generic routines ought to
|
|
1785 detect this and error before here. */
|
|
1786 assert (!filedesc_to_what_closure[fd]);
|
|
1787
|
185
|
1788 closure = xnew (struct what_is_ready_closure);
|
0
|
1789 closure->fd = fd;
|
|
1790 closure->what = what;
|
183
|
1791 closure->id =
|
0
|
1792 XtAppAddInput (Xt_app_con, fd,
|
|
1793 (XtPointer) (XtInputReadMask /* | XtInputExceptMask */),
|
|
1794 Xt_what_callback, closure);
|
|
1795 filedesc_to_what_closure[fd] = closure;
|
|
1796 }
|
|
1797
|
|
1798 static void
|
|
1799 unselect_filedesc (int fd)
|
|
1800 {
|
|
1801 struct what_is_ready_closure *closure = filedesc_to_what_closure[fd];
|
|
1802
|
|
1803 assert (closure);
|
|
1804 if (!NILP (filedesc_with_input[fd]))
|
|
1805 {
|
|
1806 /* We are unselecting this process before we have drained the rest of
|
|
1807 the input from it, probably from status_notify() in the command loop.
|
|
1808 This can happen like so:
|
|
1809
|
|
1810 - We are waiting in XtAppNextEvent()
|
|
1811 - Process generates output
|
|
1812 - Process is marked as being ready
|
|
1813 - Process dies, SIGCHLD gets generated before we return (!?)
|
|
1814 It could happen I guess.
|
|
1815 - sigchld_handler() marks process as dead
|
|
1816 - Somehow we end up getting a new KeyPress event on the queue
|
|
1817 at the same time (I'm really so sure how that happens but I'm
|
|
1818 not sure it can't either so let's assume it can...).
|
|
1819 - Key events have priority so we return that instead of the proc.
|
|
1820 - Before dispatching the lisp key event we call status_notify()
|
|
1821 - Which deselects the process that SIGCHLD marked as dead.
|
|
1822
|
|
1823 Thus we never remove it from _with_input and turn it into a lisp
|
|
1824 event, so we need to do it here. But this does not mean that we're
|
|
1825 throwing away the last block of output - status_notify() has already
|
|
1826 taken care of running the proc filter or whatever.
|
|
1827 */
|
|
1828 filedesc_with_input[fd] = Qnil;
|
|
1829 if (PROCESSP (closure->what))
|
|
1830 {
|
|
1831 assert (process_events_occurred > 0);
|
|
1832 process_events_occurred--;
|
|
1833 }
|
|
1834 else
|
|
1835 {
|
|
1836 assert (tty_events_occurred > 0);
|
|
1837 tty_events_occurred--;
|
|
1838 }
|
|
1839 }
|
|
1840 XtRemoveInput (closure->id);
|
|
1841 xfree (closure);
|
|
1842 filedesc_to_what_closure[fd] = 0;
|
|
1843 }
|
|
1844
|
|
1845 static void
|
|
1846 emacs_Xt_select_process (struct Lisp_Process *p)
|
|
1847 {
|
|
1848 Lisp_Object process;
|
183
|
1849 int infd = event_stream_unixoid_select_process (p);
|
0
|
1850
|
|
1851 XSETPROCESS (process, p);
|
|
1852 select_filedesc (infd, process);
|
|
1853 }
|
|
1854
|
|
1855 static void
|
|
1856 emacs_Xt_unselect_process (struct Lisp_Process *p)
|
|
1857 {
|
183
|
1858 int infd = event_stream_unixoid_unselect_process (p);
|
0
|
1859
|
|
1860 unselect_filedesc (infd);
|
|
1861 }
|
|
1862
|
|
1863 /* This is called from GC when a process object is about to be freed.
|
|
1864 If we've still got pointers to it in this file, we're gonna lose hard.
|
|
1865 */
|
|
1866 void
|
|
1867 debug_process_finalization (struct Lisp_Process *p)
|
|
1868 {
|
|
1869 #if 0 /* #### */
|
|
1870 int i;
|
|
1871 int infd, outfd;
|
|
1872 get_process_file_descriptors (p, &infd, &outfd);
|
|
1873 /* if it still has fds, then it hasn't been killed yet. */
|
|
1874 assert (infd < 0);
|
|
1875 assert (outfd < 0);
|
|
1876 /* Better not still be in the "with input" table; we know it's got no fds. */
|
|
1877 for (i = 0; i < MAXDESC; i++)
|
|
1878 {
|
|
1879 Lisp_Object process = filedesc_fds_with_input [i];
|
|
1880 assert (!PROCESSP (process) || XPROCESS (process) != p);
|
|
1881 }
|
|
1882 #endif
|
|
1883 }
|
|
1884
|
|
1885 static void
|
|
1886 Xt_process_to_emacs_event (struct Lisp_Event *emacs_event)
|
|
1887 {
|
|
1888 int i;
|
|
1889 Lisp_Object process;
|
|
1890
|
|
1891 assert (process_events_occurred > 0);
|
|
1892 for (i = 0; i < MAXDESC; i++)
|
|
1893 {
|
|
1894 process = filedesc_with_input[i];
|
|
1895 if (PROCESSP (process))
|
|
1896 break;
|
|
1897 }
|
|
1898 assert (i < MAXDESC);
|
|
1899 filedesc_with_input[i] = Qnil;
|
|
1900 process_events_occurred--;
|
|
1901 /* process events have nil as channel */
|
|
1902 emacs_event->event_type = process_event;
|
|
1903 emacs_event->timestamp = 0; /* #### */
|
|
1904 emacs_event->event.process.process = process;
|
|
1905 }
|
|
1906
|
|
1907 static void
|
|
1908 emacs_Xt_select_console (struct console *con)
|
|
1909 {
|
|
1910 Lisp_Object console = Qnil;
|
|
1911 int infd;
|
153
|
1912 #ifdef HAVE_GPM
|
|
1913 int mousefd;
|
|
1914 #endif
|
0
|
1915
|
|
1916 if (CONSOLE_X_P (con))
|
|
1917 return; /* X consoles are automatically selected for when we
|
|
1918 initialize them in Xt */
|
|
1919 infd = event_stream_unixoid_select_console (con);
|
|
1920 XSETCONSOLE (console, con);
|
|
1921 select_filedesc (infd, console);
|
153
|
1922 #ifdef HAVE_GPM
|
|
1923 /* On a stream device (ie: noninteractive), bad things can happen. */
|
|
1924 if (EQ (CONSOLE_TYPE (con), Qtty)) {
|
|
1925 mousefd = CONSOLE_TTY_MOUSE_FD (con);
|
183
|
1926 /* We check filedesc_to_what_closure[fd] here because if you run
|
|
1927 ** XEmacs from a TTY, it will fire up GPM, select the mouse fd, then
|
|
1928 ** if you run gnuattach to connect to another TTY, it will fire up
|
|
1929 ** GPM again, and try to reselect the mouse fd. GPM uses the same
|
|
1930 ** fd for every connection apparently, and select_filedesc will
|
|
1931 ** fail its assertion if we try to select it twice.
|
|
1932 */
|
|
1933 if ((mousefd >= 0) && !filedesc_to_what_closure[mousefd]) {
|
153
|
1934 select_filedesc (mousefd, console);
|
|
1935 }
|
|
1936 }
|
|
1937 #endif
|
0
|
1938 }
|
|
1939
|
|
1940 static void
|
|
1941 emacs_Xt_unselect_console (struct console *con)
|
|
1942 {
|
|
1943 Lisp_Object console = Qnil;
|
|
1944 int infd;
|
153
|
1945 #ifdef HAVE_GPM
|
|
1946 int mousefd;
|
|
1947 #endif
|
0
|
1948
|
|
1949 if (CONSOLE_X_P (con))
|
|
1950 return; /* X consoles are automatically selected for when we
|
|
1951 initialize them in Xt */
|
|
1952 infd = event_stream_unixoid_unselect_console (con);
|
|
1953 XSETCONSOLE (console, con);
|
|
1954 unselect_filedesc (infd);
|
153
|
1955 #ifdef HAVE_GPM
|
|
1956 /* On a stream device (ie: noninteractive), bad things can happen. */
|
|
1957 if (EQ (CONSOLE_TYPE (con), Qtty)) {
|
|
1958 mousefd = CONSOLE_TTY_MOUSE_FD (con);
|
|
1959 if (mousefd >= 0) {
|
|
1960 unselect_filedesc (mousefd);
|
|
1961 }
|
|
1962 }
|
|
1963 #endif
|
0
|
1964 }
|
|
1965
|
|
1966 /* read an event from a tty, if one is available. Returns non-zero
|
|
1967 if an event was available. Note that when this function is
|
|
1968 called, there should always be a tty marked as ready for input.
|
|
1969 However, the input condition might actually be EOF, so there
|
|
1970 may not really be any input available. (In this case,
|
|
1971 read_event_from_tty_or_stream_desc() will arrange for the TTY device
|
|
1972 to be deleted.) */
|
|
1973
|
|
1974 static int
|
|
1975 Xt_tty_to_emacs_event (struct Lisp_Event *emacs_event)
|
|
1976 {
|
|
1977 int i;
|
|
1978
|
|
1979 assert (tty_events_occurred > 0);
|
|
1980 for (i = 0; i < MAXDESC; i++)
|
|
1981 {
|
|
1982 Lisp_Object console = filedesc_with_input[i];
|
|
1983 if (CONSOLEP (console))
|
|
1984 {
|
|
1985 assert (tty_events_occurred > 0);
|
|
1986 tty_events_occurred--;
|
|
1987 filedesc_with_input[i] = Qnil;
|
|
1988 if (read_event_from_tty_or_stream_desc
|
|
1989 (emacs_event, XCONSOLE (console), i))
|
|
1990 return 1;
|
|
1991 }
|
|
1992 }
|
|
1993
|
|
1994 return 0;
|
|
1995 }
|
|
1996
|
|
1997
|
|
1998 /************************************************************************/
|
|
1999 /* debugging functions to decipher an event */
|
|
2000 /************************************************************************/
|
|
2001
|
|
2002 #ifdef DEBUG_XEMACS
|
|
2003 #include "xintrinsicp.h" /* only describe_event() needs this */
|
|
2004 #include <X11/Xproto.h> /* only describe_event() needs this */
|
|
2005
|
|
2006 static void
|
|
2007 describe_event_window (Window window, Display *display)
|
|
2008 {
|
|
2009 struct frame *f;
|
|
2010 Widget w;
|
175
|
2011 stderr_out (" window: 0x%lx", (unsigned long) window);
|
0
|
2012 w = XtWindowToWidget (display, window);
|
|
2013 if (w)
|
|
2014 stderr_out (" %s", w->core.widget_class->core_class.class_name);
|
|
2015 f = x_any_window_to_frame (get_device_from_display (display), window);
|
|
2016 if (f) {
|
|
2017 char buf[500];
|
14
|
2018 sprintf (buf, " \"%s\"", XSTRING_DATA (f->name));
|
0
|
2019 write_string_to_stdio_stream (stderr, 0, (Bufbyte *) buf, 0, strlen (buf),
|
16
|
2020 FORMAT_TERMINAL);
|
0
|
2021 }
|
|
2022 stderr_out ("\n");
|
|
2023 }
|
|
2024
|
|
2025 static CONST char *
|
|
2026 XEvent_mode_to_string (int mode)
|
|
2027 {
|
|
2028 switch (mode)
|
|
2029 {
|
2
|
2030 case NotifyNormal: return "Normal";
|
|
2031 case NotifyGrab: return "Grab";
|
|
2032 case NotifyUngrab: return "Ungrab";
|
0
|
2033 case NotifyWhileGrabbed: return "WhileGrabbed";
|
2
|
2034 default: return "???";
|
0
|
2035 }
|
|
2036 }
|
|
2037
|
|
2038 static CONST char *
|
|
2039 XEvent_detail_to_string (int detail)
|
|
2040 {
|
|
2041 switch (detail)
|
|
2042 {
|
2
|
2043 case NotifyAncestor: return "Ancestor";
|
|
2044 case NotifyInferior: return "Inferior";
|
|
2045 case NotifyNonlinear: return "Nonlinear";
|
|
2046 case NotifyNonlinearVirtual: return "NonlinearVirtual";
|
|
2047 case NotifyPointer: return "Pointer";
|
|
2048 case NotifyPointerRoot: return "PointerRoot";
|
|
2049 case NotifyDetailNone: return "DetailNone";
|
|
2050 default: return "???";
|
0
|
2051 }
|
|
2052 }
|
|
2053
|
|
2054 static CONST char *
|
|
2055 XEvent_visibility_to_string (int state)
|
|
2056 {
|
|
2057 switch (state)
|
|
2058 {
|
2
|
2059 case VisibilityFullyObscured: return "FullyObscured";
|
0
|
2060 case VisibilityPartiallyObscured: return "PartiallyObscured";
|
2
|
2061 case VisibilityUnobscured: return "Unobscured";
|
|
2062 default: return "???";
|
0
|
2063 }
|
|
2064 }
|
|
2065
|
|
2066 static void
|
|
2067 describe_event (XEvent *event)
|
|
2068 {
|
|
2069 char buf[100];
|
|
2070 struct device *d = get_device_from_display (event->xany.display);
|
|
2071
|
|
2072 sprintf (buf, "%s%s", x_event_name (event->type),
|
|
2073 event->xany.send_event ? " (send)" : "");
|
|
2074 stderr_out ("%-30s", buf);
|
|
2075 switch (event->type)
|
|
2076 {
|
|
2077 case FocusIn:
|
|
2078 case FocusOut:
|
|
2079 {
|
|
2080 XFocusChangeEvent *ev = &event->xfocus;
|
|
2081 describe_event_window (ev->window, ev->display);
|
|
2082 stderr_out (" mode: %s\n", XEvent_mode_to_string (ev->mode));
|
|
2083 stderr_out (" detail: %s\n", XEvent_detail_to_string(ev->detail));
|
|
2084 break;
|
|
2085 }
|
183
|
2086
|
0
|
2087 case KeyPress:
|
|
2088 {
|
|
2089 XKeyEvent *ev = &event->xkey;
|
|
2090 unsigned int state = ev->state;
|
183
|
2091
|
0
|
2092 describe_event_window (ev->window, ev->display);
|
|
2093 stderr_out (" subwindow: %ld\n", ev->subwindow);
|
|
2094 stderr_out (" state: ");
|
20
|
2095 /* Complete list of modifier key masks */
|
0
|
2096 if (state & ShiftMask) stderr_out ("Shift ");
|
|
2097 if (state & LockMask) stderr_out ("Lock ");
|
|
2098 if (state & ControlMask) stderr_out ("Control ");
|
|
2099 if (state & Mod1Mask) stderr_out ("Mod1 ");
|
|
2100 if (state & Mod2Mask) stderr_out ("Mod2 ");
|
|
2101 if (state & Mod3Mask) stderr_out ("Mod3 ");
|
|
2102 if (state & Mod4Mask) stderr_out ("Mod4 ");
|
|
2103 if (state & Mod5Mask) stderr_out ("Mod5 ");
|
183
|
2104
|
0
|
2105 if (! state)
|
|
2106 stderr_out ("vanilla\n");
|
|
2107 else
|
|
2108 stderr_out ("\n");
|
|
2109 if (x_key_is_modifier_p (ev->keycode, d))
|
|
2110 stderr_out (" Modifier key");
|
|
2111 stderr_out (" keycode: 0x%x\n", ev->keycode);
|
|
2112 }
|
|
2113 break;
|
183
|
2114
|
0
|
2115 case Expose:
|
|
2116 if (x_debug_events > 1)
|
|
2117 {
|
|
2118 XExposeEvent *ev = &event->xexpose;
|
|
2119 describe_event_window (ev->window, ev->display);
|
2
|
2120 stderr_out (" region: x=%d y=%d width=%d height=%d\n",
|
|
2121 ev->x, ev->y, ev->width, ev->height);
|
0
|
2122 stderr_out (" count: %d\n", ev->count);
|
|
2123 }
|
|
2124 else
|
|
2125 stderr_out ("\n");
|
|
2126 break;
|
183
|
2127
|
0
|
2128 case GraphicsExpose:
|
|
2129 if (x_debug_events > 1)
|
|
2130 {
|
|
2131 XGraphicsExposeEvent *ev = &event->xgraphicsexpose;
|
|
2132 describe_event_window (ev->drawable, ev->display);
|
|
2133 stderr_out (" major: %s\n",
|
|
2134 (ev ->major_code == X_CopyArea ? "CopyArea" :
|
|
2135 (ev->major_code == X_CopyPlane ? "CopyPlane" : "?")));
|
2
|
2136 stderr_out (" region: x=%d y=%d width=%d height=%d\n",
|
|
2137 ev->x, ev->y, ev->width, ev->height);
|
0
|
2138 stderr_out (" count: %d\n", ev->count);
|
|
2139 }
|
|
2140 else
|
|
2141 stderr_out ("\n");
|
|
2142 break;
|
183
|
2143
|
0
|
2144 case EnterNotify:
|
|
2145 case LeaveNotify:
|
|
2146 if (x_debug_events > 1)
|
|
2147 {
|
|
2148 XCrossingEvent *ev = &event->xcrossing;
|
|
2149 describe_event_window (ev->window, ev->display);
|
|
2150 #if 0
|
|
2151 stderr_out(" subwindow: 0x%x\n", ev->subwindow);
|
|
2152 stderr_out(" pos: %d %d\n", ev->x, ev->y);
|
|
2153 stderr_out(" root pos: %d %d\n", ev->x_root, ev->y_root);
|
|
2154 #endif
|
|
2155 stderr_out(" mode: %s\n", XEvent_mode_to_string(ev->mode));
|
|
2156 stderr_out(" detail: %s\n", XEvent_detail_to_string(ev->detail));
|
|
2157 stderr_out(" focus: %d\n", ev->focus);
|
|
2158 #if 0
|
|
2159 stderr_out(" state: 0x%x\n", ev->state);
|
|
2160 #endif
|
|
2161 }
|
|
2162 else
|
|
2163 stderr_out("\n");
|
|
2164 break;
|
|
2165
|
|
2166 case ConfigureNotify:
|
|
2167 if (x_debug_events > 1)
|
|
2168 {
|
|
2169 XConfigureEvent *ev = &event->xconfigure;
|
|
2170 describe_event_window (ev->window, ev->display);
|
|
2171 stderr_out(" above: 0x%lx\n", ev->above);
|
|
2172 stderr_out(" size: %d %d %d %d\n", ev->x, ev->y,
|
|
2173 ev->width, ev->height);
|
|
2174 stderr_out(" redirect: %d\n", ev->override_redirect);
|
|
2175 }
|
|
2176 else
|
|
2177 stderr_out("\n");
|
|
2178 break;
|
|
2179
|
|
2180 case VisibilityNotify:
|
|
2181 if (x_debug_events > 1)
|
|
2182 {
|
|
2183 XVisibilityEvent *ev = &event->xvisibility;
|
|
2184 describe_event_window (ev->window, ev->display);
|
|
2185 stderr_out(" state: %s\n", XEvent_visibility_to_string(ev->state));
|
|
2186 }
|
|
2187 else
|
|
2188 stderr_out ("\n");
|
|
2189 break;
|
183
|
2190
|
0
|
2191 case ClientMessage:
|
|
2192 {
|
|
2193 XClientMessageEvent *ev = &event->xclient;
|
|
2194 char *name = XGetAtomName (ev->display, ev->message_type);
|
|
2195 stderr_out ("%s", name);
|
|
2196 if (!strcmp (name, "WM_PROTOCOLS")) {
|
|
2197 char *protname = XGetAtomName (ev->display, ev->data.l[0]);
|
|
2198 stderr_out ("(%s)", protname);
|
|
2199 XFree (protname);
|
|
2200 }
|
|
2201 XFree (name);
|
|
2202 stderr_out ("\n");
|
|
2203 break;
|
|
2204 }
|
183
|
2205
|
0
|
2206 default:
|
|
2207 stderr_out ("\n");
|
|
2208 break;
|
|
2209 }
|
|
2210
|
|
2211 fflush (stdout);
|
|
2212 }
|
|
2213
|
|
2214 #endif /* include describe_event definition */
|
|
2215
|
|
2216
|
|
2217 /************************************************************************/
|
|
2218 /* get the next event from Xt */
|
|
2219 /************************************************************************/
|
|
2220
|
|
2221 static Lisp_Object dispatch_event_queue, dispatch_event_queue_tail;
|
|
2222
|
|
2223 static void
|
|
2224 enqueue_Xt_dispatch_event (Lisp_Object event)
|
|
2225 {
|
|
2226 enqueue_event (event, &dispatch_event_queue, &dispatch_event_queue_tail);
|
|
2227 }
|
|
2228
|
20
|
2229 static Lisp_Object
|
0
|
2230 dequeue_Xt_dispatch_event (void)
|
|
2231 {
|
|
2232 return dequeue_event (&dispatch_event_queue, &dispatch_event_queue_tail);
|
|
2233 }
|
|
2234
|
|
2235 /* This business exists because menu events "happen" when
|
|
2236 menubar_selection_callback() is called from somewhere deep
|
|
2237 within XtAppProcessEvent in emacs_Xt_next_event(). The
|
|
2238 callback needs to terminate the modal loop in that function
|
|
2239 or else it will continue waiting until another event is
|
|
2240 received.
|
|
2241
|
|
2242 Same business applies to scrollbar events. */
|
|
2243
|
|
2244 void
|
|
2245 signal_special_Xt_user_event (Lisp_Object channel, Lisp_Object function,
|
|
2246 Lisp_Object object)
|
|
2247 {
|
189
|
2248 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
0
|
2249
|
|
2250 XEVENT (event)->event_type = misc_user_event;
|
|
2251 XEVENT (event)->channel = channel;
|
|
2252 XEVENT (event)->event.eval.function = function;
|
|
2253 XEVENT (event)->event.eval.object = object;
|
|
2254
|
|
2255 enqueue_Xt_dispatch_event (event);
|
183
|
2256 }
|
0
|
2257
|
|
2258 static void
|
|
2259 emacs_Xt_next_event (struct Lisp_Event *emacs_event)
|
|
2260 {
|
|
2261 we_didnt_get_an_event:
|
|
2262
|
|
2263 while (NILP (dispatch_event_queue) &&
|
2
|
2264 !completed_timeouts &&
|
|
2265 !fake_event_occurred &&
|
|
2266 !process_events_occurred &&
|
0
|
2267 !tty_events_occurred)
|
|
2268 {
|
|
2269
|
|
2270 /* Stupid logic in XtAppProcessEvent() dictates that, if process
|
|
2271 events and X events are both available, the process event gets
|
|
2272 taken first. This will cause an infinite loop if we're being
|
|
2273 called from Fdiscard_input().
|
|
2274 */
|
|
2275 if (XtAppPending (Xt_app_con) & XtIMXEvent)
|
|
2276 XtAppProcessEvent (Xt_app_con, XtIMXEvent);
|
|
2277 else
|
|
2278 {
|
|
2279 Lisp_Object devcons, concons;
|
|
2280
|
|
2281 /* We're about to block. Xt has a bug in it (big surprise,
|
|
2282 there) in that it blocks using select() and doesn't
|
|
2283 flush the Xlib output buffers (XNextEvent() does this
|
|
2284 automatically before blocking). So it's necessary
|
|
2285 for us to do this ourselves. If we don't do it, then
|
|
2286 display output may not be seen until the next time
|
|
2287 an X event is received. (This happens esp. with
|
|
2288 subprocess output that gets sent to a visible buffer.)
|
|
2289
|
|
2290 #### The above comment may not have any validity. */
|
|
2291
|
|
2292 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
2293 {
|
|
2294 struct device *d;
|
|
2295 d = XDEVICE (XCAR (devcons));
|
|
2296
|
|
2297 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d))
|
|
2298 /* emacs may be exiting */
|
|
2299 XFlush (DEVICE_X_DISPLAY (d));
|
|
2300 }
|
|
2301 XtAppProcessEvent (Xt_app_con, XtIMAll);
|
|
2302 }
|
|
2303 }
|
|
2304
|
|
2305 if (!NILP (dispatch_event_queue))
|
|
2306 {
|
|
2307 Lisp_Object event, event2;
|
|
2308 XSETEVENT (event2, emacs_event);
|
|
2309 event = dequeue_Xt_dispatch_event ();
|
|
2310 Fcopy_event (event, event2);
|
|
2311 Fdeallocate_event (event);
|
|
2312 }
|
|
2313 else if (tty_events_occurred)
|
|
2314 {
|
|
2315 if (!Xt_tty_to_emacs_event (emacs_event))
|
|
2316 goto we_didnt_get_an_event;
|
|
2317 }
|
|
2318 else if (completed_timeouts)
|
|
2319 Xt_timeout_to_emacs_event (emacs_event);
|
|
2320 else if (fake_event_occurred)
|
|
2321 {
|
183
|
2322 /* A dummy event, so that a cycle of the command loop will occur. */
|
0
|
2323 fake_event_occurred = 0;
|
|
2324 /* eval events have nil as channel */
|
|
2325 emacs_event->event_type = eval_event;
|
|
2326 emacs_event->event.eval.function = Qidentity;
|
|
2327 emacs_event->event.eval.object = Qnil;
|
|
2328 }
|
|
2329 else /* if (process_events_occurred) */
|
|
2330 Xt_process_to_emacs_event (emacs_event);
|
|
2331
|
|
2332 /* No need to call XFilterEvent; Xt does it for us */
|
|
2333 }
|
|
2334
|
|
2335 void
|
|
2336 emacs_Xt_event_handler (Widget wid /* unused */,
|
|
2337 XtPointer closure /* unused */,
|
|
2338 XEvent *event,
|
|
2339 Boolean *continue_to_dispatch /* unused */)
|
|
2340 {
|
189
|
2341 Lisp_Object emacs_event = Fmake_event (Qnil, Qnil);
|
0
|
2342
|
|
2343 #ifdef DEBUG_XEMACS
|
|
2344 if (x_debug_events > 0)
|
|
2345 {
|
|
2346 describe_event (event);
|
|
2347 }
|
|
2348 #endif /* DEBUG_XEMACS */
|
|
2349 if (x_event_to_emacs_event (event, XEVENT (emacs_event)))
|
|
2350 enqueue_Xt_dispatch_event (emacs_event);
|
|
2351 else
|
|
2352 Fdeallocate_event (emacs_event);
|
|
2353 }
|
|
2354
|
|
2355
|
|
2356 /************************************************************************/
|
|
2357 /* input pending / C-g checking */
|
|
2358 /************************************************************************/
|
|
2359
|
|
2360 static Bool
|
|
2361 quit_char_predicate (Display *display, XEvent *event, XPointer data)
|
|
2362 {
|
|
2363 struct device *d = get_device_from_display (display);
|
|
2364 struct x_device *xd = DEVICE_X_DATA (d);
|
|
2365 char c, quit_char;
|
|
2366 Bool *critical = (Bool *) data;
|
|
2367 Lisp_Object keysym;
|
|
2368
|
149
|
2369 if (critical)
|
|
2370 *critical = False;
|
|
2371 if ((event->type != KeyPress) ||
|
|
2372 (! x_any_window_to_frame (d, event->xany.window)) ||
|
|
2373 (event->xkey.state
|
|
2374 & (xd->MetaMask | xd->HyperMask | xd->SuperMask | xd->AltMask)))
|
0
|
2375 return 0;
|
|
2376
|
|
2377 /* This duplicates some code that exists elsewhere, but it's relatively
|
149
|
2378 fast and doesn't cons. */
|
20
|
2379 keysym = x_to_emacs_keysym (&event->xkey, 1);
|
0
|
2380 if (NILP (keysym)) return 0;
|
|
2381 if (CHAR_OR_CHAR_INTP (keysym))
|
|
2382 c = XCHAR_OR_CHAR_INT (keysym);
|
|
2383 /* Highly doubtful that these are the quit character, but... */
|
|
2384 else if (EQ (keysym, QKbackspace)) c = '\b';
|
|
2385 else if (EQ (keysym, QKtab)) c = '\t';
|
|
2386 else if (EQ (keysym, QKlinefeed)) c = '\n';
|
|
2387 else if (EQ (keysym, QKreturn)) c = '\r';
|
|
2388 else if (EQ (keysym, QKescape)) c = 27;
|
|
2389 else if (EQ (keysym, QKspace)) c = ' ';
|
|
2390 else if (EQ (keysym, QKdelete)) c = 127;
|
|
2391 else return 0;
|
|
2392
|
|
2393 if (event->xkey.state & xd->MetaMask) c |= 0x80;
|
|
2394 if ((event->xkey.state & ControlMask) && !(c >= 'A' && c <= 'Z'))
|
|
2395 c &= 0x1F; /* unshifted control characters */
|
|
2396 quit_char = CONSOLE_QUIT_CHAR (XCONSOLE (DEVICE_CONSOLE (d)));
|
|
2397 if (c == quit_char)
|
|
2398 return True;
|
|
2399 /* If we've got Control-Shift-G instead of Control-G, that means
|
|
2400 we have a critical_quit. Caps_Lock is its own modifier, so it
|
|
2401 won't cause ^G to act differently than before. */
|
|
2402 if (event->xkey.state & ControlMask) c &= 0x1F;
|
|
2403 if (c == quit_char)
|
|
2404 {
|
|
2405 if (critical) *critical = True;
|
|
2406 return True;
|
|
2407 }
|
|
2408 return False;
|
|
2409 }
|
|
2410
|
|
2411 /* This scans the X input queue for a KeyPress event that matches the
|
|
2412 quit character, and sets Vquit_flag. This is called from the
|
|
2413 QUIT macro to determine whether we should quit.
|
|
2414
|
|
2415 In a SIGIO world, this won't be called unless a SIGIO has happened
|
|
2416 since the last time we checked.
|
|
2417
|
|
2418 In a non-SIGIO world, this is called from emacs_Xt_event_pending_p
|
|
2419 (which is called from input_pending_p).
|
|
2420 */
|
|
2421 static void
|
|
2422 x_check_for_quit_char (Display *display)
|
|
2423 {
|
|
2424 XEvent event;
|
|
2425 int queued;
|
|
2426 Bool critical_quit = False;
|
|
2427 XEventsQueued (display, QueuedAfterReading);
|
|
2428 queued = XCheckIfEvent (display, &event,
|
|
2429 quit_char_predicate,
|
185
|
2430 (char *) &critical_quit);
|
0
|
2431 if (queued)
|
|
2432 {
|
|
2433 Vquit_flag = (critical_quit ? Qcritical : Qt);
|
|
2434 /* don't put the event back onto the queue. Those functions that
|
|
2435 wanted to read a ^G directly have arranged to do this. */
|
|
2436 }
|
|
2437 }
|
|
2438
|
|
2439 static void
|
|
2440 check_for_tty_quit_char (struct device *d)
|
|
2441 {
|
|
2442 SELECT_TYPE temp_mask;
|
|
2443 int infd = DEVICE_INFD (d);
|
|
2444 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
|
2445 Emchar quit_char = CONSOLE_QUIT_CHAR (con);
|
|
2446
|
|
2447 FD_ZERO (&temp_mask);
|
|
2448 FD_SET (infd, &temp_mask);
|
|
2449
|
|
2450 while (1)
|
|
2451 {
|
|
2452 Lisp_Object event;
|
|
2453 Emchar the_char;
|
|
2454
|
|
2455 if (!poll_fds_for_input (temp_mask))
|
|
2456 return;
|
|
2457
|
189
|
2458 event = Fmake_event (Qnil, Qnil);
|
0
|
2459 if (!read_event_from_tty_or_stream_desc (XEVENT (event), con, infd))
|
|
2460 /* EOF, or something ... */
|
|
2461 return;
|
|
2462 /* #### bogus. quit-char should be allowed to be any sort
|
|
2463 of event. */
|
|
2464 the_char = event_to_character (XEVENT (event), 1, 0, 0);
|
|
2465 if (the_char >= 0 && the_char == quit_char)
|
|
2466 {
|
|
2467 Vquit_flag = Qt;
|
|
2468 /* do not queue the C-g. See above. */
|
|
2469 return;
|
|
2470 }
|
|
2471
|
|
2472 /* queue the read event to be read for real later. */
|
|
2473 enqueue_Xt_dispatch_event (event);
|
|
2474 }
|
|
2475 }
|
|
2476
|
|
2477 static void
|
|
2478 emacs_Xt_quit_p (void)
|
|
2479 {
|
|
2480 Lisp_Object devcons, concons;
|
|
2481 CONSOLE_LOOP (concons)
|
|
2482 {
|
|
2483 struct console *con = XCONSOLE (XCAR (concons));
|
|
2484 if (!con->input_enabled)
|
|
2485 continue;
|
|
2486
|
|
2487 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
2488 {
|
|
2489 struct device *d;
|
|
2490 d = XDEVICE (XCAR (devcons));
|
|
2491
|
|
2492 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d))
|
|
2493 /* emacs may be exiting */
|
|
2494 x_check_for_quit_char (DEVICE_X_DISPLAY (d));
|
|
2495 else if (DEVICE_TTY_P (d))
|
|
2496 check_for_tty_quit_char (d);
|
|
2497 }
|
|
2498 }
|
|
2499 }
|
|
2500
|
|
2501 static void
|
|
2502 drain_X_queue (void)
|
|
2503 {
|
|
2504 while (XtAppPending (Xt_app_con) & XtIMXEvent)
|
|
2505 XtAppProcessEvent (Xt_app_con, XtIMXEvent);
|
|
2506 }
|
|
2507
|
|
2508 static int
|
|
2509 emacs_Xt_event_pending_p (int user_p)
|
|
2510 {
|
|
2511 Lisp_Object event;
|
|
2512 int tick_count_val;
|
|
2513
|
|
2514 /* If `user_p' is false, then this function returns whether there are any
|
|
2515 X, timeout, or fd events pending (that is, whether emacs_Xt_next_event()
|
|
2516 would return immediately without blocking).
|
|
2517
|
|
2518 if `user_p' is true, then this function returns whether there are any
|
|
2519 *user generated* events available (that is, whether there are keyboard
|
|
2520 or mouse-click events ready to be read). This also implies that
|
|
2521 emacs_Xt_next_event() would not block.
|
|
2522
|
|
2523 In a non-SIGIO world, this also checks whether the user has typed ^G,
|
|
2524 since this is a convenient place to do so. We don't need to do this
|
|
2525 in a SIGIO world, since input causes an interrupt.
|
|
2526 */
|
|
2527
|
|
2528 #if 0
|
|
2529 /* I don't think there's any point to this and it will nullify
|
|
2530 the speed gains achieved by the sigio_happened checking below.
|
|
2531 Its only advantage is that it may possibly make C-g response
|
|
2532 a bit faster. The C-g will be noticed within 0.25 second, anyway,
|
|
2533 even without this. */
|
|
2534 #ifndef SIGIO
|
|
2535 /* First check for C-g if necessary */
|
|
2536 emacs_Xt_quit_p ();
|
|
2537 #endif
|
|
2538 #endif
|
|
2539
|
|
2540 /* This function used to simply check whether there were any X
|
149
|
2541 events (or if user_p was 1, it iterated over all the pending
|
0
|
2542 X events using XCheckIfEvent(), looking for keystrokes and
|
|
2543 button events). That worked in the old cheesoid event loop,
|
|
2544 which didn't go through XtAppDispatchEvent(), but it doesn't
|
|
2545 work any more -- X events may not result in anything. For
|
|
2546 example, a button press in a blank part of the menubar appears
|
|
2547 as an X event but will not result in any Emacs events (a
|
|
2548 button press that activates the menubar results in an Emacs
|
|
2549 event through the stop_next_event mechanism).
|
|
2550
|
|
2551 The only accurate way of determining whether these X events
|
|
2552 translate into Emacs events is to go ahead and dispatch them
|
|
2553 until there's something on the dispatch queue. */
|
|
2554
|
|
2555 /* See if there are any user events already on the queue. */
|
|
2556 EVENT_CHAIN_LOOP (event, dispatch_event_queue)
|
|
2557 if (!user_p || command_event_p (event))
|
|
2558 return 1;
|
|
2559
|
|
2560 /* See if there's any TTY input available.
|
|
2561 */
|
|
2562 if (poll_fds_for_input (tty_only_mask))
|
|
2563 return 1;
|
|
2564
|
|
2565 if (!user_p)
|
|
2566 {
|
|
2567 /* If not user_p and there are any timer or file-desc events
|
|
2568 pending, we know there will be an event so we're through. */
|
|
2569 XtInputMask pending_value;
|
|
2570
|
|
2571 /* Note that formerly we just checked the value of XtAppPending()
|
|
2572 to determine if there was file-desc input. This doesn't
|
|
2573 work any more with the signal_event_pipe; XtAppPending()
|
|
2574 will says "yes" in this case but there isn't really any
|
|
2575 input. Another way of fixing this problem is for the
|
|
2576 signal_event_pipe to generate actual input in the form
|
|
2577 of an identity eval event or something. (#### maybe this
|
|
2578 actually happens?) */
|
183
|
2579
|
0
|
2580 if (poll_fds_for_input (process_only_mask))
|
|
2581 return 1;
|
|
2582
|
|
2583 pending_value = XtAppPending (Xt_app_con);
|
|
2584
|
|
2585 if (pending_value & XtIMTimer)
|
|
2586 return 1;
|
|
2587 }
|
|
2588
|
|
2589 /* XtAppPending() can be super-slow, esp. over a network connection.
|
|
2590 Quantify results have indicated that in some cases the
|
|
2591 call to detect_input_pending() completely dominates the
|
|
2592 running time of redisplay(). Fortunately, in a SIGIO world
|
|
2593 we can more quickly determine whether there are any X events:
|
|
2594 if an event has happened since the last time we checked, then
|
|
2595 a SIGIO will have happened. On a machine with broken SIGIO,
|
|
2596 we'll still be in an OK state -- the sigio_happened flag
|
|
2597 will get set at least once a second, so we'll be no more than
|
|
2598 one second behind reality. (In general it's OK if we
|
|
2599 erroneously report no input pending when input is actually
|
|
2600 pending() -- preemption is just a bit less efficient, that's
|
|
2601 all. It's bad bad bad if you err the other way -- you've
|
|
2602 promised that `next-event' won't block but it actually will,
|
|
2603 and some action might get delayed until the next time you
|
|
2604 hit a key.)
|
|
2605 */
|
|
2606
|
|
2607 /* quit_check_signal_tick_count is volatile so try to avoid race conditions
|
|
2608 by using a temporary variable */
|
|
2609 tick_count_val = quit_check_signal_tick_count;
|
|
2610 if (last_quit_check_signal_tick_count != tick_count_val)
|
|
2611 {
|
|
2612 last_quit_check_signal_tick_count = tick_count_val;
|
|
2613
|
|
2614 /* We need to drain the entire queue now -- if we only
|
|
2615 drain part of it, we may later on end up with events
|
|
2616 actually pending but detect_input_pending() returning
|
|
2617 false because there wasn't another SIGIO. */
|
|
2618 drain_X_queue ();
|
|
2619
|
|
2620 EVENT_CHAIN_LOOP (event, dispatch_event_queue)
|
|
2621 if (!user_p || command_event_p (event))
|
|
2622 return 1;
|
|
2623 }
|
|
2624
|
|
2625 return 0;
|
|
2626 }
|
|
2627
|
|
2628
|
|
2629 /************************************************************************/
|
|
2630 /* replacement for standard string-to-pixel converter */
|
|
2631 /************************************************************************/
|
|
2632
|
|
2633 /* This was constructed by ripping off the standard string-to-pixel
|
|
2634 converter from Converters.c in the Xt source code and modifying
|
|
2635 appropriately. */
|
|
2636
|
|
2637 #if 0
|
|
2638
|
|
2639 /* This is exported by the Xt library (at least by mine). If this
|
|
2640 isn't the case somewhere, rename this appropriately and remove
|
|
2641 the '#if 0'. Note, however, that I got "unknown structure"
|
|
2642 errors when I tried this. */
|
|
2643 XtConvertArgRec Const colorConvertArgs[] = {
|
|
2644 {XtWidgetBaseOffset, (XtPointer)XtOffsetOf(WidgetRec, core.screen),
|
|
2645 sizeof(Screen *)},
|
|
2646 {XtWidgetBaseOffset, (XtPointer)XtOffsetOf(WidgetRec, core.colormap),
|
|
2647 sizeof(Colormap)}
|
|
2648 };
|
|
2649
|
|
2650 #endif
|
|
2651
|
|
2652 #define done(type, value) \
|
|
2653 if (toVal->addr != NULL) { \
|
|
2654 if (toVal->size < sizeof(type)) { \
|
|
2655 toVal->size = sizeof(type); \
|
|
2656 return False; \
|
|
2657 } \
|
|
2658 *(type*)(toVal->addr) = (value); \
|
|
2659 } else { \
|
|
2660 static type static_val; \
|
|
2661 static_val = (value); \
|
|
2662 toVal->addr = (XPointer)&static_val; \
|
|
2663 } \
|
|
2664 toVal->size = sizeof(type); \
|
|
2665 return True /* Caller supplies `;' */
|
|
2666
|
219
|
2667 /* JH: We use this because I think there's a possibility this
|
|
2668 is called before the device is properly set up, in which case
|
|
2669 I don't want to abort. */
|
|
2670 extern struct device *get_device_from_display_1 (Display *dpy);
|
|
2671
|
0
|
2672 static
|
|
2673 Boolean EmacsXtCvtStringToPixel (
|
|
2674 Display *dpy,
|
|
2675 XrmValuePtr args,
|
|
2676 Cardinal *num_args,
|
|
2677 XrmValuePtr fromVal,
|
|
2678 XrmValuePtr toVal,
|
|
2679 XtPointer *closure_ret)
|
|
2680 {
|
|
2681 String str = (String)fromVal->addr;
|
|
2682 XColor screenColor;
|
|
2683 XColor exactColor;
|
219
|
2684 Screen *screen;
|
0
|
2685 Colormap colormap;
|
219
|
2686 Visual *visual;
|
|
2687 struct device *d;
|
0
|
2688 Status status;
|
|
2689 String params[1];
|
|
2690 Cardinal num_params = 1;
|
|
2691 XtAppContext the_app_con = XtDisplayToApplicationContext (dpy);
|
183
|
2692
|
0
|
2693 if (*num_args != 2) {
|
|
2694 XtAppWarningMsg(the_app_con, "wrongParameters", "cvtStringToPixel",
|
|
2695 "XtToolkitError",
|
|
2696 "String to pixel conversion needs screen and colormap arguments",
|
|
2697 (String *)NULL, (Cardinal *)NULL);
|
|
2698 return False;
|
|
2699 }
|
|
2700
|
|
2701 screen = *((Screen **) args[0].addr);
|
|
2702 colormap = *((Colormap *) args[1].addr);
|
|
2703
|
|
2704 /* The original uses the private function CompareISOLatin1().
|
|
2705 Use XmuCompareISOLatin1() if you want, but I don't think it
|
|
2706 makes any difference here. */
|
|
2707 if (strcmp(str, XtDefaultBackground) == 0) {
|
|
2708 *closure_ret = False;
|
|
2709 /* This refers to the display's "*reverseVideo" resource.
|
|
2710 These display resources aren't documented anywhere that
|
|
2711 I can find, so I'm going to ignore this. */
|
|
2712 /* if (pd->rv) done(Pixel, BlackPixelOfScreen(screen)) else */
|
|
2713 done(Pixel, WhitePixelOfScreen(screen));
|
|
2714 }
|
|
2715 if (strcmp(str, XtDefaultForeground) == 0) {
|
|
2716 *closure_ret = False;
|
|
2717 /* if (pd->rv) done(Pixel, WhitePixelOfScreen(screen)) else */
|
|
2718 done(Pixel, BlackPixelOfScreen(screen));
|
|
2719 }
|
|
2720
|
|
2721 /* Originally called XAllocNamedColor() here. */
|
219
|
2722 if ((d = get_device_from_display_1(dpy))) {
|
|
2723 visual = DEVICE_X_VISUAL(d);
|
|
2724 if (colormap != DEVICE_X_COLORMAP(d)) {
|
|
2725 XtAppWarningMsg(the_app_con, "wierdColormap", "cvtStringToPixel",
|
|
2726 "XtToolkitWarning",
|
|
2727 "The colormap passed to cvtStringToPixel doesn't match the one registerd to the device.\n",
|
|
2728 NULL, 0);
|
|
2729 status = XAllocNamedColor(dpy, colormap, (char*)str, &screenColor, &exactColor);
|
|
2730 } else {
|
|
2731 status = XParseColor (dpy, colormap, (char*)str, &screenColor);
|
|
2732 if (status) {
|
|
2733 status = allocate_nearest_color (dpy, colormap, visual, &screenColor);
|
|
2734 }
|
|
2735 }
|
|
2736 } else {
|
|
2737 /* We haven't set up this device totally yet, so just punt */
|
|
2738 status = XAllocNamedColor(dpy, colormap, (char*)str, &screenColor, &exactColor);
|
0
|
2739 }
|
|
2740 if (status == 0) {
|
|
2741 params[0] = str;
|
|
2742 /* Server returns a specific error code but Xlib discards it. Ugh */
|
183
|
2743 if (XLookupColor(DisplayOfScreen(screen), colormap, (char*) str,
|
0
|
2744 &exactColor, &screenColor)) {
|
|
2745 XtAppWarningMsg(the_app_con, "noColormap", "cvtStringToPixel",
|
|
2746 "XtToolkitError",
|
|
2747 "Cannot allocate colormap entry for \"%s\"",
|
|
2748 params, &num_params);
|
|
2749
|
|
2750 } else {
|
|
2751 XtAppWarningMsg(the_app_con, "badValue", "cvtStringToPixel",
|
|
2752 "XtToolkitError",
|
|
2753 "Color name \"%s\" is not defined", params, &num_params);
|
|
2754 }
|
183
|
2755
|
0
|
2756 *closure_ret = False;
|
|
2757 return False;
|
|
2758 } else {
|
|
2759 *closure_ret = (char*)True;
|
|
2760 done(Pixel, screenColor.pixel);
|
|
2761 }
|
|
2762 }
|
|
2763
|
|
2764 /* ARGSUSED */
|
|
2765 static void EmacsFreePixel (
|
|
2766 XtAppContext app,
|
|
2767 XrmValuePtr toVal,
|
|
2768 XtPointer closure,
|
|
2769 XrmValuePtr args,
|
|
2770 Cardinal *num_args)
|
|
2771 {
|
|
2772 if (*num_args != 2) {
|
|
2773 XtAppWarningMsg(app, "wrongParameters","freePixel","XtToolkitError",
|
|
2774 "Freeing a pixel requires screen and colormap arguments",
|
|
2775 (String *)NULL, (Cardinal *)NULL);
|
|
2776 return;
|
|
2777 }
|
|
2778
|
|
2779 if (closure) {
|
|
2780 Screen *screen = *((Screen **) args[0].addr);
|
|
2781 Colormap colormap = *((Colormap *) args[1].addr);
|
|
2782 XFreeColors(DisplayOfScreen(screen), colormap,
|
|
2783 (unsigned long*)toVal->addr, 1, (unsigned long)0);
|
|
2784 }
|
|
2785 }
|
|
2786
|
|
2787
|
|
2788 /************************************************************************/
|
|
2789 /* initialization */
|
|
2790 /************************************************************************/
|
|
2791
|
|
2792 void
|
|
2793 syms_of_event_Xt (void)
|
|
2794 {
|
|
2795 defsymbol (&Qkey_mapping, "key-mapping");
|
187
|
2796 defsymbol (&Qsans_modifiers, "sans-modifiers");
|
0
|
2797 }
|
|
2798
|
|
2799 void
|
|
2800 vars_of_event_Xt (void)
|
|
2801 {
|
|
2802 dispatch_event_queue = Qnil;
|
|
2803 staticpro (&dispatch_event_queue);
|
|
2804 dispatch_event_queue_tail = Qnil;
|
|
2805
|
|
2806 /* this function only makes safe calls */
|
|
2807 init_what_input_once ();
|
|
2808
|
185
|
2809 Xt_event_stream = xnew (struct event_stream);
|
0
|
2810 Xt_event_stream->event_pending_p = emacs_Xt_event_pending_p;
|
|
2811 Xt_event_stream->next_event_cb = emacs_Xt_next_event;
|
|
2812 Xt_event_stream->handle_magic_event_cb= emacs_Xt_handle_magic_event;
|
|
2813 Xt_event_stream->add_timeout_cb = emacs_Xt_add_timeout;
|
|
2814 Xt_event_stream->remove_timeout_cb = emacs_Xt_remove_timeout;
|
|
2815 Xt_event_stream->select_console_cb = emacs_Xt_select_console;
|
|
2816 Xt_event_stream->unselect_console_cb = emacs_Xt_unselect_console;
|
|
2817 Xt_event_stream->select_process_cb = emacs_Xt_select_process;
|
|
2818 Xt_event_stream->unselect_process_cb = emacs_Xt_unselect_process;
|
|
2819 Xt_event_stream->quit_p_cb = emacs_Xt_quit_p;
|
|
2820
|
|
2821 DEFVAR_BOOL ("modifier-keys-are-sticky", &modifier_keys_are_sticky /*
|
|
2822 *Non-nil makes modifier keys sticky.
|
|
2823 This means that you can release the modifier key before pressing down
|
|
2824 the key that you wish to be modified. Although this is non-standard
|
|
2825 behavior, it is recommended because it reduces the strain on your hand,
|
|
2826 thus reducing the incidence of the dreaded Emacs-pinky syndrome.
|
|
2827 */ );
|
|
2828 modifier_keys_are_sticky = 0;
|
|
2829
|
|
2830 DEFVAR_BOOL ("x-allow-sendevents", &x_allow_sendevents /*
|
|
2831 *Non-nil means to allow synthetic events. Nil means they are ignored.
|
|
2832 Beware: allowing emacs to process SendEvents opens a big security hole.
|
|
2833 */ );
|
|
2834 x_allow_sendevents = 0;
|
|
2835
|
|
2836 #ifdef DEBUG_XEMACS
|
|
2837 DEFVAR_INT ("x-debug-events", &x_debug_events /*
|
|
2838 If non-zero, display debug information about X events that XEmacs sees.
|
|
2839 Information is displayed on stderr. Currently defined values are:
|
|
2840
|
|
2841 1 == non-verbose output
|
|
2842 2 == verbose output
|
|
2843 */ );
|
|
2844 x_debug_events = 0;
|
|
2845 #endif
|
|
2846
|
|
2847 the_Xt_timeout_blocktype = Blocktype_new (struct Xt_timeout_blocktype);
|
|
2848
|
|
2849 last_quit_check_signal_tick_count = 0;
|
|
2850 }
|
|
2851
|
219
|
2852 /* This mess is a hack that patches the shell widget to treat visual inheritance
|
|
2853 the same as colormap and depth inheritance */
|
|
2854
|
|
2855 static XtInitProc orig_shell_init_proc;
|
|
2856
|
|
2857 static void ShellVisualPatch(Widget wanted, Widget new,
|
|
2858 ArgList args, Cardinal *num_args)
|
|
2859 {
|
|
2860 Widget p;
|
|
2861 ShellWidget w = (ShellWidget) new;
|
|
2862
|
|
2863 /* first, call the original setup */
|
|
2864 (*orig_shell_init_proc)(wanted, new, args, num_args);
|
|
2865
|
|
2866 /* if the visual isn't explicitly set, grab it from the nearest shell ancestor */
|
|
2867 if (w->shell.visual == CopyFromParent) {
|
|
2868 p = XtParent(w);
|
|
2869 while (p && !XtIsShell(p)) p = XtParent(p);
|
|
2870 if (p) w->shell.visual = ((ShellWidget)p)->shell.visual;
|
|
2871 }
|
|
2872 }
|
|
2873
|
0
|
2874 void
|
|
2875 init_event_Xt_late (void) /* called when already initialized */
|
|
2876 {
|
|
2877 timeout_id_tick = 1;
|
|
2878 pending_timeouts = 0;
|
|
2879 completed_timeouts = 0;
|
|
2880
|
|
2881 event_stream = Xt_event_stream;
|
183
|
2882
|
136
|
2883 #if defined(HAVE_XIM) || defined(USE_XFONTSET)
|
70
|
2884 Initialize_Locale();
|
136
|
2885 #endif /* HAVE_XIM || USE_XFONTSET */
|
183
|
2886
|
0
|
2887 XtToolkitInitialize ();
|
|
2888 Xt_app_con = XtCreateApplicationContext ();
|
|
2889 XtAppSetFallbackResources (Xt_app_con, (String *) x_fallback_resources);
|
183
|
2890
|
0
|
2891 /* In xselect.c */
|
|
2892 x_selection_timeout = (XtAppGetSelectionTimeout (Xt_app_con) / 1000);
|
|
2893 XSetErrorHandler (x_error_handler);
|
|
2894 XSetIOErrorHandler (x_IO_error_handler);
|
|
2895
|
155
|
2896 #ifndef WINDOWSNT
|
0
|
2897 XtAppAddInput (Xt_app_con, signal_event_pipe[0],
|
|
2898 (XtPointer) (XtInputReadMask /* | XtInputExceptMask */),
|
|
2899 Xt_what_callback, 0);
|
155
|
2900 #endif
|
0
|
2901
|
|
2902 XtAppSetTypeConverter (Xt_app_con, XtRString, XtRPixel,
|
|
2903 EmacsXtCvtStringToPixel,
|
|
2904 (XtConvertArgList) colorConvertArgs,
|
|
2905 2, XtCacheByDisplay, EmacsFreePixel);
|
70
|
2906
|
|
2907 #ifdef XIM_XLIB
|
|
2908 XtAppSetTypeConverter (Xt_app_con, XtRString, XtRXimStyles,
|
|
2909 EmacsXtCvtStringToXIMStyles,
|
|
2910 NULL, 0,
|
|
2911 XtCacheByDisplay, EmacsFreeXIMStyles);
|
|
2912 #endif /* XIM_XLIB */
|
183
|
2913
|
219
|
2914 /* insert the visual inheritance patch/hack described above */
|
|
2915 orig_shell_init_proc = shellClassRec.core_class.initialize;
|
|
2916 shellClassRec.core_class.initialize = ShellVisualPatch;
|
|
2917
|
0
|
2918 }
|