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