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