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