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