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