0
|
1 /* Device functions for X windows.
|
|
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not in FSF. */
|
|
23
|
|
24 /* Original authors: Jamie Zawinski and the FSF */
|
|
25 /* Rewritten by Ben Wing and Chuck Thompson. */
|
|
26
|
|
27 #include <config.h>
|
|
28 #include "lisp.h"
|
|
29
|
|
30 #include "console-x.h"
|
|
31 #include "xintrinsicp.h" /* CoreP.h needs this */
|
|
32 #include <X11/CoreP.h> /* Numerous places access the fields of
|
|
33 a core widget directly. We could
|
165
|
34 use XtGetValues(), but ... */
|
0
|
35 #include "xgccache.h"
|
|
36 #include <X11/Shell.h>
|
|
37 #include "xmu.h"
|
|
38 #include "glyphs-x.h"
|
|
39 #include "objects-x.h"
|
|
40
|
|
41 #include "buffer.h"
|
|
42 #include "events.h"
|
|
43 #include "faces.h"
|
|
44 #include "frame.h"
|
|
45 #include "redisplay.h"
|
|
46 #include "sysdep.h"
|
|
47 #include "window.h"
|
|
48
|
|
49 #include "sysfile.h"
|
|
50 #include "systime.h"
|
|
51
|
|
52 Lisp_Object Vdefault_x_device;
|
|
53
|
|
54 /* Qdisplay in general.c */
|
183
|
55 Lisp_Object Qx_error;
|
0
|
56 Lisp_Object Qinit_pre_x_win, Qinit_post_x_win;
|
|
57
|
167
|
58 /* $B@ZJ"(B, n. Japanese ritual suicide. */
|
|
59 int x_seppuku_on_epipe;
|
|
60
|
0
|
61 /* The application class of Emacs. */
|
|
62 Lisp_Object Vx_emacs_application_class;
|
|
63
|
|
64 Lisp_Object Vx_initial_argv_list; /* #### ugh! */
|
|
65
|
|
66 static XrmOptionDescRec emacs_options[] =
|
|
67 {
|
183
|
68 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
|
185
|
69 {"-iconic", ".iconic", XrmoptionNoArg, "yes"},
|
2
|
70
|
187
|
71 {"-internal-border-width", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL},
|
|
72 {"-ib", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL},
|
|
73 {"-scrollbar-width", "*EmacsFrame.scrollBarWidth", XrmoptionSepArg, NULL},
|
|
74 {"-scrollbar-height", "*EmacsFrame.scrollBarHeight", XrmoptionSepArg, NULL},
|
0
|
75
|
|
76 /* #### Beware! If the type of the shell changes, update this. */
|
187
|
77 {"-T", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
|
|
78 {"-wn", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
|
|
79 {"-title", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
|
183
|
80
|
|
81 {"-iconname", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL},
|
187
|
82 {"-in", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL},
|
|
83 {"-mc", "*pointerColor", XrmoptionSepArg, NULL},
|
|
84 {"-cr", "*cursorColor", XrmoptionSepArg, NULL},
|
|
85 {"-fontset", "*FontSet", XrmoptionSepArg, NULL},
|
0
|
86 };
|
|
87
|
|
88 static void validify_resource_string (char *str);
|
|
89
|
|
90 /* Functions to synchronize mirroring resources and specifiers */
|
|
91 int in_resource_setting;
|
|
92 int in_specifier_change_function;
|
|
93
|
|
94
|
|
95 /************************************************************************/
|
|
96 /* helper functions */
|
|
97 /************************************************************************/
|
|
98
|
114
|
99 static struct device *
|
|
100 get_device_from_display_1 (Display *dpy)
|
0
|
101 {
|
|
102 Lisp_Object devcons, concons;
|
|
103
|
|
104 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
105 {
|
|
106 struct device *d = XDEVICE (XCAR (devcons));
|
|
107 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d) == dpy)
|
|
108 return d;
|
|
109 }
|
|
110
|
114
|
111 return 0;
|
|
112 }
|
|
113
|
|
114 struct device *
|
|
115 get_device_from_display (Display *dpy)
|
|
116 {
|
|
117 struct device *d = get_device_from_display_1 (dpy);
|
0
|
118
|
114
|
119 if (!d) {
|
|
120 /* This isn't one of our displays. Let's crash? */
|
|
121 stderr_out
|
|
122 ("\n%s: Fatal X Condition. Asked about display we don't own: \"%s\"\n",
|
|
123 (STRINGP (Vinvocation_name) ?
|
|
124 (char *) XSTRING_DATA (Vinvocation_name) : "xemacs"),
|
|
125 DisplayString (dpy) ? DisplayString (dpy) : "???");
|
|
126 abort();
|
|
127 }
|
|
128
|
|
129 return d;
|
0
|
130 }
|
|
131
|
|
132 struct device *
|
|
133 decode_x_device (Lisp_Object device)
|
|
134 {
|
|
135 XSETDEVICE (device, decode_device (device));
|
|
136 CHECK_X_DEVICE (device);
|
|
137 return XDEVICE (device);
|
|
138 }
|
|
139
|
|
140 Display *
|
|
141 get_x_display (Lisp_Object device)
|
|
142 {
|
|
143 return DEVICE_X_DISPLAY (decode_x_device (device));
|
|
144 }
|
|
145
|
|
146
|
|
147 /************************************************************************/
|
|
148 /* initializing an X connection */
|
|
149 /************************************************************************/
|
|
150
|
|
151 static void
|
|
152 allocate_x_device_struct (struct device *d)
|
|
153 {
|
185
|
154 d->device_data = xnew_and_zero (struct x_device);
|
0
|
155 }
|
|
156
|
|
157 static void
|
|
158 Xatoms_of_device_x (struct device *d)
|
|
159 {
|
149
|
160 Display *D = DEVICE_X_DISPLAY (d);
|
0
|
161
|
149
|
162 DEVICE_XATOM_WM_PROTOCOLS (d) = XInternAtom (D, "WM_PROTOCOLS", False);
|
|
163 DEVICE_XATOM_WM_DELETE_WINDOW(d) = XInternAtom (D, "WM_DELETE_WINDOW",False);
|
|
164 DEVICE_XATOM_WM_SAVE_YOURSELF(d) = XInternAtom (D, "WM_SAVE_YOURSELF",False);
|
|
165 DEVICE_XATOM_WM_TAKE_FOCUS (d) = XInternAtom (D, "WM_TAKE_FOCUS", False);
|
|
166 DEVICE_XATOM_WM_STATE (d) = XInternAtom (D, "WM_STATE", False);
|
0
|
167 }
|
|
168
|
|
169 static void
|
|
170 sanity_check_geometry_resource (Display *dpy)
|
|
171 {
|
|
172 char *app_name, *app_class, *s;
|
|
173 char buf1 [255], buf2 [255];
|
|
174 char *type;
|
|
175 XrmValue value;
|
|
176 XtGetApplicationNameAndClass (dpy, &app_name, &app_class);
|
|
177 strcpy (buf1, app_name);
|
|
178 strcpy (buf2, app_class);
|
|
179 for (s = buf1; *s; s++) if (*s == '.') *s = '_';
|
|
180 strcat (buf1, "._no_._such_._resource_.geometry");
|
|
181 strcat (buf2, "._no_._such_._resource_.Geometry");
|
|
182 if (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True)
|
|
183 {
|
|
184 warn_when_safe (Qgeometry, Qerror,
|
|
185 "\n"
|
|
186 "Apparently \"%s*geometry: %s\" or \"%s*geometry: %s\" was\n"
|
|
187 "specified in the resource database. Specifying \"*geometry\" will make\n"
|
|
188 "XEmacs (and most other X programs) malfunction in obscure ways. (i.e.\n"
|
|
189 "the Xt or Xm libraries will probably crash, which is a very bad thing.)\n"
|
|
190 "You should always use \".geometry\" or \"*EmacsFrame.geometry\" instead.\n",
|
|
191 app_name, (char *) value.addr,
|
|
192 app_class, (char *) value.addr);
|
|
193 suppress_early_backtrace = 1;
|
|
194 error ("Invalid geometry resource");
|
|
195 }
|
|
196 }
|
|
197
|
|
198 static void
|
|
199 x_init_device_class (struct device *d)
|
|
200 {
|
|
201 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
202 if (DisplayCells (dpy, DefaultScreen (dpy)) > 2)
|
|
203 {
|
|
204 switch (DefaultVisualOfScreen (DefaultScreenOfDisplay (dpy))->class)
|
|
205 {
|
|
206 case StaticGray:
|
|
207 case GrayScale:
|
|
208 DEVICE_CLASS (d) = Qgrayscale;
|
|
209 break;
|
|
210 default:
|
|
211 DEVICE_CLASS (d) = Qcolor;
|
|
212 }
|
|
213 }
|
|
214 else
|
|
215 DEVICE_CLASS (d) = Qmono;
|
|
216 }
|
|
217
|
|
218 static void
|
|
219 x_init_device (struct device *d, Lisp_Object props)
|
|
220 {
|
|
221 Lisp_Object display;
|
|
222 Lisp_Object device;
|
|
223 Display *dpy;
|
|
224 int argc;
|
|
225 char **argv;
|
|
226 CONST char *app_class;
|
|
227 CONST char *disp_name;
|
|
228
|
|
229 XSETDEVICE (device, d);
|
|
230 display = DEVICE_CONNECTION (d);
|
|
231
|
|
232 allocate_x_device_struct (d);
|
|
233
|
|
234 make_argc_argv (Vx_initial_argv_list, &argc, &argv);
|
|
235
|
|
236 if (STRINGP (Vx_emacs_application_class) &&
|
14
|
237 XSTRING_LENGTH (Vx_emacs_application_class) > 0)
|
0
|
238 GET_C_STRING_CTEXT_DATA_ALLOCA (Vx_emacs_application_class, app_class);
|
|
239 else
|
|
240 app_class = "Emacs";
|
|
241
|
|
242 GET_C_STRING_CTEXT_DATA_ALLOCA (display, disp_name);
|
|
243
|
|
244 slow_down_interrupts ();
|
|
245 /* The Xt code can't deal with signals here. Yuck. */
|
|
246 dpy = DEVICE_X_DISPLAY (d) =
|
|
247 XtOpenDisplay (Xt_app_con, disp_name, NULL, app_class, emacs_options,
|
|
248 XtNumber (emacs_options), &argc, argv);
|
|
249 speed_up_interrupts ();
|
|
250
|
|
251 if (dpy == 0)
|
|
252 {
|
|
253 suppress_early_backtrace = 1;
|
|
254 signal_simple_error ("X server not responding\n", display);
|
|
255 }
|
|
256
|
74
|
257 if (NILP (Vdefault_x_device))
|
|
258 Vdefault_x_device = device;
|
|
259
|
70
|
260 #ifdef MULE
|
|
261 {
|
|
262 /* Read in locale-specific resources from
|
|
263 data-directory/app-defaults/$LANG/emacs-application-class.
|
|
264 This is in addition to the standard app-defaults files, and
|
|
265 does not override resources defined elsewhere */
|
|
266 CONST char *data_dir;
|
|
267 char path[MAXPATHLEN];
|
|
268 XrmDatabase db = XtDatabase (dpy); /* ### XtScreenDatabase(dpy) ? */
|
|
269 CONST char *locale = XrmLocaleOfDatabase (db);
|
183
|
270
|
70
|
271 if (STRINGP (Vdata_directory) && XSTRING_LENGTH (Vdata_directory) > 0)
|
169
|
272 {
|
|
273 GET_C_STRING_FILENAME_DATA_ALLOCA (Vdata_directory, data_dir);
|
|
274 sprintf (path, "%sapp-defaults/%s/%s", data_dir, locale, app_class);
|
|
275 if (!access (path, R_OK))
|
|
276 XrmCombineFileDatabase (path, &db, False);
|
|
277 }
|
70
|
278 }
|
149
|
279 #endif /* MULE */
|
6
|
280
|
0
|
281 if (NILP (DEVICE_NAME (d)))
|
|
282 DEVICE_NAME (d) = display;
|
|
283
|
|
284 /* We're going to modify the string in-place, so be a nice XEmacs */
|
|
285 DEVICE_NAME (d) = Fcopy_sequence (DEVICE_NAME (d));
|
|
286 /* colons and periods can't appear in individual elements of resource
|
|
287 strings */
|
14
|
288 validify_resource_string ((char *) XSTRING_DATA (DEVICE_NAME (d)));
|
0
|
289 DEVICE_XT_APP_SHELL (d) = XtAppCreateShell (NULL, app_class,
|
|
290 applicationShellWidgetClass,
|
|
291 dpy, NULL, 0);
|
|
292
|
70
|
293 #ifdef HAVE_XIM
|
|
294 XIM_init_device(d);
|
|
295 #endif /* HAVE_XIM */
|
0
|
296
|
179
|
297 #ifdef HAVE_SESSION
|
177
|
298 {
|
185
|
299 Arg al[3];
|
|
300 Widget shell = DEVICE_XT_APP_SHELL (d);
|
177
|
301
|
185
|
302 XtSetArg (al [0], XtNmappedWhenManaged, False);
|
187
|
303 XtSetArg (al [1], XtNwidth, 1);
|
|
304 XtSetArg (al [2], XtNheight, 1);
|
185
|
305 XtSetValues (shell, al, 3);
|
|
306 XtRealizeWidget (shell);
|
177
|
307
|
185
|
308 {
|
|
309 int new_argc;
|
|
310 char **new_argv;
|
|
311 make_argc_argv (Vcommand_line_args, &new_argc, &new_argv);
|
|
312 XSetCommand (XtDisplay (shell), XtWindow (shell), new_argv, new_argc);
|
|
313 free_argc_argv (new_argv);
|
|
314 }
|
177
|
315 }
|
179
|
316 #endif /* HAVE_SESSION */
|
177
|
317
|
0
|
318 Vx_initial_argv_list = make_arg_list (argc, argv);
|
|
319 free_argc_argv (argv);
|
|
320
|
|
321 DEVICE_X_WM_COMMAND_FRAME (d) = Qnil;
|
|
322
|
|
323 sanity_check_geometry_resource (dpy);
|
|
324
|
|
325 /* In event-Xt.c */
|
|
326 x_init_modifier_mapping (d);
|
|
327
|
|
328 DEVICE_INFD (d) = DEVICE_OUTFD (d) = ConnectionNumber (dpy);
|
|
329 init_baud_rate (d);
|
|
330 init_one_device (d);
|
|
331
|
|
332 DEVICE_X_GC_CACHE (d) =
|
|
333 make_gc_cache (dpy, RootWindow (dpy, DefaultScreen (dpy)));
|
|
334 DEVICE_X_GRAY_PIXMAP (d) = None;
|
|
335 Xatoms_of_device_x (d);
|
|
336 Xatoms_of_xselect (d);
|
|
337 Xatoms_of_objects_x (d);
|
|
338 x_init_device_class (d);
|
|
339
|
2
|
340 /* Run the elisp side of the X device initialization. */
|
0
|
341 call0 (Qinit_pre_x_win);
|
|
342 }
|
|
343
|
|
344 static void
|
|
345 x_finish_init_device (struct device *d, Lisp_Object props)
|
|
346 {
|
|
347 call0 (Qinit_post_x_win);
|
|
348 }
|
|
349
|
|
350 static void
|
|
351 x_mark_device (struct device *d, void (*markobj) (Lisp_Object))
|
|
352 {
|
187
|
353 ((markobj) (DEVICE_X_WM_COMMAND_FRAME (d)));
|
|
354 ((markobj) (DEVICE_X_DATA (d)->x_keysym_map_hashtable));
|
0
|
355 }
|
|
356
|
|
357
|
|
358 /************************************************************************/
|
|
359 /* closing an X connection */
|
|
360 /************************************************************************/
|
|
361
|
|
362 static void
|
|
363 free_x_device_struct (struct device *d)
|
|
364 {
|
|
365 xfree (d->device_data);
|
|
366 }
|
|
367
|
|
368 static void
|
|
369 x_delete_device (struct device *d)
|
|
370 {
|
|
371 Lisp_Object device;
|
|
372 Display *display;
|
|
373 #ifdef FREE_CHECKING
|
|
374 extern void (*__free_hook)();
|
|
375 int checking_free;
|
|
376 #endif
|
|
377
|
|
378 XSETDEVICE (device, d);
|
|
379 display = DEVICE_X_DISPLAY (d);
|
|
380
|
|
381 if (display)
|
|
382 {
|
|
383 #ifdef FREE_CHECKING
|
|
384 checking_free = (__free_hook != 0);
|
183
|
385
|
0
|
386 /* Disable strict free checking, to avoid bug in X library */
|
|
387 if (checking_free)
|
|
388 disable_strict_free_check ();
|
|
389 #endif
|
|
390
|
|
391 free_gc_cache (DEVICE_X_GC_CACHE (d));
|
|
392 if (DEVICE_X_DATA (d)->x_modifier_keymap)
|
|
393 XFreeModifiermap (DEVICE_X_DATA (d)->x_modifier_keymap);
|
|
394 if (DEVICE_X_DATA (d)->x_keysym_map)
|
|
395 XFree ((char *) DEVICE_X_DATA (d)->x_keysym_map);
|
|
396
|
|
397 XtCloseDisplay (display);
|
|
398 DEVICE_X_DISPLAY (d) = 0;
|
|
399 #ifdef FREE_CHECKING
|
|
400 if (checking_free)
|
|
401 enable_strict_free_check ();
|
|
402 #endif
|
|
403 }
|
183
|
404
|
0
|
405 if (EQ (device, Vdefault_x_device))
|
|
406 {
|
|
407 Lisp_Object devcons, concons;
|
|
408 /* #### handle deleting last X device */
|
|
409 Vdefault_x_device = Qnil;
|
|
410 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
411 {
|
157
|
412 if (DEVICE_X_P (XDEVICE (XCAR (devcons))) &&
|
|
413 !EQ (device, XCAR (devcons)))
|
0
|
414 {
|
|
415 Vdefault_x_device = XCAR (devcons);
|
|
416 goto double_break;
|
|
417 }
|
|
418 }
|
|
419 }
|
|
420 double_break:
|
|
421 free_x_device_struct (d);
|
|
422 }
|
|
423
|
|
424
|
|
425 /************************************************************************/
|
|
426 /* handle X errors */
|
|
427 /************************************************************************/
|
|
428
|
|
429 static CONST char *events[] =
|
|
430 {
|
|
431 "0: ERROR!",
|
|
432 "1: REPLY",
|
|
433 "KeyPress",
|
|
434 "KeyRelease",
|
|
435 "ButtonPress",
|
|
436 "ButtonRelease",
|
|
437 "MotionNotify",
|
|
438 "EnterNotify",
|
|
439 "LeaveNotify",
|
|
440 "FocusIn",
|
|
441 "FocusOut",
|
|
442 "KeymapNotify",
|
|
443 "Expose",
|
|
444 "GraphicsExpose",
|
|
445 "NoExpose",
|
|
446 "VisibilityNotify",
|
|
447 "CreateNotify",
|
|
448 "DestroyNotify",
|
|
449 "UnmapNotify",
|
|
450 "MapNotify",
|
|
451 "MapRequest",
|
|
452 "ReparentNotify",
|
|
453 "ConfigureNotify",
|
|
454 "ConfigureRequest",
|
|
455 "GravityNotify",
|
|
456 "ResizeRequest",
|
|
457 "CirculateNotify",
|
|
458 "CirculateRequest",
|
|
459 "PropertyNotify",
|
|
460 "SelectionClear",
|
|
461 "SelectionRequest",
|
|
462 "SelectionNotify",
|
|
463 "ColormapNotify",
|
|
464 "ClientMessage",
|
|
465 "MappingNotify",
|
|
466 "LASTEvent"
|
|
467 };
|
|
468
|
|
469 CONST char *
|
|
470 x_event_name (int event_type)
|
|
471 {
|
|
472 if (event_type < 0) return 0;
|
|
473 if (event_type >= (sizeof (events) / sizeof (char *))) return 0;
|
|
474 return events [event_type];
|
|
475 }
|
|
476
|
|
477 /* Handling errors.
|
|
478
|
|
479 If an X error occurs which we are not expecting, we have no alternative
|
|
480 but to print it to stderr. It would be nice to stuff it into a pop-up
|
|
481 buffer, or to print it in the minibuffer, but that's not possible, because
|
|
482 one is not allowed to do any I/O on the display connection from an error
|
|
483 handler. The guts of Xlib expect these functions to either return or exit.
|
|
484
|
|
485 However, there are occasions when we might expect an error to reasonably
|
|
486 occur. The interface to this is as follows:
|
|
487
|
|
488 Before calling some X routine which may error, call
|
|
489 expect_x_error (dpy);
|
|
490
|
|
491 Just after calling the X routine, call either:
|
|
492
|
|
493 x_error_occurred_p (dpy);
|
|
494
|
|
495 to ask whether an error happened (and was ignored), or:
|
|
496
|
|
497 signal_if_x_error (dpy, resumable_p);
|
|
498
|
|
499 which will call Fsignal() with args appropriate to the X error, if there
|
|
500 was one. (Resumable_p is whether the debugger should be allowed to
|
|
501 continue from the call to signal.)
|
|
502
|
|
503 You must call one of these two routines immediately after calling the X
|
|
504 routine; think of them as bookends like BLOCK_INPUT and UNBLOCK_INPUT.
|
|
505 */
|
|
506
|
|
507 static int error_expected;
|
|
508 static int error_occurred;
|
|
509 static XErrorEvent last_error;
|
|
510
|
|
511 /* OVERKILL! */
|
|
512
|
|
513 #ifdef EXTERNAL_WIDGET
|
|
514 static Lisp_Object
|
|
515 x_error_handler_do_enqueue (Lisp_Object frame)
|
|
516 {
|
|
517 enqueue_magic_eval_event (io_error_delete_frame, frame);
|
|
518 return Qt;
|
|
519 }
|
|
520
|
|
521 static Lisp_Object
|
|
522 x_error_handler_error (Lisp_Object data, Lisp_Object dummy)
|
|
523 {
|
|
524 return Qnil;
|
|
525 }
|
|
526 #endif /* EXTERNAL_WIDGET */
|
|
527
|
|
528 int
|
|
529 x_error_handler (Display *disp, XErrorEvent *event)
|
|
530 {
|
|
531 if (error_expected)
|
|
532 {
|
|
533 error_expected = 0;
|
|
534 error_occurred = 1;
|
|
535 last_error = *event;
|
|
536 }
|
|
537 else
|
|
538 {
|
|
539 #ifdef EXTERNAL_WIDGET
|
|
540 struct frame *f;
|
|
541 struct device *d = get_device_from_display (disp);
|
|
542
|
|
543 if ((event->error_code == BadWindow ||
|
|
544 event->error_code == BadDrawable)
|
|
545 && ((f = x_any_window_to_frame (d, event->resourceid)) != 0))
|
|
546 {
|
|
547 Lisp_Object frame;
|
|
548
|
|
549 /* one of the windows comprising one of our frames has died.
|
|
550 This occurs particularly with ExternalShell frames when the
|
|
551 client that owns the ExternalShell's window dies.
|
|
552
|
|
553 We cannot do any I/O on the display connection so we need
|
|
554 to enqueue an eval event so that the deletion happens
|
|
555 later.
|
|
556
|
|
557 Furthermore, we need to trap any errors (out-of-memory) that
|
|
558 may occur when Fenqueue_eval_event is called.
|
|
559 */
|
|
560
|
|
561 if (f->being_deleted)
|
|
562 return 0;
|
|
563 XSETFRAME (frame, f);
|
|
564 if (!NILP (condition_case_1 (Qerror, x_error_handler_do_enqueue,
|
|
565 frame, x_error_handler_error, Qnil)))
|
|
566 {
|
|
567 f->being_deleted = 1;
|
|
568 f->visible = 0;
|
|
569 }
|
|
570 return 0;
|
|
571 }
|
|
572 #endif /* EXTERNAL_WIDGET */
|
|
573
|
|
574 stderr_out ("\n%s: ",
|
|
575 (STRINGP (Vinvocation_name)
|
14
|
576 ? (char *) XSTRING_DATA (Vinvocation_name)
|
0
|
577 : "xemacs"));
|
|
578 XmuPrintDefaultErrorMessage (disp, event, stderr);
|
|
579 }
|
|
580 return 0;
|
|
581 }
|
|
582
|
|
583 void
|
|
584 expect_x_error (Display *dpy)
|
|
585 {
|
|
586 assert (!error_expected);
|
|
587 XSync (dpy, 0); /* handle pending errors before setting flag */
|
|
588 error_expected = 1;
|
|
589 error_occurred = 0;
|
|
590 }
|
|
591
|
|
592 int
|
|
593 x_error_occurred_p (Display *dpy)
|
|
594 {
|
|
595 int val;
|
|
596 XSync (dpy, 0); /* handle pending errors before setting flag */
|
|
597 val = error_occurred;
|
|
598 error_expected = 0;
|
|
599 error_occurred = 0;
|
|
600 return val;
|
|
601 }
|
|
602
|
|
603 int
|
|
604 signal_if_x_error (Display *dpy, int resumable_p)
|
|
605 {
|
|
606 char buf[1024];
|
|
607 Lisp_Object data;
|
|
608 if (! x_error_occurred_p (dpy))
|
|
609 return 0;
|
|
610 data = Qnil;
|
|
611 sprintf (buf, "0x%X", (unsigned int) last_error.resourceid);
|
|
612 data = Fcons (build_string (buf), data);
|
|
613 {
|
|
614 char num [32];
|
|
615 sprintf (num, "%d", last_error.request_code);
|
|
616 XGetErrorDatabaseText (last_error.display, "XRequest", num, "",
|
|
617 buf, sizeof (buf));
|
|
618 if (! *buf)
|
|
619 sprintf (buf, "Request-%d", last_error.request_code);
|
|
620 data = Fcons (build_string (buf), data);
|
|
621 }
|
|
622 XGetErrorText (last_error.display, last_error.error_code, buf, sizeof (buf));
|
|
623 data = Fcons (build_string (buf), data);
|
|
624 again:
|
|
625 Fsignal (Qx_error, data);
|
|
626 if (! resumable_p) goto again;
|
|
627 return 1;
|
|
628 }
|
|
629
|
|
630 int
|
|
631 x_IO_error_handler (Display *disp)
|
|
632 {
|
|
633 /* This function can GC */
|
|
634 Lisp_Object dev;
|
114
|
635 struct device *d = get_device_from_display_1 (disp);
|
|
636
|
|
637 if (d)
|
|
638 XSETDEVICE (dev, d);
|
|
639 else
|
|
640 dev = Qnil;
|
0
|
641
|
|
642 if (NILP (find_nonminibuffer_frame_not_on_device (dev)))
|
|
643 {
|
|
644 /* We're going down. */
|
|
645 stderr_out
|
|
646 ("\n%s: Fatal I/O Error %d (%s) on display connection \"%s\"\n",
|
|
647 (STRINGP (Vinvocation_name) ?
|
14
|
648 (char *) XSTRING_DATA (Vinvocation_name) : "xemacs"),
|
0
|
649 errno, strerror (errno), DisplayString (disp));
|
|
650 stderr_out
|
|
651 (" after %lu requests (%lu known processed) with %d events remaining.\n",
|
|
652 NextRequest (disp) - 1, LastKnownRequestProcessed (disp),
|
|
653 QLength (disp));
|
|
654 /* assert (!_Xdebug); */
|
|
655 }
|
|
656 else
|
|
657 {
|
|
658 warn_when_safe
|
|
659 (Qx, Qcritical,
|
|
660 "I/O Error %d (%s) on display connection \"%s\"\n"
|
|
661 " after %lu requests (%lu known processed) with "
|
|
662 "%d events remaining.\n",
|
|
663 errno, strerror (errno), DisplayString (disp),
|
|
664 NextRequest (disp) - 1, LastKnownRequestProcessed (disp),
|
|
665 QLength (disp));
|
|
666 }
|
|
667
|
114
|
668 if (d)
|
|
669 enqueue_magic_eval_event (io_error_delete_device, dev);
|
0
|
670
|
167
|
671 /* CvE, July 16, 1996, XEmacs 19.14 */
|
|
672 /* Test for broken pipe error, which indicates X-server has gone down */
|
|
673 if (errno == EPIPE && x_seppuku_on_epipe)
|
|
674 {
|
|
675 /* Most probably X-server has gone down: Avoid infinite loop by just */
|
|
676 /* exiting */
|
|
677 /* slb: This sounds really, really dangerous to do by default, so */
|
|
678 /* I'm adding a guard to avoid doing this as default behavior */
|
|
679 stderr_out( "\n\nXEmacs exiting on broken pipe (errno %d, %s)\n",
|
|
680 errno, strerror(errno));
|
|
681 exit(errno);
|
|
682 }
|
|
683
|
0
|
684 return 0;
|
|
685 }
|
|
686
|
20
|
687 DEFUN ("x-debug-mode", Fx_debug_mode, 1, 2, 0, /*
|
0
|
688 With a true arg, make the connection to the X server synchronous.
|
|
689 With false, make it asynchronous. Synchronous connections are much slower,
|
|
690 but are useful for debugging. (If you get X errors, make the connection
|
|
691 synchronous, and use a debugger to set a breakpoint on `x_error_handler'.
|
|
692 Your backtrace of the C stack will now be useful. In asynchronous mode,
|
|
693 the stack above `x_error_handler' isn't helpful because of buffering.)
|
|
694 If DEVICE is not specified, the selected device is assumed.
|
|
695
|
|
696 Calling this function is the same as calling the C function `XSynchronize',
|
|
697 or starting the program with the `-sync' command line argument.
|
20
|
698 */
|
|
699 (arg, device))
|
0
|
700 {
|
|
701 struct device *d = decode_x_device (device);
|
|
702
|
|
703 XSynchronize (DEVICE_X_DISPLAY (d), !NILP (arg));
|
|
704
|
|
705 if (!NILP (arg))
|
|
706 message ("X connection is synchronous");
|
|
707 else
|
|
708 message ("X connection is asynchronous");
|
|
709
|
|
710 return arg;
|
|
711 }
|
|
712
|
|
713
|
|
714 /************************************************************************/
|
|
715 /* X resources */
|
|
716 /************************************************************************/
|
|
717
|
|
718 #if 0 /* bah humbug. The whole "widget == resource" stuff is such
|
|
719 a crock of shit that I'm just going to ignore it all. */
|
|
720
|
|
721 /* If widget is NULL, we are retrieving device or global face data. */
|
|
722
|
|
723 static void
|
|
724 construct_name_list (Display *display, Widget widget, char *fake_name,
|
|
725 char *fake_class, char *name, char *class)
|
|
726 {
|
|
727 char *stack [100][2];
|
|
728 Widget this;
|
|
729 int count = 0;
|
|
730 char *name_tail, *class_tail;
|
|
731
|
|
732 if (widget)
|
|
733 {
|
|
734 for (this = widget; this; this = XtParent (this))
|
|
735 {
|
|
736 stack [count][0] = this->core.name;
|
|
737 stack [count][1] = XtClass (this)->core_class.class_name;
|
|
738 count++;
|
|
739 }
|
|
740 count--;
|
|
741 }
|
|
742 else if (fake_name && fake_class)
|
|
743 {
|
|
744 stack [count][0] = fake_name;
|
|
745 stack [count][1] = fake_class;
|
|
746 count++;
|
|
747 }
|
|
748
|
|
749 /* The root widget is an application shell; resource lookups use the
|
|
750 specified application name and application class in preference to
|
|
751 the name/class of that widget (which is argv[0] / "ApplicationShell").
|
|
752 Generally the app name and class will be argv[0] / "Emacs" but
|
|
753 the former can be set via the -name command-line option, and the
|
|
754 latter can be set by changing `x-emacs-application-class' in
|
|
755 lisp/term/x-win.el.
|
|
756 */
|
|
757 XtGetApplicationNameAndClass (display,
|
|
758 &stack [count][0],
|
|
759 &stack [count][1]);
|
|
760
|
|
761 name [0] = 0;
|
|
762 class [0] = 0;
|
|
763
|
|
764 name_tail = name;
|
|
765 class_tail = class;
|
|
766 for (; count >= 0; count--)
|
|
767 {
|
|
768 strcat (name_tail, stack [count][0]);
|
|
769 for (; *name_tail; name_tail++)
|
|
770 if (*name_tail == '.') *name_tail = '_';
|
|
771 strcat (name_tail, ".");
|
|
772 name_tail++;
|
|
773
|
|
774 strcat (class_tail, stack [count][1]);
|
|
775 for (; *class_tail; class_tail++)
|
|
776 if (*class_tail == '.') *class_tail = '_';
|
|
777 strcat (class_tail, ".");
|
|
778 class_tail++;
|
|
779 }
|
|
780 }
|
|
781
|
183
|
782 #endif /* 0 */
|
0
|
783
|
|
784 /* Only the characters [-_A-Za-z0-9] are allowed in the individual
|
|
785 sections of a resource. Convert invalid characters to -. */
|
|
786
|
|
787 static void
|
|
788 validify_resource_string (char *str)
|
|
789 {
|
|
790 while (*str)
|
|
791 {
|
|
792 if (!strchr ("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
793 "abcdefghijklmnopqrstuvwxyz"
|
|
794 "0123456789-_", *str))
|
|
795 *str = '-';
|
|
796 str++;
|
|
797 }
|
|
798 }
|
|
799
|
|
800 /* Given a locale and device specification from x-get-resource or
|
|
801 x-get-resource-prefix, return the resource prefix and display to
|
|
802 fetch the resource on. */
|
|
803
|
|
804 static void
|
|
805 x_get_resource_prefix (Lisp_Object locale, Lisp_Object device,
|
|
806 Display **display_out, char *name_out,
|
|
807 char *class_out)
|
|
808 {
|
|
809 char *appname, *appclass;
|
|
810
|
|
811 if (NILP (locale))
|
|
812 locale = Qglobal;
|
|
813 if (NILP (Fvalid_specifier_locale_p (locale)))
|
|
814 signal_simple_error ("Invalid locale", locale);
|
|
815 if (WINDOWP (locale))
|
|
816 /* #### I can't come up with any coherent way of naming windows.
|
|
817 By relative position? That seems tricky because windows
|
|
818 can change position, be split, etc. By order of creation?
|
|
819 That seems less than useful. */
|
|
820 signal_simple_error ("Windows currently can't be resourced", locale);
|
|
821
|
|
822 if (!NILP (device) && !DEVICEP (device))
|
|
823 CHECK_DEVICE (device);
|
|
824 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device)))
|
|
825 device = Qnil;
|
|
826 if (NILP (device))
|
|
827 {
|
|
828 device = DFW_DEVICE (locale);
|
|
829 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device)))
|
|
830 device = Qnil;
|
|
831 if (NILP (device))
|
|
832 device = Vdefault_x_device;
|
|
833 if (NILP (device))
|
|
834 {
|
|
835 *display_out = 0;
|
|
836 return;
|
|
837 }
|
|
838 }
|
|
839
|
|
840 *display_out = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
841
|
|
842 XtGetApplicationNameAndClass (*display_out, &appname, &appclass);
|
|
843 strcpy (name_out, appname);
|
|
844 strcpy (class_out, appclass);
|
|
845 validify_resource_string (name_out);
|
|
846 validify_resource_string (class_out);
|
|
847
|
|
848 if (EQ (locale, Qglobal))
|
|
849 return;
|
|
850 if (BUFFERP (locale))
|
|
851 {
|
|
852 strcat (name_out, ".buffer.");
|
|
853 /* we know buffer is live; otherwise we got an error above. */
|
14
|
854 strcat (name_out, (CONST char *) XSTRING_DATA (Fbuffer_name (locale)));
|
0
|
855 strcat (class_out, ".EmacsLocaleType.EmacsBuffer");
|
|
856 }
|
|
857 else if (FRAMEP (locale))
|
|
858 {
|
|
859 strcat (name_out, ".frame.");
|
|
860 /* we know frame is live; otherwise we got an error above. */
|
14
|
861 strcat (name_out, (CONST char *) XSTRING_DATA (Fframe_name (locale)));
|
0
|
862 strcat (class_out, ".EmacsLocaleType.EmacsFrame");
|
|
863 }
|
|
864 else
|
|
865 {
|
|
866 assert (DEVICEP (locale));
|
|
867 strcat (name_out, ".device.");
|
|
868 /* we know device is live; otherwise we got an error above. */
|
14
|
869 strcat (name_out, (CONST char *) XSTRING_DATA (Fdevice_name (locale)));
|
0
|
870 strcat (class_out, ".EmacsLocaleType.EmacsDevice");
|
|
871 }
|
|
872 return;
|
|
873 }
|
|
874
|
20
|
875 DEFUN ("x-get-resource", Fx_get_resource, 3, 6, 0, /*
|
0
|
876 Retrieve an X resource from the resource manager.
|
|
877
|
183
|
878 The first arg is the name of the resource to retrieve, such as "font".
|
|
879 The second arg is the class of the resource to retrieve, like "Font".
|
0
|
880 The third arg should be one of the symbols 'string, 'integer, 'natnum, or
|
|
881 'boolean, specifying the type of object that the database is searched for.
|
|
882 The fourth arg is the locale to search for the resources on, and can
|
|
883 currently be a a buffer, a frame, a device, or 'global. If omitted, it
|
|
884 defaults to 'global.
|
|
885 The fifth arg is the device to search for the resources on. (The resource
|
|
886 database for a particular device is constructed by combining non-device-
|
183
|
887 specific resources such as any command-line resources specified and any
|
0
|
888 app-defaults files found [or the fallback resources supplied by XEmacs,
|
|
889 if no app-defaults file is found] with device-specific resources such as
|
|
890 those supplied using xrdb.) If omitted, it defaults to the device of
|
|
891 LOCALE, if a device can be derived (i.e. if LOCALE is a frame or device),
|
|
892 and otherwise defaults to the value of `default-x-device'.
|
|
893 The sixth arg NOERROR, if non-nil, means do not signal an error if a
|
|
894 bogus resource specification was retrieved (e.g. if a non-integer was
|
|
895 given when an integer was requested). In this case, a warning is issued
|
|
896 instead.
|
|
897
|
|
898 The resource names passed to this function are looked up relative to the
|
|
899 locale.
|
|
900
|
|
901 If you want to search for a subresource, you just need to specify the
|
|
902 resource levels in NAME and CLASS. For example, NAME could be
|
183
|
903 "modeline.attributeFont", and CLASS "Face.AttributeFont".
|
0
|
904
|
|
905 Specifically,
|
|
906
|
|
907 1) If LOCALE is a buffer, a call
|
|
908
|
183
|
909 (x-get-resource "foreground" "Foreground" 'string SOME-BUFFER)
|
0
|
910
|
|
911 is an interface to a C call something like
|
|
912
|
183
|
913 XrmGetResource (db, "xemacs.buffer.BUFFER-NAME.foreground",
|
|
914 "Emacs.EmacsLocaleType.EmacsBuffer.Foreground",
|
|
915 "String");
|
0
|
916
|
|
917 2) If LOCALE is a frame, a call
|
|
918
|
183
|
919 (x-get-resource "foreground" "Foreground" 'string SOME-FRAME)
|
0
|
920
|
|
921 is an interface to a C call something like
|
|
922
|
183
|
923 XrmGetResource (db, "xemacs.frame.FRAME-NAME.foreground",
|
|
924 "Emacs.EmacsLocaleType.EmacsFrame.Foreground",
|
|
925 "String");
|
0
|
926
|
|
927 3) If LOCALE is a device, a call
|
|
928
|
183
|
929 (x-get-resource "foreground" "Foreground" 'string SOME-DEVICE)
|
0
|
930
|
|
931 is an interface to a C call something like
|
|
932
|
183
|
933 XrmGetResource (db, "xemacs.device.DEVICE-NAME.foreground",
|
|
934 "Emacs.EmacsLocaleType.EmacsDevice.Foreground",
|
|
935 "String");
|
0
|
936
|
|
937 4) If LOCALE is 'global, a call
|
|
938
|
183
|
939 (x-get-resource "foreground" "Foreground" 'string 'global)
|
0
|
940
|
|
941 is an interface to a C call something like
|
|
942
|
183
|
943 XrmGetResource (db, "xemacs.foreground",
|
|
944 "Emacs.Foreground",
|
|
945 "String");
|
0
|
946
|
|
947 Note that for 'global, no prefix is added other than that of the
|
|
948 application itself; thus, you can use this locale to retrieve
|
|
949 arbitrary application resources, if you really want to.
|
|
950
|
|
951 The returned value of this function is nil if the queried resource is not
|
|
952 found. If the third arg is `string', a string is returned, and if it is
|
|
953 `integer', an integer is returned. If the third arg is `boolean', then the
|
|
954 returned value is the list (t) for true, (nil) for false, and is nil to
|
|
955 mean ``unspecified.''
|
20
|
956 */
|
|
957 (name, class, type, locale, device, no_error))
|
0
|
958 {
|
|
959 /* #### fixed limit, could be overflowed */
|
|
960 char name_string[2048], class_string[2048];
|
|
961 char *raw_result;
|
|
962 XrmDatabase db;
|
|
963 Display *display;
|
|
964 Error_behavior errb = decode_error_behavior_flag (no_error);
|
|
965
|
|
966 CHECK_STRING (name);
|
|
967 CHECK_STRING (class);
|
|
968 CHECK_SYMBOL (type);
|
|
969
|
183
|
970 if (!EQ (type, Qstring) &&
|
|
971 !EQ (type, Qboolean) &&
|
|
972 !EQ (type, Qinteger) &&
|
|
973 !EQ (type, Qnatnum))
|
0
|
974 return maybe_signal_continuable_error
|
|
975 (Qwrong_type_argument,
|
|
976 list2 (build_translated_string
|
|
977 ("should be string, integer, natnum or boolean"),
|
|
978 type),
|
|
979 Qresource, errb);
|
|
980
|
|
981 x_get_resource_prefix (locale, device, &display, name_string,
|
|
982 class_string);
|
|
983 if (!display)
|
|
984 return Qnil;
|
|
985
|
|
986 db = XtDatabase (display);
|
|
987
|
|
988 strcat (name_string, ".");
|
14
|
989 strcat (name_string, (CONST char *) XSTRING_DATA (name));
|
0
|
990 strcat (class_string, ".");
|
14
|
991 strcat (class_string, (CONST char *) XSTRING_DATA (class));
|
0
|
992
|
|
993 {
|
|
994 XrmValue xrm_value;
|
|
995 XrmName namelist[100];
|
|
996 XrmClass classlist[100];
|
|
997 XrmName *namerest = namelist;
|
|
998 XrmClass *classrest = classlist;
|
|
999 XrmRepresentation xrm_type;
|
|
1000 XrmRepresentation string_quark;
|
|
1001 int result;
|
|
1002 XrmStringToNameList (name_string, namelist);
|
|
1003 XrmStringToClassList (class_string, classlist);
|
|
1004 string_quark = XrmStringToQuark ("String");
|
|
1005
|
|
1006 /* ensure that they have the same length */
|
|
1007 while (namerest[0] && classrest[0])
|
|
1008 namerest++, classrest++;
|
|
1009 if (namerest[0] || classrest[0])
|
|
1010 signal_simple_error_2
|
|
1011 ("class list and name list must be the same length", name, class);
|
|
1012 result = XrmQGetResource (db, namelist, classlist, &xrm_type, &xrm_value);
|
|
1013
|
|
1014 if (result != True || xrm_type != string_quark)
|
|
1015 return Qnil;
|
|
1016 raw_result = (char *) xrm_value.addr;
|
|
1017 }
|
|
1018
|
|
1019 if (EQ (type, Qstring))
|
|
1020 return build_string (raw_result);
|
|
1021 else if (EQ (type, Qboolean))
|
|
1022 {
|
183
|
1023 if (!strcasecmp (raw_result, "off") ||
|
0
|
1024 !strcasecmp (raw_result, "false") ||
|
183
|
1025 !strcasecmp (raw_result, "no"))
|
0
|
1026 return Fcons (Qnil, Qnil);
|
183
|
1027 else if (!strcasecmp (raw_result, "on") ||
|
0
|
1028 !strcasecmp (raw_result, "true") ||
|
|
1029 !strcasecmp (raw_result, "yes"))
|
|
1030 return Fcons (Qt, Qnil);
|
|
1031 else
|
|
1032 return maybe_continuable_error (Qresource, errb,
|
|
1033 "can't convert %s: %s to a Boolean",
|
|
1034 name_string, raw_result);
|
|
1035 }
|
|
1036 else if (EQ (type, Qinteger) || EQ (type, Qnatnum))
|
|
1037 {
|
|
1038 int i;
|
|
1039 char c;
|
|
1040 if (1 != sscanf (raw_result, "%d%c", &i, &c))
|
|
1041 return maybe_continuable_error
|
|
1042 (Qresource, errb,
|
|
1043 "can't convert %s: %s to an integer",
|
|
1044 name_string, raw_result);
|
|
1045 else if (EQ (type, Qnatnum) && i < 0)
|
|
1046 return maybe_continuable_error
|
|
1047 (Qresource, errb,
|
|
1048 "invalid numerical value %d for resource %s",
|
|
1049 i, name_string);
|
|
1050 else
|
|
1051 return make_int (i);
|
|
1052 }
|
|
1053 else
|
|
1054 abort ();
|
|
1055
|
|
1056 /* Can't get here. */
|
|
1057 return Qnil; /* shut up compiler */
|
|
1058 }
|
|
1059
|
20
|
1060 DEFUN ("x-get-resource-prefix", Fx_get_resource_prefix, 1, 2, 0, /*
|
0
|
1061 Return the resource prefix for LOCALE on DEVICE.
|
|
1062 The resource prefix is the strings used to prefix resources if
|
|
1063 the LOCALE and DEVICE arguments were passed to `x-get-resource'.
|
|
1064 The returned value is a cons of a name prefix and a class prefix.
|
|
1065 For example, if LOCALE is a frame, the returned value might be
|
183
|
1066 \("xemacs.frame.FRAME-NAME" . "Emacs.EmacsLocaleType.EmacsFrame").
|
0
|
1067 If no valid X device for resourcing can be obtained, this function
|
|
1068 returns nil. (In such a case, `x-get-resource' would always return nil.)
|
20
|
1069 */
|
|
1070 (locale, device))
|
0
|
1071 {
|
|
1072 /* #### fixed limit, could be overflowed */
|
|
1073 char name[1024], class[1024];
|
|
1074 Display *display;
|
|
1075
|
|
1076 x_get_resource_prefix (locale, device, &display, name, class);
|
|
1077 if (!display)
|
|
1078 return Qnil;
|
|
1079 return Fcons (build_string (name), build_string (class));
|
|
1080 }
|
|
1081
|
20
|
1082 DEFUN ("x-put-resource", Fx_put_resource, 1, 2, 0, /*
|
0
|
1083 Add a resource to the resource database for DEVICE.
|
|
1084 RESOURCE-LINE specifies the resource to add and should be a
|
|
1085 standard resource specification.
|
20
|
1086 */
|
|
1087 (resource_line, device))
|
0
|
1088 {
|
|
1089 struct device *d = decode_device (device);
|
|
1090 char *str, *colon_pos;
|
|
1091
|
|
1092 CHECK_STRING (resource_line);
|
14
|
1093 str = (char *) XSTRING_DATA (resource_line);
|
0
|
1094 if (!(colon_pos = strchr (str, ':')) || strchr (str, '\n'))
|
|
1095 invalid:
|
|
1096 signal_simple_error ("Invalid resource line", resource_line);
|
|
1097 if (strspn (str,
|
|
1098 /* Only the following chars are allowed before the colon */
|
|
1099 " \t.*?abcdefghijklmnopqrstuvwxyz"
|
|
1100 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-") != colon_pos - str)
|
|
1101 goto invalid;
|
|
1102
|
|
1103 if (DEVICE_X_P (d))
|
|
1104 {
|
|
1105 XrmDatabase db = XtDatabase (DEVICE_X_DISPLAY (d));
|
|
1106 XrmPutLineResource (&db, str);
|
|
1107 }
|
|
1108
|
|
1109 return Qnil;
|
|
1110 }
|
|
1111
|
|
1112
|
|
1113 /************************************************************************/
|
|
1114 /* display information functions */
|
|
1115 /************************************************************************/
|
|
1116
|
20
|
1117 DEFUN ("default-x-device", Fdefault_x_device, 0, 0, 0, /*
|
0
|
1118 Return the default X device for resourcing.
|
|
1119 This is the first-created X device that still exists.
|
20
|
1120 */
|
|
1121 ())
|
0
|
1122 {
|
|
1123 return Vdefault_x_device;
|
|
1124 }
|
|
1125
|
20
|
1126 DEFUN ("x-display-visual-class", Fx_display_visual_class, 0, 1, 0, /*
|
0
|
1127 Return the visual class of the X display `device' is on.
|
|
1128 The returned value will be one of the symbols `static-gray', `gray-scale',
|
|
1129 `static-color', `pseudo-color', `true-color', or `direct-color'.
|
20
|
1130 */
|
|
1131 (device))
|
0
|
1132 {
|
|
1133 switch (DefaultVisualOfScreen
|
|
1134 (DefaultScreenOfDisplay (get_x_display (device)))->class)
|
|
1135 {
|
|
1136 case StaticGray: return (intern ("static-gray"));
|
|
1137 case GrayScale: return (intern ("gray-scale"));
|
|
1138 case StaticColor: return (intern ("static-color"));
|
|
1139 case PseudoColor: return (intern ("pseudo-color"));
|
|
1140 case TrueColor: return (intern ("true-color"));
|
|
1141 case DirectColor: return (intern ("direct-color"));
|
|
1142 default:
|
|
1143 error ("display has an unknown visual class");
|
|
1144 }
|
|
1145
|
|
1146 return Qnil; /* suppress compiler warning */
|
|
1147 }
|
|
1148
|
|
1149 static int
|
|
1150 x_device_pixel_width (struct device *d)
|
|
1151 {
|
|
1152 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1153
|
|
1154 return DisplayWidth (dpy, DefaultScreen (dpy));
|
|
1155 }
|
|
1156
|
|
1157 static int
|
|
1158 x_device_pixel_height (struct device *d)
|
|
1159 {
|
|
1160 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1161
|
|
1162 return DisplayHeight (dpy, DefaultScreen (dpy));
|
|
1163 }
|
|
1164
|
|
1165 static int
|
|
1166 x_device_mm_width (struct device *d)
|
|
1167 {
|
|
1168 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1169
|
|
1170 return DisplayWidthMM (dpy, DefaultScreen (dpy));
|
|
1171 }
|
|
1172
|
|
1173 static int
|
|
1174 x_device_mm_height (struct device *d)
|
|
1175 {
|
|
1176 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1177
|
|
1178 return DisplayHeightMM (dpy, DefaultScreen (dpy));
|
|
1179 }
|
|
1180
|
|
1181 static int
|
|
1182 x_device_bitplanes (struct device *d)
|
|
1183 {
|
|
1184 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1185
|
|
1186 return DisplayPlanes (dpy, DefaultScreen (dpy));
|
|
1187 }
|
|
1188
|
|
1189 static int
|
|
1190 x_device_color_cells (struct device *d)
|
|
1191 {
|
|
1192 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1193
|
|
1194 return DisplayCells (dpy, DefaultScreen (dpy));
|
|
1195 }
|
|
1196
|
20
|
1197 DEFUN ("x-server-vendor", Fx_server_vendor, 0, 1, 0, /*
|
0
|
1198 Return the vendor ID string of the X server `device' on.
|
20
|
1199 */
|
|
1200 (device))
|
0
|
1201 {
|
|
1202 Display *dpy = get_x_display (device);
|
|
1203 char *vendor = ServerVendor (dpy);
|
|
1204
|
183
|
1205 return build_string (vendor ? vendor : "");
|
0
|
1206 }
|
|
1207
|
20
|
1208 DEFUN ("x-server-version", Fx_server_version, 0, 1, 0, /*
|
0
|
1209 Return the version numbers of the X server `device' is on.
|
|
1210 The returned value is a list of three integers: the major and minor
|
|
1211 version numbers of the X Protocol in use, and the vendor-specific release
|
|
1212 number. See also `x-server-vendor'.
|
20
|
1213 */
|
|
1214 (device))
|
0
|
1215 {
|
|
1216 Display *dpy = get_x_display (device);
|
|
1217
|
187
|
1218 return list3 (make_int (ProtocolVersion (dpy)),
|
0
|
1219 make_int (ProtocolRevision (dpy)),
|
187
|
1220 make_int (VendorRelease (dpy)));
|
0
|
1221 }
|
|
1222
|
20
|
1223 DEFUN ("x-valid-keysym-name-p", Fx_valid_keysym_name_p, 1, 1, 0, /*
|
0
|
1224 Return true if KEYSYM names a keysym that the X library knows about.
|
|
1225 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
|
|
1226 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
|
20
|
1227 */
|
|
1228 (keysym))
|
0
|
1229 {
|
|
1230 CONST char *keysym_ext;
|
183
|
1231
|
0
|
1232 CHECK_STRING (keysym);
|
|
1233 GET_C_STRING_CTEXT_DATA_ALLOCA (keysym, keysym_ext);
|
183
|
1234
|
|
1235 return XStringToKeysym (keysym_ext) ? Qt : Qnil;
|
0
|
1236 }
|
|
1237
|
187
|
1238 DEFUN ("x-keysym-hashtable", Fx_keysym_hashtable, 0, 1, 0, /*
|
|
1239 Return a hashtable which contains a hash key for all keysyms which
|
|
1240 name keys on the keyboard. See `x-keysym-on-keyboard-p'.
|
|
1241 */
|
|
1242 (device))
|
|
1243 {
|
|
1244 struct device *d = decode_device (device);
|
|
1245 if (!DEVICE_X_P (d))
|
|
1246 signal_simple_error ("Not an X device", device);
|
|
1247
|
|
1248 return DEVICE_X_DATA (d)->x_keysym_map_hashtable;
|
|
1249 }
|
|
1250
|
|
1251 DEFUN ("x-keysym-on-keyboard-sans-modifiers-p",
|
|
1252 Fx_keysym_on_keyboard_sans_modifiers_p, 1, 2, 0, /*
|
0
|
1253 Return true if KEYSYM names a key on the keyboard of DEVICE.
|
|
1254 More precisely, return true if pressing a physical key
|
|
1255 on the keyboard of DEVICE without any modifier keys generates KEYSYM.
|
|
1256 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
|
|
1257 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
|
20
|
1258 */
|
|
1259 (keysym, device))
|
0
|
1260 {
|
187
|
1261 struct device *d = decode_device (device);
|
|
1262 if (!DEVICE_X_P (d))
|
|
1263 signal_simple_error ("Not an X device", device);
|
|
1264 CHECK_STRING (keysym);
|
|
1265
|
|
1266 return (EQ (Qsans_modifiers,
|
|
1267 Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASHTABLE (d), Qnil)) ?
|
|
1268 Qt : Qnil);
|
|
1269 }
|
|
1270
|
|
1271
|
|
1272 DEFUN ("x-keysym-on-keyboard-p", Fx_keysym_on_keyboard_p, 1, 2, 0, /*
|
|
1273 Return true if KEYSYM names a key on the keyboard of DEVICE.
|
|
1274 More precisely, return true if some keystroke (possibly including modifiers)
|
|
1275 on the keyboard of DEVICE keys generates KEYSYM.
|
|
1276 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
|
|
1277 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
|
|
1278 */
|
|
1279 (keysym, device))
|
|
1280 {
|
|
1281 struct device *d = decode_device (device);
|
183
|
1282
|
0
|
1283 if (!DEVICE_X_P (d))
|
|
1284 signal_simple_error ("Not an X device", device);
|
|
1285 CHECK_STRING (keysym);
|
183
|
1286
|
187
|
1287 return (NILP (Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASHTABLE (d), Qnil)) ?
|
|
1288 Qnil : Qt);
|
0
|
1289 }
|
|
1290
|
|
1291
|
|
1292 /************************************************************************/
|
|
1293 /* grabs and ungrabs */
|
|
1294 /************************************************************************/
|
|
1295
|
20
|
1296 DEFUN ("x-grab-pointer", Fx_grab_pointer, 0, 3, 0, /*
|
0
|
1297 Grab the pointer and restrict it to its current window.
|
|
1298 If optional DEVICE argument is nil, the default device will be used.
|
|
1299 If optional CURSOR argument is non-nil, change the pointer shape to that
|
|
1300 until `x-ungrab-pointer' is called (it should be an object returned by the
|
|
1301 `make-cursor-glyph' function).
|
|
1302 If the second optional argument IGNORE-KEYBOARD is non-nil, ignore all
|
|
1303 keyboard events during the grab.
|
|
1304 Returns t if the grab is successful, nil otherwise.
|
20
|
1305 */
|
|
1306 (device, cursor, ignore_keyboard))
|
0
|
1307 {
|
|
1308 Window w;
|
|
1309 int pointer_mode, result;
|
|
1310 struct device *d = decode_x_device (device);
|
|
1311
|
|
1312 if (!NILP (cursor))
|
|
1313 {
|
|
1314 CHECK_POINTER_GLYPH (cursor);
|
|
1315 cursor = glyph_image_instance (cursor, device, ERROR_ME, 0);
|
|
1316 }
|
|
1317
|
|
1318 if (!NILP (ignore_keyboard))
|
|
1319 pointer_mode = GrabModeSync;
|
|
1320 else
|
|
1321 pointer_mode = GrabModeAsync;
|
|
1322
|
|
1323 w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d)));
|
|
1324
|
|
1325 /* #### Possibly this needs to gcpro the cursor somehow, but it doesn't
|
|
1326 seem to cause a problem if XFreeCursor is called on a cursor in use
|
|
1327 in a grab; I suppose the X server counts the grab as a reference
|
|
1328 and doesn't free it until it exits? */
|
|
1329 result = XGrabPointer (DEVICE_X_DISPLAY (d), w,
|
|
1330 False,
|
|
1331 ButtonMotionMask | ButtonPressMask
|
|
1332 | ButtonReleaseMask | PointerMotionHintMask,
|
|
1333 GrabModeAsync, /* Keep pointer events flowing */
|
|
1334 pointer_mode, /* Stall keyboard events */
|
|
1335 w, /* Stay in this window */
|
|
1336 (NILP (cursor) ? 0
|
|
1337 : XIMAGE_INSTANCE_X_CURSOR (cursor)),
|
|
1338 CurrentTime);
|
183
|
1339 return (result == GrabSuccess) ? Qt : Qnil;
|
0
|
1340 }
|
|
1341
|
20
|
1342 DEFUN ("x-ungrab-pointer", Fx_ungrab_pointer, 0, 1, 0, /*
|
0
|
1343 Release a pointer grab made with `x-grab-pointer'.
|
|
1344 If optional first arg DEVICE is nil the default device is used.
|
|
1345 If it is t the pointer will be released on all X devices.
|
20
|
1346 */
|
|
1347 (device))
|
0
|
1348 {
|
|
1349 if (!EQ (device, Qt))
|
|
1350 {
|
|
1351 Display *dpy = get_x_display (device);
|
|
1352 XUngrabPointer (dpy, CurrentTime);
|
|
1353 }
|
|
1354 else
|
|
1355 {
|
|
1356 Lisp_Object devcons, concons;
|
|
1357
|
|
1358 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1359 {
|
|
1360 struct device *d = XDEVICE (XCAR (devcons));
|
|
1361
|
|
1362 if (DEVICE_X_P (d))
|
|
1363 XUngrabPointer (DEVICE_X_DISPLAY (d), CurrentTime);
|
|
1364 }
|
|
1365 }
|
|
1366
|
|
1367 return Qnil;
|
|
1368 }
|
|
1369
|
20
|
1370 DEFUN ("x-grab-keyboard", Fx_grab_keyboard, 0, 1, 0, /*
|
0
|
1371 Grab the keyboard on the given device (defaulting to the selected one).
|
|
1372 So long as the keyboard is grabbed, all keyboard events will be delivered
|
|
1373 to emacs -- it is not possible for other X clients to eavesdrop on them.
|
|
1374 Ungrab the keyboard with `x-ungrab-keyboard' (use an unwind-protect).
|
|
1375 Returns t if the grab was successful; nil otherwise.
|
20
|
1376 */
|
|
1377 (device))
|
0
|
1378 {
|
|
1379 struct device *d = decode_x_device (device);
|
|
1380 Window w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d)));
|
|
1381 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1382 Status status;
|
|
1383 XSync (dpy, False);
|
|
1384 status = XGrabKeyboard (dpy, w, True,
|
|
1385 /* I don't really understand sync-vs-async
|
|
1386 grabs, but this is what xterm does. */
|
|
1387 GrabModeAsync, GrabModeAsync,
|
|
1388 /* Use the timestamp of the last user action
|
|
1389 read by emacs proper; xterm uses CurrentTime
|
|
1390 but there's a comment that says "wrong"...
|
|
1391 (Despite the name this is the time of the
|
|
1392 last key or mouse event.) */
|
|
1393 DEVICE_X_MOUSE_TIMESTAMP (d));
|
|
1394 if (status == GrabSuccess)
|
|
1395 {
|
|
1396 /* The XUngrabKeyboard should generate a FocusIn back to this
|
|
1397 window but it doesn't unless we explicitly set focus to the
|
|
1398 window first (which should already have it. The net result
|
|
1399 is that without this call when x-ungrab-keyboard is called
|
|
1400 the selected frame ends up not having focus. */
|
|
1401 XSetInputFocus (dpy, w, RevertToParent, DEVICE_X_MOUSE_TIMESTAMP (d));
|
|
1402 return Qt;
|
|
1403 }
|
|
1404 else
|
|
1405 return Qnil;
|
|
1406 }
|
|
1407
|
20
|
1408 DEFUN ("x-ungrab-keyboard", Fx_ungrab_keyboard, 0, 1, 0, /*
|
0
|
1409 Release a keyboard grab made with `x-grab-keyboard'.
|
20
|
1410 */
|
|
1411 (device))
|
0
|
1412 {
|
|
1413 Display *dpy = get_x_display (device);
|
|
1414 XUngrabKeyboard (dpy, CurrentTime);
|
|
1415 return Qnil;
|
|
1416 }
|
|
1417
|
|
1418
|
|
1419 /************************************************************************/
|
|
1420 /* initialization */
|
|
1421 /************************************************************************/
|
|
1422
|
|
1423 void
|
|
1424 syms_of_device_x (void)
|
|
1425 {
|
20
|
1426 DEFSUBR (Fx_debug_mode);
|
|
1427 DEFSUBR (Fx_get_resource);
|
|
1428 DEFSUBR (Fx_get_resource_prefix);
|
|
1429 DEFSUBR (Fx_put_resource);
|
0
|
1430
|
20
|
1431 DEFSUBR (Fdefault_x_device);
|
|
1432 DEFSUBR (Fx_display_visual_class);
|
|
1433 DEFSUBR (Fx_server_vendor);
|
|
1434 DEFSUBR (Fx_server_version);
|
|
1435 DEFSUBR (Fx_valid_keysym_name_p);
|
187
|
1436 DEFSUBR (Fx_keysym_hashtable);
|
20
|
1437 DEFSUBR (Fx_keysym_on_keyboard_p);
|
187
|
1438 DEFSUBR (Fx_keysym_on_keyboard_sans_modifiers_p);
|
0
|
1439
|
20
|
1440 DEFSUBR (Fx_grab_pointer);
|
|
1441 DEFSUBR (Fx_ungrab_pointer);
|
|
1442 DEFSUBR (Fx_grab_keyboard);
|
|
1443 DEFSUBR (Fx_ungrab_keyboard);
|
0
|
1444
|
|
1445 defsymbol (&Qx_error, "x-error");
|
|
1446 defsymbol (&Qinit_pre_x_win, "init-pre-x-win");
|
|
1447 defsymbol (&Qinit_post_x_win, "init-post-x-win");
|
|
1448 }
|
|
1449
|
|
1450 void
|
|
1451 console_type_create_device_x (void)
|
|
1452 {
|
|
1453 CONSOLE_HAS_METHOD (x, init_device);
|
|
1454 CONSOLE_HAS_METHOD (x, finish_init_device);
|
|
1455 CONSOLE_HAS_METHOD (x, mark_device);
|
|
1456 CONSOLE_HAS_METHOD (x, delete_device);
|
|
1457 CONSOLE_HAS_METHOD (x, device_pixel_width);
|
|
1458 CONSOLE_HAS_METHOD (x, device_pixel_height);
|
|
1459 CONSOLE_HAS_METHOD (x, device_mm_width);
|
|
1460 CONSOLE_HAS_METHOD (x, device_mm_height);
|
|
1461 CONSOLE_HAS_METHOD (x, device_bitplanes);
|
|
1462 CONSOLE_HAS_METHOD (x, device_color_cells);
|
|
1463 }
|
|
1464
|
|
1465 void
|
|
1466 vars_of_device_x (void)
|
|
1467 {
|
|
1468 DEFVAR_LISP ("x-emacs-application-class", &Vx_emacs_application_class /*
|
|
1469 The X application class of the XEmacs process.
|
|
1470 This controls, among other things, the name of the `app-defaults' file
|
|
1471 that XEmacs will use. For changes to this variable to take effect, they
|
|
1472 must be made before the connection to the X server is initialized, that is,
|
|
1473 this variable may only be changed before emacs is dumped, or by setting it
|
|
1474 in the file lisp/term/x-win.el.
|
|
1475 */ );
|
|
1476 Vx_emacs_application_class = Fpurecopy (build_string ("Emacs"));
|
|
1477
|
|
1478 DEFVAR_LISP ("x-initial-argv-list", &Vx_initial_argv_list /*
|
|
1479 You don't want to know.
|
|
1480 This is used during startup to communicate the remaining arguments in
|
|
1481 `command-line-args-left' to the C code, which passes the args to
|
|
1482 the X initialization code, which removes some args, and then the
|
|
1483 args are placed back into `x-initial-arg-list' and thence into
|
|
1484 `command-line-args-left'. Perhaps `command-line-args-left' should
|
|
1485 just reside in C.
|
|
1486 */ );
|
|
1487 Vx_initial_argv_list = Qnil;
|
|
1488
|
167
|
1489 DEFVAR_BOOL ("x-seppuku-on-epipe", &x_seppuku_on_epipe /*
|
|
1490 When non-nil terminate XEmacs immediately on SIGPIPE from the X server.
|
|
1491 XEmacs doesn't terminate properly on some systems.
|
|
1492 When this variable is non-nil, XEmacs will commit immediate suicide
|
|
1493 when it gets a sigpipe from the X Server.
|
|
1494 */ );
|
|
1495 x_seppuku_on_epipe = 0;
|
|
1496
|
0
|
1497 Fprovide (Qx);
|
|
1498
|
|
1499 staticpro (&Vdefault_x_device);
|
|
1500 Vdefault_x_device = Qnil;
|
|
1501
|
|
1502 error_expected = 0;
|
|
1503 error_occurred = 0;
|
|
1504
|
|
1505 in_resource_setting = 0;
|
|
1506 in_specifier_change_function = 0;
|
|
1507 }
|