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