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