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