Mercurial > hg > xemacs-beta
annotate src/device-x.c @ 4502:8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
src/ChangeLog addition:
2008-08-23 Aidan Kehoe <kehoea@parhasard.net>
* eval.c (Fuser_variable_p): Moved to symbols.c
* symbols.c (Fcustom_variable_p): Moved here from custom.el.
(user_variable_alias_check_fun): Mapper function used in
`user-variable-p'.
(Fuser_variable_p): Moved here from eval.c, to allow it to examine
the variable alias chain. Expanded to check each entry in the
variable alias chain for signs of being a user variable;
documentation updated, noting the differences between GNU's
behaviour and ours (ours is a little more sensible)
(map_varalias_chain): New.
Given a C function, call it at least once for each symbol in a
symbol's varalias chain, signalling an error if there's a cycle,
and returning immediately if the function returns something other
than Qzero.
(Fdefvaralias): Correct the use of the word "alias" in the
docstring and in the argument name. Motivate this in a
comment. Add support for a DOCSTRING argument, something GNU has
too, and document this
* gc.c (vars_of_gc): Start the docstring of
`garbage-collection-messages' with an asterisk, to indicate that
it's a user variable.
lisp/ChangeLog addition:
2008-08-23 Aidan Kehoe <kehoea@parhasard.net>
* custom.el: Move #'custom-variable-p to C, since it's now called
from #'user-variable-p.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 23 Aug 2008 16:38:51 +0200 |
parents | e34711681f30 |
children | 383ab474a241 |
rev | line source |
---|---|
428 | 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. | |
2367 | 4 Copyright (C) 2001, 2002, 2004 Ben Wing. |
428 | 5 |
6 This file is part of XEmacs. | |
7 | |
8 XEmacs is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
10 Free Software Foundation; either version 2, or (at your option) any | |
11 later version. | |
12 | |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | |
23 /* Synched up with: Not in FSF. */ | |
24 | |
442 | 25 /* 7-8-00 !!#### This file needs definite Mule review. */ |
26 | |
428 | 27 /* Original authors: Jamie Zawinski and the FSF */ |
28 /* Rewritten by Ben Wing and Chuck Thompson. */ | |
29 | |
30 #include <config.h> | |
31 #include "lisp.h" | |
32 | |
33 #include "buffer.h" | |
872 | 34 #include "device-impl.h" |
428 | 35 #include "elhash.h" |
36 #include "events.h" | |
37 #include "faces.h" | |
3707 | 38 #include "file-coding.h" |
872 | 39 #include "frame-impl.h" |
2684 | 40 #include "process.h" /* for egetenv */ |
428 | 41 #include "redisplay.h" |
42 #include "sysdep.h" | |
43 #include "window.h" | |
44 | |
872 | 45 #include "console-x-impl.h" |
800 | 46 #include "glyphs-x.h" |
47 #include "objects-x.h" | |
48 | |
428 | 49 #include "sysfile.h" |
50 #include "systime.h" | |
51 | |
800 | 52 #include "xintrinsicp.h" /* CoreP.h needs this */ |
53 #include <X11/CoreP.h> /* Numerous places access the fields of | |
54 a core widget directly. We could | |
55 use XtGetValues(), but ... */ | |
56 #include "xgccache.h" | |
57 #include <X11/Shell.h> | |
58 #include "xmu.h" | |
59 | |
442 | 60 #if defined(HAVE_SHLIB) && defined(LWLIB_USES_ATHENA) && !defined(HAVE_ATHENA_3D) |
440 | 61 #include "sysdll.h" |
442 | 62 #endif /* HAVE_SHLIB and LWLIB_USES_ATHENA and not HAVE_ATHENA_3D */ |
440 | 63 |
428 | 64 #ifdef HAVE_OFFIX_DND |
65 #include "offix.h" | |
66 #endif | |
67 | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
68 Lisp_Object Vx_app_defaults_directory; |
771 | 69 #ifdef MULE |
70 Lisp_Object Qget_coding_system_from_locale; | |
428 | 71 #endif |
72 | |
73 /* Qdisplay in general.c */ | |
74 Lisp_Object Qx_error; | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
75 Lisp_Object Qmake_device_early_x_entry_point, Qmake_device_late_x_entry_point; |
428 | 76 |
77 /* The application class of Emacs. */ | |
78 Lisp_Object Vx_emacs_application_class; | |
79 | |
80 Lisp_Object Vx_initial_argv_list; /* #### ugh! */ | |
81 | |
82 static XrmOptionDescRec emacs_options[] = | |
83 { | |
84 {"-geometry", ".geometry", XrmoptionSepArg, NULL}, | |
85 {"-iconic", ".iconic", XrmoptionNoArg, "yes"}, | |
86 | |
87 {"-internal-border-width", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL}, | |
88 {"-ib", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL}, | |
89 {"-scrollbar-width", "*EmacsFrame.scrollBarWidth", XrmoptionSepArg, NULL}, | |
90 {"-scrollbar-height", "*EmacsFrame.scrollBarHeight", XrmoptionSepArg, NULL}, | |
91 | |
92 {"-privatecolormap", ".privateColormap", XrmoptionNoArg, "yes"}, | |
93 {"-visual", ".EmacsVisual", XrmoptionSepArg, NULL}, | |
94 | |
95 /* #### Beware! If the type of the shell changes, update this. */ | |
96 {"-T", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL}, | |
97 {"-wn", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL}, | |
98 {"-title", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL}, | |
99 | |
100 {"-iconname", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL}, | |
101 {"-in", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL}, | |
102 {"-mc", "*pointerColor", XrmoptionSepArg, NULL}, | |
103 {"-cr", "*cursorColor", XrmoptionSepArg, NULL}, | |
104 {"-fontset", "*FontSet", XrmoptionSepArg, NULL}, | |
105 }; | |
106 | |
1204 | 107 static const struct memory_description x_device_data_description_1 [] = { |
108 { XD_LISP_OBJECT, offsetof (struct x_device, x_keysym_map_hash_table) }, | |
109 { XD_LISP_OBJECT, offsetof (struct x_device, WM_COMMAND_frame) }, | |
110 { XD_END } | |
111 }; | |
112 | |
3092 | 113 #ifdef NEW_GC |
114 DEFINE_LRECORD_IMPLEMENTATION ("x-device", x_device, | |
115 1, /*dumpable-flag*/ | |
116 0, 0, 0, 0, 0, | |
117 x_device_data_description_1, | |
118 Lisp_X_Device); | |
119 #else /* not NEW_GC */ | |
1204 | 120 extern const struct sized_memory_description x_device_data_description; |
121 | |
122 const struct sized_memory_description x_device_data_description = { | |
123 sizeof (struct x_device), x_device_data_description_1 | |
124 }; | |
3092 | 125 #endif /* not NEW_GC */ |
1204 | 126 |
428 | 127 /* Functions to synchronize mirroring resources and specifiers */ |
128 int in_resource_setting; | |
129 | |
130 /************************************************************************/ | |
131 /* helper functions */ | |
132 /************************************************************************/ | |
133 | |
134 /* JH 97/11/25 removed the static declaration because I need it during setup in event-Xt... */ | |
135 struct device * get_device_from_display_1 (Display *dpy); | |
136 struct device * | |
137 get_device_from_display_1 (Display *dpy) | |
138 { | |
139 Lisp_Object devcons, concons; | |
140 | |
141 DEVICE_LOOP_NO_BREAK (devcons, concons) | |
142 { | |
143 struct device *d = XDEVICE (XCAR (devcons)); | |
144 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d) == dpy) | |
145 return d; | |
146 } | |
147 | |
148 return 0; | |
149 } | |
150 | |
151 struct device * | |
152 get_device_from_display (Display *dpy) | |
153 { | |
154 struct device *d = get_device_from_display_1 (dpy); | |
155 | |
156 #if !defined(INFODOCK) | |
157 # define FALLBACK_RESOURCE_NAME "xemacs" | |
158 # else | |
159 # define FALLBACK_RESOURCE_NAME "infodock" | |
160 #endif | |
161 | |
853 | 162 if (!d) |
163 { | |
164 /* This isn't one of our displays. Let's crash? */ | |
165 stderr_out | |
166 ("\n%s: Fatal X Condition. Asked about display we don't own: \"%s\"\n", | |
167 (STRINGP (Vinvocation_name) ? | |
168 (char *) XSTRING_DATA (Vinvocation_name) : FALLBACK_RESOURCE_NAME), | |
169 DisplayString (dpy) ? DisplayString (dpy) : "???"); | |
2500 | 170 ABORT(); |
853 | 171 } |
428 | 172 |
173 #undef FALLBACK_RESOURCE_NAME | |
174 | |
175 return d; | |
176 } | |
177 | |
178 struct device * | |
179 decode_x_device (Lisp_Object device) | |
180 { | |
793 | 181 device = wrap_device (decode_device (device)); |
428 | 182 CHECK_X_DEVICE (device); |
183 return XDEVICE (device); | |
184 } | |
185 | |
186 static Display * | |
187 get_x_display (Lisp_Object device) | |
188 { | |
189 return DEVICE_X_DISPLAY (decode_x_device (device)); | |
190 } | |
191 | |
771 | 192 static Lisp_Object |
2333 | 193 coding_system_of_xrm_database (XrmDatabase USED_IF_MULE (db)) |
771 | 194 { |
195 #ifdef MULE | |
3707 | 196 const Extbyte *locale; |
197 Lisp_Object localestr; | |
198 static XrmDatabase last_xrm_db; | |
199 | |
200 /* This will always be zero, nil or an actual coding system object, so no | |
201 need to worry about GCPROing it--it'll be protected from garbage | |
202 collection by means of Vcoding_system_hash_table in file-coding.c. */ | |
203 static Lisp_Object last_coding_system; | |
204 | |
205 if (db == last_xrm_db) | |
206 { | |
207 return last_coding_system; | |
208 } | |
209 | |
210 last_xrm_db = db; | |
211 | |
212 locale = XrmLocaleOfDatabase (db); | |
213 localestr = build_ext_string (locale, Qbinary); | |
214 last_coding_system = call1 (Qget_coding_system_from_locale, localestr); | |
215 | |
216 return last_coding_system; | |
771 | 217 #else |
218 return Qbinary; | |
219 #endif | |
220 } | |
221 | |
428 | 222 |
223 /************************************************************************/ | |
224 /* initializing an X connection */ | |
225 /************************************************************************/ | |
226 | |
756 | 227 static struct device *device_being_initialized = NULL; |
228 | |
428 | 229 static void |
230 allocate_x_device_struct (struct device *d) | |
231 { | |
3092 | 232 #ifdef NEW_GC |
233 d->device_data = alloc_lrecord_type (struct x_device, &lrecord_x_device); | |
234 #else /* not NEW_GC */ | |
428 | 235 d->device_data = xnew_and_zero (struct x_device); |
3092 | 236 #endif /* not NEW_GC */ |
428 | 237 } |
238 | |
239 static void | |
240 Xatoms_of_device_x (struct device *d) | |
241 { | |
242 Display *D = DEVICE_X_DISPLAY (d); | |
243 | |
244 DEVICE_XATOM_WM_PROTOCOLS (d) = XInternAtom (D, "WM_PROTOCOLS", False); | |
245 DEVICE_XATOM_WM_DELETE_WINDOW(d) = XInternAtom (D, "WM_DELETE_WINDOW",False); | |
246 DEVICE_XATOM_WM_SAVE_YOURSELF(d) = XInternAtom (D, "WM_SAVE_YOURSELF",False); | |
247 DEVICE_XATOM_WM_TAKE_FOCUS (d) = XInternAtom (D, "WM_TAKE_FOCUS", False); | |
248 DEVICE_XATOM_WM_STATE (d) = XInternAtom (D, "WM_STATE", False); | |
249 } | |
250 | |
251 static void | |
252 sanity_check_geometry_resource (Display *dpy) | |
253 { | |
771 | 254 Extbyte *app_name, *app_class, *s; |
255 Extbyte buf1 [255], buf2 [255]; | |
256 Extbyte *type; | |
428 | 257 XrmValue value; |
258 XtGetApplicationNameAndClass (dpy, &app_name, &app_class); | |
259 strcpy (buf1, app_name); | |
260 strcpy (buf2, app_class); | |
261 for (s = buf1; *s; s++) if (*s == '.') *s = '_'; | |
262 strcat (buf1, "._no_._such_._resource_.geometry"); | |
263 strcat (buf2, "._no_._such_._resource_.Geometry"); | |
264 if (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True) | |
265 { | |
867 | 266 Ibyte *app_name_int, *app_class_int, *value_addr_int; |
771 | 267 Lisp_Object codesys = coding_system_of_xrm_database (XtDatabase (dpy)); |
268 EXTERNAL_TO_C_STRING (app_name, app_name_int, codesys); | |
269 EXTERNAL_TO_C_STRING (app_class, app_class_int, codesys); | |
270 EXTERNAL_TO_C_STRING (value.addr, value_addr_int, codesys); | |
271 | |
428 | 272 warn_when_safe (Qgeometry, Qerror, |
273 "\n" | |
274 "Apparently \"%s*geometry: %s\" or \"%s*geometry: %s\" was\n" | |
275 "specified in the resource database. Specifying \"*geometry\" will make\n" | |
276 "XEmacs (and most other X programs) malfunction in obscure ways. (i.e.\n" | |
277 "the Xt or Xm libraries will probably crash, which is a very bad thing.)\n" | |
278 "You should always use \".geometry\" or \"*EmacsFrame.geometry\" instead.\n", | |
771 | 279 app_name_int, value_addr_int, |
280 app_class_int, value_addr_int); | |
428 | 281 suppress_early_error_handler_backtrace = 1; |
563 | 282 syntax_error ("Invalid geometry resource", Qunbound); |
428 | 283 } |
284 } | |
285 | |
286 static void | |
287 x_init_device_class (struct device *d) | |
288 { | |
289 if (DEVICE_X_DEPTH(d) > 2) | |
290 { | |
1204 | 291 switch (DEVICE_X_VISUAL(d)->X_CLASSFIELD) |
428 | 292 { |
293 case StaticGray: | |
294 case GrayScale: | |
295 DEVICE_CLASS (d) = Qgrayscale; | |
296 break; | |
297 default: | |
298 DEVICE_CLASS (d) = Qcolor; | |
299 } | |
300 } | |
301 else | |
302 DEVICE_CLASS (d) = Qmono; | |
303 } | |
304 | |
305 /* | |
306 * Figure out what application name to use for xemacs | |
307 * | |
308 * Since we have decomposed XtOpenDisplay into XOpenDisplay and | |
309 * XtDisplayInitialize, we no longer get this for free. | |
310 * | |
311 * If there is a `-name' argument in argv, use that. | |
312 * Otherwise use the last component of argv[0]. | |
313 * | |
314 * I have removed the gratuitous use of getenv("RESOURCE_NAME") | |
315 * which was in X11R5, but left the matching of any prefix of `-name'. | |
316 * Finally, if all else fails, return `xemacs', as it is more | |
317 * appropriate (X11R5 returns `main'). | |
318 */ | |
442 | 319 static Extbyte * |
320 compute_x_app_name (int argc, Extbyte **argv) | |
428 | 321 { |
322 int i; | |
442 | 323 Extbyte *ptr; |
428 | 324 |
325 for (i = 1; i < argc - 1; i++) | |
326 if (!strncmp(argv[i], "-name", max (2, strlen (argv[1])))) | |
327 return argv[i+1]; | |
328 | |
329 if (argc > 0 && argv[0] && *argv[0]) | |
330 return (ptr = strrchr (argv[0], '/')) ? ++ptr : argv[0]; | |
331 | |
332 return "xemacs"; | |
333 } | |
334 | |
335 /* | |
336 * This function figures out whether the user has any resources of the | |
337 * form "XEmacs.foo" or "XEmacs*foo". | |
338 * | |
339 * Currently we only consult the display's global resources; to look | |
340 * for screen specific resources, we would need to also consult: | |
341 * xdefs = XScreenResourceString(ScreenOfDisplay(dpy, scrno)); | |
342 */ | |
343 static int | |
344 have_xemacs_resources_in_xrdb (Display *dpy) | |
345 { | |
346 char *xdefs, *key; | |
347 int len; | |
348 | |
349 #ifdef INFODOCK | |
350 key = "InfoDock"; | |
351 #else | |
352 key = "XEmacs"; | |
353 #endif | |
354 len = strlen (key); | |
355 | |
356 if (!dpy) | |
357 return 0; | |
358 | |
359 xdefs = XResourceManagerString (dpy); /* don't free - owned by X */ | |
360 while (xdefs && *xdefs) | |
361 { | |
362 if (strncmp (xdefs, key, len) == 0 && | |
363 (xdefs[len] == '*' || xdefs[len] == '.')) | |
364 return 1; | |
365 | |
366 while (*xdefs && *xdefs++ != '\n') /* find start of next entry.. */ | |
367 ; | |
368 } | |
369 | |
370 return 0; | |
371 } | |
372 | |
373 /* Only the characters [-_A-Za-z0-9] are allowed in the individual | |
374 components of a resource. Convert invalid characters to `-' */ | |
375 | |
376 static char valid_resource_char_p[256]; | |
377 | |
378 static void | |
771 | 379 validify_resource_component (Extbyte *str, Bytecount len) |
428 | 380 { |
381 for (; len; len--, str++) | |
382 if (!valid_resource_char_p[(unsigned char) (*str)]) | |
383 *str = '-'; | |
384 } | |
385 | |
386 static void | |
771 | 387 Dynarr_add_validified_lisp_string (Extbyte_dynarr *cda, Lisp_Object str) |
428 | 388 { |
771 | 389 Bytecount len; |
390 Extbyte *data; | |
391 | |
392 TO_EXTERNAL_FORMAT (LISP_STRING, str, ALLOCA, (data, len), Qbinary); | |
393 Dynarr_add_many (cda, data, len); | |
394 validify_resource_component (Dynarr_atp (cda, Dynarr_length (cda) - len), | |
395 len); | |
428 | 396 } |
397 | |
398 #if 0 | |
399 /* compare visual info for qsorting */ | |
400 static int | |
401 x_comp_visual_info (const void *elem1, const void *elem2) | |
402 { | |
403 XVisualInfo *left, *right; | |
404 | |
405 left = (XVisualInfo *)elem1; | |
406 right = (XVisualInfo *)elem2; | |
407 | |
408 if ( left == NULL ) | |
409 return -1; | |
410 if ( right == NULL ) | |
411 return 1; | |
412 | |
771 | 413 if ( left->depth > right->depth ) |
428 | 414 return 1; |
771 | 415 else if ( left->depth == right->depth ) |
416 { | |
417 if ( left->colormap_size > right->colormap_size ) | |
418 return 1; | |
1204 | 419 if ( left->X_CLASSFIELD > right->X_CLASSFIELD ) |
771 | 420 return 1; |
1204 | 421 else if ( left->X_CLASSFIELD < right->X_CLASSFIELD ) |
771 | 422 return -1; |
423 else | |
424 return 0; | |
425 } | |
426 else | |
428 | 427 return -1; |
428 } | |
429 #endif /* if 0 */ | |
430 | |
431 #define XXX_IMAGE_LIBRARY_IS_SOMEWHAT_BROKEN | |
432 static Visual * | |
433 x_try_best_visual_class (Screen *screen, int scrnum, int visual_class) | |
434 { | |
435 Display *dpy = DisplayOfScreen (screen); | |
436 XVisualInfo vi_in; | |
437 XVisualInfo *vi_out = NULL; | |
438 int out_count; | |
439 | |
1204 | 440 vi_in.X_CLASSFIELD = visual_class; |
428 | 441 vi_in.screen = scrnum; |
442 vi_out = XGetVisualInfo (dpy, (VisualClassMask | VisualScreenMask), | |
443 &vi_in, &out_count); | |
444 if ( vi_out ) | |
445 { | |
446 int i, best; | |
447 Visual *visual; | |
448 for (i = 0, best = 0; i < out_count; i++) | |
449 /* It's better if it's deeper, or if it's the same depth with | |
450 more cells (does that ever happen? Well, it could...) | |
451 NOTE: don't allow pseudo color to get larger than 8! */ | |
452 if (((vi_out [i].depth > vi_out [best].depth) || | |
453 ((vi_out [i].depth == vi_out [best].depth) && | |
454 (vi_out [i].colormap_size > vi_out [best].colormap_size))) | |
455 #ifdef XXX_IMAGE_LIBRARY_IS_SOMEWHAT_BROKEN | |
456 /* For now, the image library doesn't like PseudoColor visuals | |
457 of depths other than 1 or 8. Depths greater than 8 only occur | |
458 on machines which have TrueColor anyway, so probably we'll end | |
459 up using that (it is the one that `Best' would pick) but if a | |
460 PseudoColor visual is explicitly specified, pick the 8 bit one. | |
461 */ | |
462 && (visual_class != PseudoColor || | |
463 vi_out [i].depth == 1 || | |
464 vi_out [i].depth == 8) | |
465 #endif | |
466 | |
467 /* SGI has 30-bit deep visuals. Ignore them. | |
468 (We only have 24-bit data anyway.) | |
469 */ | |
470 && (vi_out [i].depth <= 24) | |
471 ) | |
472 best = i; | |
473 visual = vi_out[best].visual; | |
474 XFree ((char *) vi_out); | |
475 return visual; | |
476 } | |
477 else | |
478 return 0; | |
479 } | |
480 | |
481 static int | |
482 x_get_visual_depth (Display *dpy, Visual *visual) | |
483 { | |
484 XVisualInfo vi_in; | |
485 XVisualInfo *vi_out; | |
486 int out_count, d; | |
487 | |
488 vi_in.visualid = XVisualIDFromVisual (visual); | |
489 vi_out = XGetVisualInfo (dpy, /*VisualScreenMask|*/VisualIDMask, | |
490 &vi_in, &out_count); | |
2500 | 491 if (! vi_out) ABORT (); |
428 | 492 d = vi_out [0].depth; |
493 XFree ((char *) vi_out); | |
494 return d; | |
495 } | |
496 | |
497 static Visual * | |
498 x_try_best_visual (Display *dpy, int scrnum) | |
499 { | |
500 Visual *visual = NULL; | |
501 Screen *screen = ScreenOfDisplay (dpy, scrnum); | |
502 if ((visual = x_try_best_visual_class (screen, scrnum, TrueColor)) | |
503 && x_get_visual_depth (dpy, visual) >= 16 ) | |
504 return visual; | |
505 if ((visual = x_try_best_visual_class (screen, scrnum, PseudoColor))) | |
506 return visual; | |
507 if ((visual = x_try_best_visual_class (screen, scrnum, TrueColor))) | |
508 return visual; | |
509 #ifdef DIRECTCOLOR_WORKS | |
510 if ((visual = x_try_best_visual_class (screen, scrnum, DirectColor))) | |
511 return visual; | |
512 #endif | |
513 | |
514 visual = DefaultVisualOfScreen (screen); | |
515 if ( x_get_visual_depth (dpy, visual) >= 8 ) | |
516 return visual; | |
517 | |
518 if ((visual = x_try_best_visual_class (screen, scrnum, StaticGray))) | |
519 return visual; | |
520 if ((visual = x_try_best_visual_class (screen, scrnum, GrayScale))) | |
521 return visual; | |
522 return DefaultVisualOfScreen (screen); | |
523 } | |
524 | |
525 | |
526 static void | |
2286 | 527 x_init_device (struct device *d, Lisp_Object UNUSED (props)) |
428 | 528 { |
2367 | 529 /* !!#### */ |
428 | 530 Lisp_Object display; |
531 Display *dpy; | |
532 Widget app_shell; | |
533 int argc; | |
442 | 534 Extbyte **argv; |
535 const char *app_class; | |
536 const char *app_name; | |
537 const char *disp_name; | |
428 | 538 Visual *visual = NULL; |
539 int depth = 8; /* shut up the compiler */ | |
540 Colormap cmap; | |
541 int screen; | |
542 /* */ | |
543 int best_visual_found = 0; | |
544 | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
545 /* Run the elisp side of the X device initialization, allowing it to set |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
546 x-emacs-application-class and x-app-defaults-directory. */ |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
547 call0 (Qmake_device_early_x_entry_point); |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
548 |
442 | 549 #if defined(HAVE_SHLIB) && defined(LWLIB_USES_ATHENA) && !defined(HAVE_ATHENA_3D) |
440 | 550 /* |
551 * In order to avoid the lossage with flat Athena widgets dynamically | |
552 * linking to one of the ThreeD variants, using the dynamic symbol helpers | |
553 * to look for symbols that shouldn't be there and refusing to run if they | |
554 * are seems a less toxic idea than having XEmacs crash when we try and | |
555 * use a subclass of a widget that has changed size. | |
556 * | |
557 * It's ugly, I know, and not going to work everywhere. It seems better to | |
558 * do our damnedest to try and tell the user what to expect rather than | |
559 * simply blow up though. | |
560 * | |
561 * All the ThreeD variants I have access to define the following function | |
562 * symbols in the shared library. The flat Xaw library does not define them: | |
563 * | |
564 * Xaw3dComputeBottomShadowRGB | |
565 * Xaw3dComputeTopShadowRGB | |
566 * | |
567 * So far only Linux has shown this problem. This seems to be portable to | |
568 * all the distributions (certainly all the ones I checked - Debian and | |
569 * Redhat) | |
570 * | |
571 * This will only work, sadly, with dlopen() -- the other dynamic linkers | |
572 * are simply not capable of doing what is needed. :/ | |
573 */ | |
574 | |
575 { | |
576 /* Get a dll handle to the main process. */ | |
1706 | 577 dll_handle xaw_dll_handle = dll_open (Qnil); |
440 | 578 |
579 /* Did that fail? If so, continue without error. | |
580 * We could die here but, well, that's unfriendly and all -- plus I feel | |
581 * better about some crashing somewhere rather than preventing a perfectly | |
582 * good configuration working just because dll_open failed. | |
583 */ | |
584 if (xaw_dll_handle != NULL) | |
585 { | |
586 /* Look for the Xaw3d function */ | |
587 dll_func xaw_function_handle = | |
588 dll_function (xaw_dll_handle, "Xaw3dComputeTopShadowRGB"); | |
589 | |
590 /* If we found it, warn the user in big, nasty, unfriendly letters */ | |
591 if (xaw_function_handle != NULL) | |
592 { | |
793 | 593 warn_when_safe (Qdevice, Qcritical, "\n" |
440 | 594 "It seems that XEmacs is built dynamically linked to the flat Athena widget\n" |
595 "library but it finds a 3D Athena variant with the same name at runtime.\n" | |
596 "\n" | |
597 "This WILL cause your XEmacs process to dump core at some point.\n" | |
598 "You should not continue to use this binary without resolving this issue.\n" | |
599 "\n" | |
600 "This can be solved with the xaw-wrappers package under Debian\n" | |
601 "(register XEmacs as incompatible with all 3d widget sets, see\n" | |
602 "update-xaw-wrappers(8) and .../doc/xaw-wrappers/README.packagers). It\n" | |
603 "can be verified by checking the runtime path in /etc/ld.so.conf and by\n" | |
604 "using `ldd /path/to/xemacs' under other Linux distributions. One\n" | |
605 "solution is to use LD_PRELOAD or LD_LIBRARY_PATH to force ld.so to\n" | |
606 "load the flat Athena widget library instead of the aliased 3D widget\n" | |
607 "library (see ld.so(8) for use of these environment variables).\n\n" | |
608 ); | |
609 | |
610 } | |
611 | |
612 /* Otherwise release the handle to the library | |
613 * No error catch here; I can't think of a way to recover anyhow. | |
614 */ | |
615 dll_close (xaw_dll_handle); | |
616 } | |
617 } | |
442 | 618 #endif /* HAVE_SHLIB and LWLIB_USES_ATHENA and not HAVE_ATHENA_3D */ |
440 | 619 |
428 | 620 display = DEVICE_CONNECTION (d); |
621 | |
622 allocate_x_device_struct (d); | |
623 | |
624 make_argc_argv (Vx_initial_argv_list, &argc, &argv); | |
625 | |
442 | 626 LISP_STRING_TO_EXTERNAL (display, disp_name, Qctext); |
428 | 627 |
628 /* | |
629 * Break apart the old XtOpenDisplay call into XOpenDisplay and | |
630 * XtDisplayInitialize so we can figure out whether there | |
631 * are any XEmacs resources in the resource database before | |
632 * we initialize Xt. This is so we can automagically support | |
633 * both `Emacs' and `XEmacs' application classes. | |
634 */ | |
635 slow_down_interrupts (); | |
636 /* May not be needed but XtOpenDisplay could not deal with signals here. */ | |
756 | 637 device_being_initialized = d; |
428 | 638 dpy = DEVICE_X_DISPLAY (d) = XOpenDisplay (disp_name); |
756 | 639 device_being_initialized = NULL; |
428 | 640 speed_up_interrupts (); |
641 | |
642 if (dpy == 0) | |
643 { | |
644 suppress_early_error_handler_backtrace = 1; | |
563 | 645 gui_error ("X server not responding\n", display); |
428 | 646 } |
647 | |
648 if (STRINGP (Vx_emacs_application_class) && | |
649 XSTRING_LENGTH (Vx_emacs_application_class) > 0) | |
442 | 650 LISP_STRING_TO_EXTERNAL (Vx_emacs_application_class, app_class, Qctext); |
428 | 651 else |
652 { | |
2681 | 653 if (egetenv ("USE_EMACS_AS_DEFAULT_APPLICATION_CLASS")) |
654 { | |
655 app_class = (NILP (Vx_emacs_application_class) && | |
656 have_xemacs_resources_in_xrdb (dpy)) | |
428 | 657 #ifdef INFODOCK |
2681 | 658 ? "InfoDock" |
428 | 659 #else |
2681 | 660 ? "XEmacs" |
428 | 661 #endif |
2681 | 662 : "Emacs"; |
663 } | |
664 else | |
665 { | |
666 app_class = "XEmacs"; | |
667 } | |
668 | |
428 | 669 /* need to update Vx_emacs_application_class: */ |
670 Vx_emacs_application_class = build_string (app_class); | |
671 } | |
672 | |
673 slow_down_interrupts (); | |
674 /* May not be needed but XtOpenDisplay could not deal with signals here. | |
675 Yuck. */ | |
676 XtDisplayInitialize (Xt_app_con, dpy, compute_x_app_name (argc, argv), | |
677 app_class, emacs_options, | |
442 | 678 XtNumber (emacs_options), &argc, (char **) argv); |
428 | 679 speed_up_interrupts (); |
680 | |
681 screen = DefaultScreen (dpy); | |
682 | |
683 #ifdef MULE | |
684 { | |
685 /* Read in locale-specific resources from | |
686 data-directory/app-defaults/$LANG/Emacs. | |
687 This is in addition to the standard app-defaults files, and | |
688 does not override resources defined elsewhere */ | |
771 | 689 const Extbyte *data_dir; |
690 Extbyte *path; | |
3644 | 691 Extbyte *format; |
428 | 692 XrmDatabase db = XtDatabase (dpy); /* #### XtScreenDatabase(dpy) ? */ |
3644 | 693 Extbyte *locale = xstrdup (XrmLocaleOfDatabase (db)); |
694 Extbyte *locale_end; | |
428 | 695 |
696 if (STRINGP (Vx_app_defaults_directory) && | |
697 XSTRING_LENGTH (Vx_app_defaults_directory) > 0) | |
698 { | |
771 | 699 LISP_STRING_TO_EXTERNAL (Vx_app_defaults_directory, data_dir, |
700 Qfile_name); | |
2367 | 701 path = alloca_extbytes (strlen (data_dir) + strlen (locale) + 7); |
3644 | 702 format = "%s%s/Emacs"; |
428 | 703 } |
704 else if (STRINGP (Vdata_directory) && XSTRING_LENGTH (Vdata_directory) > 0) | |
705 { | |
442 | 706 LISP_STRING_TO_EXTERNAL (Vdata_directory, data_dir, Qfile_name); |
2367 | 707 path = alloca_extbytes (strlen (data_dir) + 13 + strlen (locale) + 7); |
3644 | 708 format = "%sapp-defaults/%s/Emacs"; |
428 | 709 } |
4404
80e07b006f9c
Prevent access to uninitialized variables in x_init_device.
Jerry James <james@xemacs.org>
parents:
4117
diff
changeset
|
710 else |
80e07b006f9c
Prevent access to uninitialized variables in x_init_device.
Jerry James <james@xemacs.org>
parents:
4117
diff
changeset
|
711 { |
80e07b006f9c
Prevent access to uninitialized variables in x_init_device.
Jerry James <james@xemacs.org>
parents:
4117
diff
changeset
|
712 goto no_data_directory; |
80e07b006f9c
Prevent access to uninitialized variables in x_init_device.
Jerry James <james@xemacs.org>
parents:
4117
diff
changeset
|
713 } |
3644 | 714 |
715 /* | |
716 * The general form for $LANG is <language>_<country>.<encoding>. Try | |
717 * that form, <language>_<country> and <language> and load for first | |
718 * app-defaults file found. | |
719 */ | |
720 | |
721 sprintf (path, format, data_dir, locale); | |
722 if (!access (path, R_OK)) | |
723 XrmCombineFileDatabase (path, &db, False); | |
724 | |
725 if ((locale_end = strchr(locale, '.'))) { | |
726 *locale_end = '\0'; | |
727 sprintf (path, format, data_dir, locale); | |
728 | |
729 if (!access (path, R_OK)) | |
730 XrmCombineFileDatabase (path, &db, False); | |
731 } | |
732 | |
733 if ((locale_end = strchr(locale, '_'))) { | |
734 *locale_end = '\0'; | |
735 sprintf (path, format, data_dir, locale); | |
736 | |
737 if (!access (path, R_OK)) | |
738 XrmCombineFileDatabase (path, &db, False); | |
739 } | |
740 | |
4404
80e07b006f9c
Prevent access to uninitialized variables in x_init_device.
Jerry James <james@xemacs.org>
parents:
4117
diff
changeset
|
741 no_data_directory: |
3644 | 742 xfree (locale, Extbyte*); |
428 | 743 } |
744 #endif /* MULE */ | |
745 | |
746 if (NILP (DEVICE_NAME (d))) | |
747 DEVICE_NAME (d) = display; | |
748 | |
749 /* We're going to modify the string in-place, so be a nice XEmacs */ | |
750 DEVICE_NAME (d) = Fcopy_sequence (DEVICE_NAME (d)); | |
751 /* colons and periods can't appear in individual elements of resource | |
752 strings */ | |
753 | |
754 XtGetApplicationNameAndClass (dpy, (char **) &app_name, (char **) &app_class); | |
755 /* search for a matching visual if requested by the user, or setup the display default */ | |
756 { | |
757 int resource_name_length = max (sizeof (".emacsVisual"), | |
758 sizeof (".privateColormap")); | |
759 char *buf1 = alloca_array (char, strlen (app_name) + resource_name_length); | |
760 char *buf2 = alloca_array (char, strlen (app_class) + resource_name_length); | |
761 char *type; | |
762 XrmValue value; | |
763 | |
764 sprintf (buf1, "%s.emacsVisual", app_name); | |
765 sprintf (buf2, "%s.EmacsVisual", app_class); | |
766 if (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True) | |
767 { | |
768 int cnt = 0; | |
769 int vis_class = PseudoColor; | |
770 XVisualInfo vinfo; | |
771 char *str = (char*) value.addr; | |
772 | |
773 #define CHECK_VIS_CLASS(visual_class) \ | |
774 else if (memcmp (str, #visual_class, sizeof (#visual_class) - 1) == 0) \ | |
775 cnt = sizeof (#visual_class) - 1, vis_class = visual_class | |
776 | |
777 if (1) | |
778 ; | |
779 CHECK_VIS_CLASS (StaticGray); | |
780 CHECK_VIS_CLASS (StaticColor); | |
781 CHECK_VIS_CLASS (TrueColor); | |
782 CHECK_VIS_CLASS (GrayScale); | |
783 CHECK_VIS_CLASS (PseudoColor); | |
784 CHECK_VIS_CLASS (DirectColor); | |
785 | |
786 if (cnt) | |
787 { | |
788 depth = atoi (str + cnt); | |
789 if (depth == 0) | |
790 { | |
771 | 791 stderr_out ("Invalid Depth specification in %s... " |
792 "ignoring...\n", str); | |
428 | 793 } |
794 else | |
795 { | |
796 if (XMatchVisualInfo (dpy, screen, depth, vis_class, &vinfo)) | |
797 { | |
798 visual = vinfo.visual; | |
799 } | |
800 else | |
801 { | |
771 | 802 stderr_out ("Can't match the requested visual %s... " |
803 "using defaults\n", str); | |
428 | 804 } |
805 } | |
806 } | |
807 else | |
808 { | |
771 | 809 stderr_out ("Invalid Visual specification in %s... " |
810 "ignoring.\n", str); | |
428 | 811 } |
812 } | |
813 if (visual == NULL) | |
814 { | |
815 /* | |
816 visual = DefaultVisual(dpy, screen); | |
817 depth = DefaultDepth(dpy, screen); | |
818 */ | |
819 visual = x_try_best_visual (dpy, screen); | |
820 depth = x_get_visual_depth (dpy, visual); | |
821 best_visual_found = (visual != DefaultVisual (dpy, screen)); | |
822 } | |
823 | |
824 /* If we've got the same visual as the default and it's PseudoColor, | |
825 check to see if the user specified that we need a private colormap */ | |
826 if (visual == DefaultVisual (dpy, screen)) | |
827 { | |
828 sprintf (buf1, "%s.privateColormap", app_name); | |
829 sprintf (buf2, "%s.PrivateColormap", app_class); | |
1204 | 830 if ((visual->X_CLASSFIELD == PseudoColor) && |
771 | 831 (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) |
832 == True)) | |
833 cmap = XCopyColormapAndFree (dpy, DefaultColormap (dpy, screen)); | |
428 | 834 else |
771 | 835 cmap = DefaultColormap (dpy, screen); |
428 | 836 } |
837 else | |
838 { | |
839 if ( best_visual_found ) | |
771 | 840 cmap = XCreateColormap (dpy, RootWindow (dpy, screen), visual, |
841 AllocNone); | |
428 | 842 else |
843 { | |
771 | 844 /* We have to create a matching colormap anyway... #### |
845 think about using standard colormaps (need the Xmu | |
846 libs?) */ | |
847 cmap = XCreateColormap (dpy, RootWindow (dpy, screen), visual, | |
848 AllocNone); | |
849 XInstallColormap (dpy, cmap); | |
428 | 850 } |
851 } | |
852 } | |
853 | |
854 DEVICE_X_VISUAL (d) = visual; | |
855 DEVICE_X_COLORMAP (d) = cmap; | |
856 DEVICE_X_DEPTH (d) = depth; | |
857 validify_resource_component ((char *) XSTRING_DATA (DEVICE_NAME (d)), | |
858 XSTRING_LENGTH (DEVICE_NAME (d))); | |
859 | |
2007 | 860 /* #### If we're going to implement X session management, this would |
861 be the place. Make sure it doesn't conflict with GNOME. */ | |
428 | 862 { |
863 Arg al[3]; | |
864 XtSetArg (al[0], XtNvisual, visual); | |
865 XtSetArg (al[1], XtNdepth, depth); | |
866 XtSetArg (al[2], XtNcolormap, cmap); | |
867 | |
868 app_shell = XtAppCreateShell (NULL, app_class, | |
869 applicationShellWidgetClass, | |
870 dpy, al, countof (al)); | |
871 } | |
872 | |
873 DEVICE_XT_APP_SHELL (d) = app_shell; | |
874 | |
875 #ifdef HAVE_XIM | |
876 XIM_init_device(d); | |
877 #endif /* HAVE_XIM */ | |
878 | |
879 /* Realize the app_shell so that its window exists for GC creation purposes, | |
880 and set it to the size of the root window for child placement purposes */ | |
881 { | |
882 Arg al[5]; | |
883 XtSetArg (al[0], XtNmappedWhenManaged, False); | |
884 XtSetArg (al[1], XtNx, 0); | |
885 XtSetArg (al[2], XtNy, 0); | |
886 XtSetArg (al[3], XtNwidth, WidthOfScreen (ScreenOfDisplay (dpy, screen))); | |
887 XtSetArg (al[4], XtNheight, HeightOfScreen (ScreenOfDisplay (dpy, screen))); | |
888 XtSetValues (app_shell, al, countof (al)); | |
889 XtRealizeWidget (app_shell); | |
890 } | |
891 | |
892 #ifdef HAVE_WMCOMMAND | |
893 { | |
894 int new_argc; | |
442 | 895 Extbyte **new_argv; |
428 | 896 make_argc_argv (Vcommand_line_args, &new_argc, &new_argv); |
442 | 897 XSetCommand (XtDisplay (app_shell), XtWindow (app_shell), |
898 (char **) new_argv, new_argc); | |
428 | 899 free_argc_argv (new_argv); |
900 } | |
901 #endif /* HAVE_WMCOMMAND */ | |
902 | |
903 | |
904 #ifdef HAVE_OFFIX_DND | |
771 | 905 DndInitialize (app_shell); |
428 | 906 #endif |
907 | |
908 Vx_initial_argv_list = make_arg_list (argc, argv); | |
909 free_argc_argv (argv); | |
910 | |
911 DEVICE_X_WM_COMMAND_FRAME (d) = Qnil; | |
912 | |
913 sanity_check_geometry_resource (dpy); | |
914 | |
915 /* In event-Xt.c */ | |
916 x_init_modifier_mapping (d); | |
917 | |
918 DEVICE_INFD (d) = DEVICE_OUTFD (d) = ConnectionNumber (dpy); | |
919 init_baud_rate (d); | |
920 init_one_device (d); | |
921 | |
771 | 922 DEVICE_X_GC_CACHE (d) = make_gc_cache (dpy, XtWindow (app_shell)); |
428 | 923 DEVICE_X_GRAY_PIXMAP (d) = None; |
924 Xatoms_of_device_x (d); | |
440 | 925 Xatoms_of_select_x (d); |
428 | 926 Xatoms_of_objects_x (d); |
927 x_init_device_class (d); | |
928 } | |
929 | |
930 static void | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
931 x_finish_init_device (struct device *d, Lisp_Object UNUSED (props)) |
428 | 932 { |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
933 call1 (Qmake_device_late_x_entry_point, wrap_device (d)); |
428 | 934 } |
935 | |
936 static void | |
937 x_mark_device (struct device *d) | |
938 { | |
939 mark_object (DEVICE_X_WM_COMMAND_FRAME (d)); | |
940 mark_object (DEVICE_X_DATA (d)->x_keysym_map_hash_table); | |
941 } | |
942 | |
943 | |
944 /************************************************************************/ | |
945 /* closing an X connection */ | |
946 /************************************************************************/ | |
947 | |
4117 | 948 #ifndef NEW_GC |
428 | 949 static void |
950 free_x_device_struct (struct device *d) | |
951 { | |
1726 | 952 xfree (d->device_data, void *); |
4117 | 953 } |
3092 | 954 #endif /* not NEW_GC */ |
428 | 955 |
956 static void | |
957 x_delete_device (struct device *d) | |
958 { | |
959 Display *display; | |
960 #ifdef FREE_CHECKING | |
961 extern void (*__free_hook) (void *); | |
962 int checking_free; | |
963 #endif | |
964 | |
965 display = DEVICE_X_DISPLAY (d); | |
966 | |
967 if (display) | |
968 { | |
969 #ifdef FREE_CHECKING | |
970 checking_free = (__free_hook != 0); | |
971 | |
972 /* Disable strict free checking, to avoid bug in X library */ | |
973 if (checking_free) | |
974 disable_strict_free_check (); | |
975 #endif | |
976 | |
977 free_gc_cache (DEVICE_X_GC_CACHE (d)); | |
978 if (DEVICE_X_DATA (d)->x_modifier_keymap) | |
979 XFreeModifiermap (DEVICE_X_DATA (d)->x_modifier_keymap); | |
980 if (DEVICE_X_DATA (d)->x_keysym_map) | |
981 XFree ((char *) DEVICE_X_DATA (d)->x_keysym_map); | |
982 | |
983 if (DEVICE_XT_APP_SHELL (d)) | |
984 { | |
985 XtDestroyWidget (DEVICE_XT_APP_SHELL (d)); | |
986 DEVICE_XT_APP_SHELL (d) = NULL; | |
987 } | |
988 | |
989 XtCloseDisplay (display); | |
990 DEVICE_X_DISPLAY (d) = 0; | |
991 #ifdef FREE_CHECKING | |
992 if (checking_free) | |
993 enable_strict_free_check (); | |
994 #endif | |
995 } | |
996 | |
4117 | 997 #ifndef NEW_GC |
428 | 998 free_x_device_struct (d); |
4117 | 999 #endif /* not NEW_GC */ |
428 | 1000 } |
1001 | |
1002 | |
1003 /************************************************************************/ | |
1004 /* handle X errors */ | |
1005 /************************************************************************/ | |
1006 | |
442 | 1007 const char * |
428 | 1008 x_event_name (int event_type) |
1009 { | |
442 | 1010 static const char *events[] = |
428 | 1011 { |
1012 "0: ERROR!", | |
1013 "1: REPLY", | |
1014 "KeyPress", | |
1015 "KeyRelease", | |
1016 "ButtonPress", | |
1017 "ButtonRelease", | |
1018 "MotionNotify", | |
1019 "EnterNotify", | |
1020 "LeaveNotify", | |
1021 "FocusIn", | |
1022 "FocusOut", | |
1023 "KeymapNotify", | |
1024 "Expose", | |
1025 "GraphicsExpose", | |
1026 "NoExpose", | |
1027 "VisibilityNotify", | |
1028 "CreateNotify", | |
1029 "DestroyNotify", | |
1030 "UnmapNotify", | |
1031 "MapNotify", | |
1032 "MapRequest", | |
1033 "ReparentNotify", | |
1034 "ConfigureNotify", | |
1035 "ConfigureRequest", | |
1036 "GravityNotify", | |
1037 "ResizeRequest", | |
1038 "CirculateNotify", | |
1039 "CirculateRequest", | |
1040 "PropertyNotify", | |
1041 "SelectionClear", | |
1042 "SelectionRequest", | |
1043 "SelectionNotify", | |
1044 "ColormapNotify", | |
1045 "ClientMessage", | |
1046 "MappingNotify", | |
1047 "LASTEvent" | |
1048 }; | |
1049 | |
1050 if (event_type < 0 || event_type >= countof (events)) | |
1051 return NULL; | |
1052 return events [event_type]; | |
1053 } | |
1054 | |
1055 /* Handling errors. | |
1056 | |
1057 If an X error occurs which we are not expecting, we have no alternative | |
1058 but to print it to stderr. It would be nice to stuff it into a pop-up | |
1059 buffer, or to print it in the minibuffer, but that's not possible, because | |
1060 one is not allowed to do any I/O on the display connection from an error | |
1061 handler. The guts of Xlib expect these functions to either return or exit. | |
1062 | |
1063 However, there are occasions when we might expect an error to reasonably | |
1064 occur. The interface to this is as follows: | |
1065 | |
1066 Before calling some X routine which may error, call | |
1067 expect_x_error (dpy); | |
1068 | |
1069 Just after calling the X routine, call either: | |
1070 | |
1071 x_error_occurred_p (dpy); | |
1072 | |
1073 to ask whether an error happened (and was ignored), or: | |
1074 | |
1075 signal_if_x_error (dpy, resumable_p); | |
1076 | |
1077 which will call Fsignal() with args appropriate to the X error, if there | |
1078 was one. (Resumable_p is whether the debugger should be allowed to | |
1079 continue from the call to signal.) | |
1080 | |
1081 You must call one of these two routines immediately after calling the X | |
1082 routine; think of them as bookends like BLOCK_INPUT and UNBLOCK_INPUT. | |
1083 */ | |
1084 | |
1085 static int error_expected; | |
1086 static int error_occurred; | |
1087 static XErrorEvent last_error; | |
1088 | |
1089 /* OVERKILL! */ | |
1090 | |
1091 #ifdef EXTERNAL_WIDGET | |
1092 static Lisp_Object | |
1093 x_error_handler_do_enqueue (Lisp_Object frame) | |
1094 { | |
1095 enqueue_magic_eval_event (io_error_delete_frame, frame); | |
1096 return Qt; | |
1097 } | |
1098 | |
1099 static Lisp_Object | |
2333 | 1100 x_error_handler_error (Lisp_Object UNUSED (data), Lisp_Object UNUSED (dummy)) |
428 | 1101 { |
1102 return Qnil; | |
1103 } | |
1104 #endif /* EXTERNAL_WIDGET */ | |
1105 | |
1106 int | |
1107 x_error_handler (Display *disp, XErrorEvent *event) | |
1108 { | |
1109 if (error_expected) | |
1110 { | |
1111 error_expected = 0; | |
1112 error_occurred = 1; | |
1113 last_error = *event; | |
1114 } | |
1115 else | |
1116 { | |
853 | 1117 int depth; |
1118 | |
428 | 1119 #ifdef EXTERNAL_WIDGET |
1120 struct frame *f; | |
1121 struct device *d = get_device_from_display (disp); | |
1122 | |
1123 if ((event->error_code == BadWindow || | |
1124 event->error_code == BadDrawable) | |
1125 && ((f = x_any_window_to_frame (d, event->resourceid)) != 0)) | |
1126 { | |
1127 Lisp_Object frame; | |
1128 | |
1129 /* one of the windows comprising one of our frames has died. | |
1130 This occurs particularly with ExternalShell frames when the | |
1131 client that owns the ExternalShell's window dies. | |
1132 | |
1133 We cannot do any I/O on the display connection so we need | |
1134 to enqueue an eval event so that the deletion happens | |
1135 later. | |
1136 | |
1137 Furthermore, we need to trap any errors (out-of-memory) that | |
1138 may occur when Fenqueue_eval_event is called. | |
1139 */ | |
1140 | |
1141 if (f->being_deleted) | |
1142 return 0; | |
793 | 1143 frame = wrap_frame (f); |
428 | 1144 if (!NILP (condition_case_1 (Qerror, x_error_handler_do_enqueue, |
1145 frame, x_error_handler_error, Qnil))) | |
1146 { | |
1147 f->being_deleted = 1; | |
1148 f->visible = 0; | |
1149 } | |
1150 return 0; | |
1151 } | |
1152 #endif /* EXTERNAL_WIDGET */ | |
1153 | |
853 | 1154 /* #### this should issue a warning instead of outputting to stderr */ |
1155 depth = begin_dont_check_for_quit (); | |
2007 | 1156 #if 0 |
1157 /* This ends up calling X, which isn't allowed in an X error handler | |
1158 */ | |
428 | 1159 stderr_out ("\n%s: ", |
1160 (STRINGP (Vinvocation_name) | |
1161 ? (char *) XSTRING_DATA (Vinvocation_name) | |
1162 : "xemacs")); | |
2007 | 1163 #endif |
428 | 1164 XmuPrintDefaultErrorMessage (disp, event, stderr); |
853 | 1165 unbind_to (depth); |
428 | 1166 } |
1167 return 0; | |
1168 } | |
1169 | |
1170 void | |
1171 expect_x_error (Display *dpy) | |
1172 { | |
1173 assert (!error_expected); | |
1174 XSync (dpy, 0); /* handle pending errors before setting flag */ | |
1175 error_expected = 1; | |
1176 error_occurred = 0; | |
1177 } | |
1178 | |
1179 int | |
1180 x_error_occurred_p (Display *dpy) | |
1181 { | |
1182 int val; | |
1183 XSync (dpy, 0); /* handle pending errors before setting flag */ | |
1184 val = error_occurred; | |
1185 error_expected = 0; | |
1186 error_occurred = 0; | |
1187 return val; | |
1188 } | |
1189 | |
1190 int | |
1191 signal_if_x_error (Display *dpy, int resumable_p) | |
1192 { | |
771 | 1193 Extbyte buf[1024]; |
867 | 1194 Ibyte num[100]; |
428 | 1195 Lisp_Object data; |
1196 if (! x_error_occurred_p (dpy)) | |
1197 return 0; | |
1198 data = Qnil; | |
771 | 1199 qxesprintf (num, "0x%X", (unsigned int) last_error.resourceid); |
1200 data = Fcons (build_intstring (num), data); | |
1201 qxesprintf (num, "%d", last_error.request_code); | |
1202 XGetErrorDatabaseText (last_error.display, "XRequest", (char *) num, "", | |
1203 buf, sizeof (buf)); | |
1204 if (*buf) | |
1205 data = Fcons (build_ext_string (buf, Qnative), data); | |
1206 else | |
1207 { | |
1208 qxesprintf (num, "Request-%d", last_error.request_code); | |
1209 data = Fcons (build_intstring (num), data); | |
1210 } | |
428 | 1211 XGetErrorText (last_error.display, last_error.error_code, buf, sizeof (buf)); |
771 | 1212 data = Fcons (build_ext_string (buf, Qnative), data); |
428 | 1213 again: |
1214 Fsignal (Qx_error, data); | |
1215 if (! resumable_p) goto again; | |
1216 return 1; | |
1217 } | |
1218 | |
1219 int | |
1220 x_IO_error_handler (Display *disp) | |
1221 { | |
1222 /* This function can GC */ | |
1223 Lisp_Object dev; | |
1224 struct device *d = get_device_from_display_1 (disp); | |
1225 | |
756 | 1226 if (!d) |
1227 d = device_being_initialized; | |
1228 | |
428 | 1229 assert (d != NULL); |
793 | 1230 dev = wrap_device (d); |
428 | 1231 |
1232 if (NILP (find_nonminibuffer_frame_not_on_device (dev))) | |
1233 { | |
853 | 1234 int depth = begin_dont_check_for_quit (); |
428 | 1235 /* We're going down. */ |
867 | 1236 Ibyte *errmess; |
771 | 1237 GET_STRERROR (errmess, errno); |
1238 stderr_out ("\n%s: Fatal I/O Error %d (%s) on display " | |
1239 "connection \"%s\"\n", | |
1240 (STRINGP (Vinvocation_name) ? | |
1241 (char *) XSTRING_DATA (Vinvocation_name) : "xemacs"), | |
1242 errno, errmess, DisplayString (disp)); | |
1243 stderr_out (" after %lu requests (%lu known processed) with %d " | |
1244 "events remaining.\n", | |
1245 NextRequest (disp) - 1, LastKnownRequestProcessed (disp), | |
1246 QLength (disp)); | |
428 | 1247 /* assert (!_Xdebug); */ |
853 | 1248 unbind_to (depth); |
428 | 1249 } |
1250 else | |
1251 { | |
867 | 1252 Ibyte *errmess; |
771 | 1253 GET_STRERROR (errmess, errno); |
428 | 1254 warn_when_safe |
1255 (Qx, Qcritical, | |
1256 "I/O Error %d (%s) on display connection\n" | |
2116 | 1257 " \"%s\" after %lu requests (%lu known processed)\n" |
428 | 1258 " with %d events remaining.\n" |
1259 " Throwing to top level.\n", | |
771 | 1260 errno, errmess, DisplayString (disp), |
428 | 1261 NextRequest (disp) - 1, LastKnownRequestProcessed (disp), |
1262 QLength (disp)); | |
1263 } | |
1264 | |
1265 /* According to X specs, we should not return from this function, or | |
1266 Xlib might just decide to exit(). So we mark the offending | |
1267 console for deletion and throw to top level. */ | |
1268 if (d) | |
3466 | 1269 { |
1270 enqueue_magic_eval_event (io_error_delete_device, dev); | |
1271 DEVICE_X_BEING_DELETED (d) = 1; | |
1272 } | |
428 | 1273 Fthrow (Qtop_level, Qnil); |
1274 | |
2268 | 1275 RETURN_NOT_REACHED (0); |
428 | 1276 } |
1277 | |
1278 DEFUN ("x-debug-mode", Fx_debug_mode, 1, 2, 0, /* | |
1279 With a true arg, make the connection to the X server synchronous. | |
1280 With false, make it asynchronous. Synchronous connections are much slower, | |
1281 but are useful for debugging. (If you get X errors, make the connection | |
1282 synchronous, and use a debugger to set a breakpoint on `x_error_handler'. | |
1283 Your backtrace of the C stack will now be useful. In asynchronous mode, | |
1284 the stack above `x_error_handler' isn't helpful because of buffering.) | |
1285 If DEVICE is not specified, the selected device is assumed. | |
1286 | |
1287 Calling this function is the same as calling the C function `XSynchronize', | |
1288 or starting the program with the `-sync' command line argument. | |
1289 */ | |
1290 (arg, device)) | |
1291 { | |
1292 struct device *d = decode_x_device (device); | |
1293 | |
1294 XSynchronize (DEVICE_X_DISPLAY (d), !NILP (arg)); | |
1295 | |
1296 if (!NILP (arg)) | |
1297 message ("X connection is synchronous"); | |
1298 else | |
1299 message ("X connection is asynchronous"); | |
1300 | |
1301 return arg; | |
1302 } | |
1303 | |
1304 | |
1305 /************************************************************************/ | |
1306 /* X resources */ | |
1307 /************************************************************************/ | |
1308 | |
1309 #if 0 /* bah humbug. The whole "widget == resource" stuff is such | |
1310 a crock of shit that I'm just going to ignore it all. */ | |
1311 | |
1312 /* If widget is NULL, we are retrieving device or global face data. */ | |
1313 | |
1314 static void | |
1315 construct_name_list (Display *display, Widget widget, char *fake_name, | |
1204 | 1316 char *fake_class, char *name, char *class_) |
428 | 1317 { |
1318 char *stack [100][2]; | |
2552 | 1319 Widget this_widget; |
428 | 1320 int count = 0; |
1321 char *name_tail, *class_tail; | |
1322 | |
1323 if (widget) | |
1324 { | |
2552 | 1325 for (this_widget = widget; this_widget; |
1326 this_widget = XtParent (this_widget)) | |
428 | 1327 { |
2552 | 1328 stack [count][0] = this_widget->core.name; |
1329 stack [count][1] = XtClass (this_widget)->core_class.class_name; | |
428 | 1330 count++; |
1331 } | |
1332 count--; | |
1333 } | |
1334 else if (fake_name && fake_class) | |
1335 { | |
1336 stack [count][0] = fake_name; | |
1337 stack [count][1] = fake_class; | |
1338 count++; | |
1339 } | |
1340 | |
1341 /* The root widget is an application shell; resource lookups use the | |
1342 specified application name and application class in preference to | |
1343 the name/class of that widget (which is argv[0] / "ApplicationShell"). | |
1344 Generally the app name and class will be argv[0] / "Emacs" but | |
1345 the former can be set via the -name command-line option, and the | |
1346 latter can be set by changing `x-emacs-application-class' in | |
1347 lisp/term/x-win.el. | |
1348 */ | |
1349 XtGetApplicationNameAndClass (display, | |
1350 &stack [count][0], | |
1351 &stack [count][1]); | |
1352 | |
1353 name [0] = 0; | |
1204 | 1354 class_ [0] = 0; |
428 | 1355 |
1356 name_tail = name; | |
1204 | 1357 class_tail = class_; |
428 | 1358 for (; count >= 0; count--) |
1359 { | |
1360 strcat (name_tail, stack [count][0]); | |
1361 for (; *name_tail; name_tail++) | |
1362 if (*name_tail == '.') *name_tail = '_'; | |
1363 strcat (name_tail, "."); | |
1364 name_tail++; | |
1365 | |
1366 strcat (class_tail, stack [count][1]); | |
1367 for (; *class_tail; class_tail++) | |
1368 if (*class_tail == '.') *class_tail = '_'; | |
1369 strcat (class_tail, "."); | |
1370 class_tail++; | |
1371 } | |
1372 } | |
1373 | |
1374 #endif /* 0 */ | |
1375 | |
771 | 1376 static Extbyte_dynarr *name_Extbyte_dynarr; |
1377 static Extbyte_dynarr *class_Extbyte_dynarr; | |
428 | 1378 |
1379 /* Given a locale and device specification from x-get-resource or | |
1380 x-get-resource-prefix, return the resource prefix and display to | |
1381 fetch the resource on. */ | |
1382 | |
1383 static void | |
1384 x_get_resource_prefix (Lisp_Object locale, Lisp_Object device, | |
771 | 1385 Display **display_out, Extbyte_dynarr *name, |
1204 | 1386 Extbyte_dynarr *class_) |
428 | 1387 { |
1388 if (NILP (locale)) | |
1389 locale = Qglobal; | |
1390 if (NILP (Fvalid_specifier_locale_p (locale))) | |
563 | 1391 invalid_argument ("Invalid locale", locale); |
428 | 1392 if (WINDOWP (locale)) |
1393 /* #### I can't come up with any coherent way of naming windows. | |
1394 By relative position? That seems tricky because windows | |
1395 can change position, be split, etc. By order of creation? | |
1396 That seems less than useful. */ | |
563 | 1397 signal_error (Qunimplemented, |
1398 "Windows currently can't be resourced", locale); | |
428 | 1399 |
1400 if (!NILP (device) && !DEVICEP (device)) | |
1401 CHECK_DEVICE (device); | |
1402 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device))) | |
1403 device = Qnil; | |
1404 if (NILP (device)) | |
1405 { | |
1406 device = DFW_DEVICE (locale); | |
1407 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device))) | |
1408 device = Qnil; | |
1409 if (NILP (device)) | |
872 | 1410 device = get_default_device (Qx); |
428 | 1411 if (NILP (device)) |
1412 { | |
1413 *display_out = 0; | |
1414 return; | |
1415 } | |
1416 } | |
1417 | |
1418 *display_out = DEVICE_X_DISPLAY (XDEVICE (device)); | |
1419 | |
1420 { | |
771 | 1421 Extbyte *appname, *appclass; |
428 | 1422 int name_len, class_len; |
1423 XtGetApplicationNameAndClass (*display_out, &appname, &appclass); | |
1424 name_len = strlen (appname); | |
1425 class_len = strlen (appclass); | |
771 | 1426 Dynarr_add_many (name, appname, name_len); |
1204 | 1427 Dynarr_add_many (class_, appclass, class_len); |
428 | 1428 validify_resource_component (Dynarr_atp (name, 0), name_len); |
1204 | 1429 validify_resource_component (Dynarr_atp (class_, 0), class_len); |
428 | 1430 } |
1431 | |
1432 if (EQ (locale, Qglobal)) | |
1433 return; | |
1434 if (BUFFERP (locale)) | |
1435 { | |
1436 Dynarr_add_literal_string (name, ".buffer."); | |
1437 /* we know buffer is live; otherwise we got an error above. */ | |
1438 Dynarr_add_validified_lisp_string (name, Fbuffer_name (locale)); | |
1204 | 1439 Dynarr_add_literal_string (class_, ".EmacsLocaleType.EmacsBuffer"); |
428 | 1440 } |
1441 else if (FRAMEP (locale)) | |
1442 { | |
1443 Dynarr_add_literal_string (name, ".frame."); | |
1444 /* we know frame is live; otherwise we got an error above. */ | |
1445 Dynarr_add_validified_lisp_string (name, Fframe_name (locale)); | |
1204 | 1446 Dynarr_add_literal_string (class_, ".EmacsLocaleType.EmacsFrame"); |
428 | 1447 } |
1448 else | |
1449 { | |
1450 assert (DEVICEP (locale)); | |
1451 Dynarr_add_literal_string (name, ".device."); | |
1452 /* we know device is live; otherwise we got an error above. */ | |
1453 Dynarr_add_validified_lisp_string (name, Fdevice_name (locale)); | |
1204 | 1454 Dynarr_add_literal_string (class_, ".EmacsLocaleType.EmacsDevice"); |
428 | 1455 } |
1456 return; | |
1457 } | |
1458 | |
1459 DEFUN ("x-get-resource", Fx_get_resource, 3, 6, 0, /* | |
1460 Retrieve an X resource from the resource manager. | |
1461 | |
1462 The first arg is the name of the resource to retrieve, such as "font". | |
1463 The second arg is the class of the resource to retrieve, such as "Font". | |
3025 | 1464 The third arg must be one of the symbols `string', `integer', `natnum', or |
1465 `boolean', specifying the type of object that the database is searched for. | |
428 | 1466 The fourth arg is the locale to search for the resources on, and can |
3025 | 1467 currently be a buffer, a frame, a device, or `global'. If omitted, it |
1468 defaults to `global'. | |
428 | 1469 The fifth arg is the device to search for the resources on. (The resource |
1470 database for a particular device is constructed by combining non-device- | |
1471 specific resources such as any command-line resources specified and any | |
1472 app-defaults files found [or the fallback resources supplied by XEmacs, | |
1473 if no app-defaults file is found] with device-specific resources such as | |
1474 those supplied using xrdb.) If omitted, it defaults to the device of | |
1475 LOCALE, if a device can be derived (i.e. if LOCALE is a frame or device), | |
1476 and otherwise defaults to the value of `default-x-device'. | |
1477 The sixth arg NOERROR, if non-nil, means do not signal an error if a | |
1478 bogus resource specification was retrieved (e.g. if a non-integer was | |
1479 given when an integer was requested). In this case, a warning is issued | |
442 | 1480 instead, unless NOERROR is t, in which case no warning is issued. |
428 | 1481 |
1482 The resource names passed to this function are looked up relative to the | |
1483 locale. | |
1484 | |
1485 If you want to search for a subresource, you just need to specify the | |
1486 resource levels in NAME and CLASS. For example, NAME could be | |
1487 "modeline.attributeFont", and CLASS "Face.AttributeFont". | |
1488 | |
1489 Specifically, | |
1490 | |
1491 1) If LOCALE is a buffer, a call | |
1492 | |
1493 (x-get-resource "foreground" "Foreground" 'string SOME-BUFFER) | |
1494 | |
1495 is an interface to a C call something like | |
1496 | |
1497 XrmGetResource (db, "xemacs.buffer.BUFFER-NAME.foreground", | |
1498 "Emacs.EmacsLocaleType.EmacsBuffer.Foreground", | |
1499 "String"); | |
1500 | |
1501 2) If LOCALE is a frame, a call | |
1502 | |
1503 (x-get-resource "foreground" "Foreground" 'string SOME-FRAME) | |
1504 | |
1505 is an interface to a C call something like | |
1506 | |
1507 XrmGetResource (db, "xemacs.frame.FRAME-NAME.foreground", | |
1508 "Emacs.EmacsLocaleType.EmacsFrame.Foreground", | |
1509 "String"); | |
1510 | |
1511 3) If LOCALE is a device, a call | |
1512 | |
1513 (x-get-resource "foreground" "Foreground" 'string SOME-DEVICE) | |
1514 | |
1515 is an interface to a C call something like | |
1516 | |
1517 XrmGetResource (db, "xemacs.device.DEVICE-NAME.foreground", | |
1518 "Emacs.EmacsLocaleType.EmacsDevice.Foreground", | |
1519 "String"); | |
1520 | |
3025 | 1521 4) If LOCALE is `global', a call |
428 | 1522 |
1523 (x-get-resource "foreground" "Foreground" 'string 'global) | |
1524 | |
1525 is an interface to a C call something like | |
1526 | |
1527 XrmGetResource (db, "xemacs.foreground", | |
1528 "Emacs.Foreground", | |
1529 "String"); | |
1530 | |
3025 | 1531 Note that for `global', no prefix is added other than that of the |
428 | 1532 application itself; thus, you can use this locale to retrieve |
1533 arbitrary application resources, if you really want to. | |
1534 | |
1535 The returned value of this function is nil if the queried resource is not | |
1536 found. If the third arg is `string', a string is returned, and if it is | |
1537 `integer', an integer is returned. If the third arg is `boolean', then the | |
1538 returned value is the list (t) for true, (nil) for false, and is nil to | |
430 | 1539 mean ``unspecified''. |
428 | 1540 */ |
1204 | 1541 (name, class_, type, locale, device, noerror)) |
428 | 1542 { |
771 | 1543 Extbyte *name_string, *class_string; |
1544 Extbyte *raw_result; | |
428 | 1545 XrmDatabase db; |
1546 Display *display; | |
578 | 1547 Error_Behavior errb = decode_error_behavior_flag (noerror); |
771 | 1548 Lisp_Object codesys; |
428 | 1549 |
1550 CHECK_STRING (name); | |
1204 | 1551 CHECK_STRING (class_); |
428 | 1552 CHECK_SYMBOL (type); |
1553 | |
771 | 1554 Dynarr_reset (name_Extbyte_dynarr); |
1555 Dynarr_reset (class_Extbyte_dynarr); | |
428 | 1556 |
1557 x_get_resource_prefix (locale, device, &display, | |
771 | 1558 name_Extbyte_dynarr, class_Extbyte_dynarr); |
428 | 1559 if (!display) |
1560 return Qnil; | |
1561 | |
1562 db = XtDatabase (display); | |
771 | 1563 codesys = coding_system_of_xrm_database (db); |
1564 Dynarr_add (name_Extbyte_dynarr, '.'); | |
1565 Dynarr_add_lisp_string (name_Extbyte_dynarr, name, Qbinary); | |
1566 Dynarr_add (class_Extbyte_dynarr, '.'); | |
1204 | 1567 Dynarr_add_lisp_string (class_Extbyte_dynarr, class_, Qbinary); |
771 | 1568 Dynarr_add (name_Extbyte_dynarr, '\0'); |
1569 Dynarr_add (class_Extbyte_dynarr, '\0'); | |
428 | 1570 |
771 | 1571 name_string = Dynarr_atp (name_Extbyte_dynarr, 0); |
1572 class_string = Dynarr_atp (class_Extbyte_dynarr, 0); | |
428 | 1573 |
1574 { | |
1575 XrmValue xrm_value; | |
1576 XrmName namelist[100]; | |
1577 XrmClass classlist[100]; | |
1578 XrmName *namerest = namelist; | |
1579 XrmClass *classrest = classlist; | |
1580 XrmRepresentation xrm_type; | |
1581 XrmRepresentation string_quark; | |
1582 int result; | |
1583 XrmStringToNameList (name_string, namelist); | |
1584 XrmStringToClassList (class_string, classlist); | |
1585 string_quark = XrmStringToQuark ("String"); | |
1586 | |
1587 /* ensure that they have the same length */ | |
1588 while (namerest[0] && classrest[0]) | |
1589 namerest++, classrest++; | |
1590 if (namerest[0] || classrest[0]) | |
563 | 1591 { |
1592 maybe_signal_error_2 | |
1593 (Qstructure_formation_error, | |
1204 | 1594 "class list and name list must be the same length", name, class_, |
563 | 1595 Qresource, errb); |
1596 return Qnil; | |
1597 } | |
428 | 1598 result = XrmQGetResource (db, namelist, classlist, &xrm_type, &xrm_value); |
1599 | |
1600 if (result != True || xrm_type != string_quark) | |
1601 return Qnil; | |
771 | 1602 raw_result = (Extbyte *) xrm_value.addr; |
428 | 1603 } |
1604 | |
1605 if (EQ (type, Qstring)) | |
771 | 1606 return build_ext_string (raw_result, codesys); |
428 | 1607 else if (EQ (type, Qboolean)) |
1608 { | |
771 | 1609 if (!strcasecmp (raw_result, "off") || |
1610 !strcasecmp (raw_result, "false") || | |
1611 !strcasecmp (raw_result, "no")) | |
428 | 1612 return Fcons (Qnil, Qnil); |
771 | 1613 if (!strcasecmp (raw_result, "on") || |
1614 !strcasecmp (raw_result, "true") || | |
1615 !strcasecmp (raw_result, "yes")) | |
428 | 1616 return Fcons (Qt, Qnil); |
563 | 1617 return maybe_signal_continuable_error_2 |
1618 (Qinvalid_operation, "Can't convert to a Boolean", | |
771 | 1619 build_ext_string (name_string, Qbinary), |
1620 build_ext_string (raw_result, codesys), Qresource, | |
563 | 1621 errb); |
428 | 1622 } |
1623 else if (EQ (type, Qinteger) || EQ (type, Qnatnum)) | |
1624 { | |
1625 int i; | |
1626 char c; | |
1627 if (1 != sscanf (raw_result, "%d%c", &i, &c)) | |
563 | 1628 return maybe_signal_continuable_error_2 |
1629 (Qinvalid_operation, "Can't convert to an integer", | |
771 | 1630 build_ext_string (name_string, Qbinary), |
1631 build_ext_string (raw_result, codesys), Qresource, | |
563 | 1632 errb); |
428 | 1633 else if (EQ (type, Qnatnum) && i < 0) |
563 | 1634 return maybe_signal_continuable_error_2 |
1635 (Qinvalid_argument, "Invalid numerical value for resource", | |
771 | 1636 make_int (i), build_ext_string (name_string, Qbinary), |
1637 Qresource, errb); | |
428 | 1638 else |
1639 return make_int (i); | |
1640 } | |
1641 else | |
1642 { | |
1643 return maybe_signal_continuable_error | |
563 | 1644 (Qwrong_type_argument, "Should be string, integer, natnum or boolean", |
1645 type, Qresource, errb); | |
428 | 1646 } |
1647 } | |
1648 | |
1649 DEFUN ("x-get-resource-prefix", Fx_get_resource_prefix, 1, 2, 0, /* | |
1650 Return the resource prefix for LOCALE on DEVICE. | |
1651 The resource prefix is the strings used to prefix resources if | |
1652 the LOCALE and DEVICE arguments were passed to `x-get-resource'. | |
1653 The returned value is a cons of a name prefix and a class prefix. | |
1654 For example, if LOCALE is a frame, the returned value might be | |
1655 \("xemacs.frame.FRAME-NAME" . "Emacs.EmacsLocaleType.EmacsFrame"). | |
1656 If no valid X device for resourcing can be obtained, this function | |
1657 returns nil. (In such a case, `x-get-resource' would always return nil.) | |
1658 */ | |
1659 (locale, device)) | |
1660 { | |
1661 Display *display; | |
1662 | |
771 | 1663 Dynarr_reset (name_Extbyte_dynarr ); |
1664 Dynarr_reset (class_Extbyte_dynarr); | |
428 | 1665 |
1666 x_get_resource_prefix (locale, device, &display, | |
771 | 1667 name_Extbyte_dynarr, class_Extbyte_dynarr); |
428 | 1668 if (!display) |
1669 return Qnil; | |
1670 | |
867 | 1671 return Fcons (make_string ((Ibyte *) Dynarr_atp (name_Extbyte_dynarr, 0), |
771 | 1672 Dynarr_length (name_Extbyte_dynarr)), |
867 | 1673 make_string ((Ibyte *) Dynarr_atp (class_Extbyte_dynarr, 0), |
771 | 1674 Dynarr_length (class_Extbyte_dynarr))); |
428 | 1675 } |
1676 | |
1677 DEFUN ("x-put-resource", Fx_put_resource, 1, 2, 0, /* | |
1678 Add a resource to the resource database for DEVICE. | |
1679 RESOURCE-LINE specifies the resource to add and should be a | |
1680 standard resource specification. | |
1681 */ | |
1682 (resource_line, device)) | |
1683 { | |
1684 struct device *d = decode_device (device); | |
1685 | |
1686 if (DEVICE_X_P (d)) | |
1687 { | |
1688 XrmDatabase db = XtDatabase (DEVICE_X_DISPLAY (d)); | |
771 | 1689 Extbyte *str, *colon_pos; |
1690 | |
1691 CHECK_STRING (resource_line); | |
1692 LISP_STRING_TO_EXTERNAL (resource_line, str, | |
1693 coding_system_of_xrm_database (db)); | |
1694 if (!(colon_pos = strchr (str, ':')) || strchr (str, '\n')) | |
1695 invalid: | |
1696 syntax_error ("Invalid resource line", resource_line); | |
1697 if ((int) | |
1698 strspn (str, | |
1699 /* Only the following chars are allowed before the colon */ | |
1700 " \t.*?abcdefghijklmnopqrstuvwxyz" | |
1701 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-") | |
1702 != colon_pos - str) | |
1703 goto invalid; | |
1704 | |
428 | 1705 XrmPutLineResource (&db, str); |
1706 } | |
1707 | |
1708 return Qnil; | |
1709 } | |
1710 | |
1711 | |
1712 /************************************************************************/ | |
1713 /* display information functions */ | |
1714 /************************************************************************/ | |
1715 | |
1716 DEFUN ("default-x-device", Fdefault_x_device, 0, 0, 0, /* | |
1717 Return the default X device for resourcing. | |
1718 This is the first-created X device that still exists. | |
872 | 1719 See also `default-device'. |
428 | 1720 */ |
1721 ()) | |
1722 { | |
872 | 1723 return get_default_device (Qx); |
428 | 1724 } |
1725 | |
1726 DEFUN ("x-display-visual-class", Fx_display_visual_class, 0, 1, 0, /* | |
1727 Return the visual class of the X display DEVICE is using. | |
1728 This can be altered from the default at startup using the XResource "EmacsVisual". | |
1729 The returned value will be one of the symbols `static-gray', `gray-scale', | |
1730 `static-color', `pseudo-color', `true-color', or `direct-color'. | |
1731 */ | |
1732 (device)) | |
1733 { | |
1734 Visual *vis = DEVICE_X_VISUAL (decode_x_device (device)); | |
1204 | 1735 switch (vis->X_CLASSFIELD) |
428 | 1736 { |
1737 case StaticGray: return intern ("static-gray"); | |
1738 case GrayScale: return intern ("gray-scale"); | |
1739 case StaticColor: return intern ("static-color"); | |
1740 case PseudoColor: return intern ("pseudo-color"); | |
1741 case TrueColor: return intern ("true-color"); | |
1742 case DirectColor: return intern ("direct-color"); | |
1743 default: | |
563 | 1744 invalid_state ("display has an unknown visual class", Qunbound); |
428 | 1745 return Qnil; /* suppress compiler warning */ |
1746 } | |
1747 } | |
1748 | |
1749 DEFUN ("x-display-visual-depth", Fx_display_visual_depth, 0, 1, 0, /* | |
1750 Return the bitplane depth of the visual the X display DEVICE is using. | |
1751 */ | |
1752 (device)) | |
1753 { | |
1754 return make_int (DEVICE_X_DEPTH (decode_x_device (device))); | |
1755 } | |
1756 | |
1757 static Lisp_Object | |
1758 x_device_system_metrics (struct device *d, | |
1759 enum device_metrics m) | |
1760 { | |
1761 Display *dpy = DEVICE_X_DISPLAY (d); | |
1762 | |
1763 switch (m) | |
1764 { | |
1765 case DM_size_device: | |
1766 return Fcons (make_int (DisplayWidth (dpy, DefaultScreen (dpy))), | |
1767 make_int (DisplayHeight (dpy, DefaultScreen (dpy)))); | |
1768 case DM_size_device_mm: | |
1769 return Fcons (make_int (DisplayWidthMM (dpy, DefaultScreen (dpy))), | |
1770 make_int (DisplayHeightMM (dpy, DefaultScreen (dpy)))); | |
1771 case DM_num_bit_planes: | |
1772 return make_int (DisplayPlanes (dpy, DefaultScreen (dpy))); | |
1773 case DM_num_color_cells: | |
1774 return make_int (DisplayCells (dpy, DefaultScreen (dpy))); | |
1942 | 1775 case DM_num_screens: |
1776 return make_int (ScreenCount (dpy)); | |
1777 case DM_backing_store: | |
1778 switch (DoesBackingStore (DefaultScreenOfDisplay (dpy))) | |
1779 { | |
1780 case Always: | |
1781 return intern ("always"); | |
1782 case WhenMapped: | |
1783 return intern ("when-mapped"); | |
1784 default: | |
1785 return intern ("not-useful"); | |
1786 } | |
1787 case DM_save_under: | |
1788 return (DoesSaveUnders (DefaultScreenOfDisplay (dpy)) == True) | |
1789 ? Qt : Qnil; | |
428 | 1790 default: /* No such device metric property for X devices */ |
1791 return Qunbound; | |
1792 } | |
1793 } | |
1794 | |
1795 DEFUN ("x-server-vendor", Fx_server_vendor, 0, 1, 0, /* | |
1796 Return the vendor ID string of the X server DEVICE is on. | |
1797 Return the empty string if the vendor ID string cannot be determined. | |
1798 */ | |
1799 (device)) | |
1800 { | |
1801 Display *dpy = get_x_display (device); | |
2367 | 1802 Extbyte *vendor = ServerVendor (dpy); |
428 | 1803 |
2367 | 1804 return build_ext_string (vendor ? vendor : "", Qx_hpc_encoding); |
428 | 1805 } |
1806 | |
1807 DEFUN ("x-server-version", Fx_server_version, 0, 1, 0, /* | |
1808 Return the version numbers of the X server DEVICE is on. | |
1809 The returned value is a list of three integers: the major and minor | |
1810 version numbers of the X Protocol in use, and the vendor-specific release | |
1811 number. See also `x-server-vendor'. | |
1812 */ | |
1813 (device)) | |
1814 { | |
1815 Display *dpy = get_x_display (device); | |
1816 | |
1817 return list3 (make_int (ProtocolVersion (dpy)), | |
1818 make_int (ProtocolRevision (dpy)), | |
1819 make_int (VendorRelease (dpy))); | |
1820 } | |
1821 | |
1822 DEFUN ("x-valid-keysym-name-p", Fx_valid_keysym_name_p, 1, 1, 0, /* | |
1823 Return true if KEYSYM names a keysym that the X library knows about. | |
1824 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in | |
1825 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system. | |
1826 */ | |
1827 (keysym)) | |
1828 { | |
2367 | 1829 const Extbyte *keysym_ext; |
428 | 1830 |
1831 CHECK_STRING (keysym); | |
442 | 1832 LISP_STRING_TO_EXTERNAL (keysym, keysym_ext, Qctext); |
428 | 1833 |
1834 return XStringToKeysym (keysym_ext) ? Qt : Qnil; | |
1835 } | |
1836 | |
1837 DEFUN ("x-keysym-hash-table", Fx_keysym_hash_table, 0, 1, 0, /* | |
440 | 1838 Return a hash table containing a key for all keysyms on DEVICE. |
1839 DEVICE must be an X11 display device. See `x-keysym-on-keyboard-p'. | |
428 | 1840 */ |
1841 (device)) | |
1842 { | |
1843 struct device *d = decode_device (device); | |
1844 if (!DEVICE_X_P (d)) | |
563 | 1845 gui_error ("Not an X device", device); |
428 | 1846 |
1847 return DEVICE_X_DATA (d)->x_keysym_map_hash_table; | |
1848 } | |
1849 | |
1850 DEFUN ("x-keysym-on-keyboard-sans-modifiers-p", Fx_keysym_on_keyboard_sans_modifiers_p, | |
1851 1, 2, 0, /* | |
1852 Return true if KEYSYM names a key on the keyboard of DEVICE. | |
1853 More precisely, return true if pressing a physical key | |
1854 on the keyboard of DEVICE without any modifier keys generates KEYSYM. | |
1855 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in | |
1856 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system. | |
1857 The keysym name can be provided in two forms: | |
1858 - if keysym is a string, it must be the name as known to X windows. | |
1859 - if keysym is a symbol, it must be the name as known to XEmacs. | |
1860 The two names differ in capitalization and underscoring. | |
1861 */ | |
1862 (keysym, device)) | |
1863 { | |
1864 struct device *d = decode_device (device); | |
1865 if (!DEVICE_X_P (d)) | |
563 | 1866 gui_error ("Not an X device", device); |
428 | 1867 |
1868 return (EQ (Qsans_modifiers, | |
1869 Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASH_TABLE (d), Qnil)) ? | |
1870 Qt : Qnil); | |
1871 } | |
1872 | |
1873 | |
1874 DEFUN ("x-keysym-on-keyboard-p", Fx_keysym_on_keyboard_p, 1, 2, 0, /* | |
1875 Return true if KEYSYM names a key on the keyboard of DEVICE. | |
1876 More precisely, return true if some keystroke (possibly including modifiers) | |
1877 on the keyboard of DEVICE keys generates KEYSYM. | |
1878 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in | |
1879 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system. | |
1880 The keysym name can be provided in two forms: | |
1881 - if keysym is a string, it must be the name as known to X windows. | |
1882 - if keysym is a symbol, it must be the name as known to XEmacs. | |
1883 The two names differ in capitalization and underscoring. | |
2828 | 1884 |
1885 This function is not entirely trustworthy, in that Xlib compose processing | |
1886 can produce keysyms that XEmacs will not have seen when it examined the | |
1887 keysyms available on startup. So pressing `dead-diaeresis' and then 'a' may | |
1888 pass `adiaeresis' to XEmacs, or (in some implementations) even `U00E4', | |
1889 where `(x-keysym-on-keyboard-p 'adiaeresis)' and `(x-keysym-on-keyboard-p | |
1890 'U00E4)' would both have returned nil. Subsequent to XEmacs seeing a keysym | |
1891 it was previously unaware of, the predicate will take note of it, though. | |
428 | 1892 */ |
1893 (keysym, device)) | |
1894 { | |
1895 struct device *d = decode_device (device); | |
1896 if (!DEVICE_X_P (d)) | |
563 | 1897 gui_error ("Not an X device", device); |
428 | 1898 |
1899 return (NILP (Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASH_TABLE (d), Qnil)) ? | |
1900 Qnil : Qt); | |
1901 } | |
1902 | |
1903 | |
1904 /************************************************************************/ | |
1905 /* grabs and ungrabs */ | |
1906 /************************************************************************/ | |
1907 | |
1908 DEFUN ("x-grab-pointer", Fx_grab_pointer, 0, 3, 0, /* | |
1909 Grab the pointer and restrict it to its current window. | |
1910 If optional DEVICE argument is nil, the default device will be used. | |
1911 If optional CURSOR argument is non-nil, change the pointer shape to that | |
1912 until `x-ungrab-pointer' is called (it should be an object returned by the | |
1913 `make-cursor-glyph' function). | |
1914 If the second optional argument IGNORE-KEYBOARD is non-nil, ignore all | |
1915 keyboard events during the grab. | |
1916 Returns t if the grab is successful, nil otherwise. | |
1917 */ | |
1918 (device, cursor, ignore_keyboard)) | |
1919 { | |
1920 Window w; | |
1921 int pointer_mode, result; | |
1922 struct device *d = decode_x_device (device); | |
1923 | |
1924 if (!NILP (cursor)) | |
1925 { | |
1926 CHECK_POINTER_GLYPH (cursor); | |
1927 cursor = glyph_image_instance (cursor, device, ERROR_ME, 0); | |
1928 } | |
1929 | |
1930 if (!NILP (ignore_keyboard)) | |
1931 pointer_mode = GrabModeSync; | |
1932 else | |
1933 pointer_mode = GrabModeAsync; | |
1934 | |
1935 w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d))); | |
1936 | |
1937 /* #### Possibly this needs to gcpro the cursor somehow, but it doesn't | |
1938 seem to cause a problem if XFreeCursor is called on a cursor in use | |
1939 in a grab; I suppose the X server counts the grab as a reference | |
1940 and doesn't free it until it exits? */ | |
1941 result = XGrabPointer (DEVICE_X_DISPLAY (d), w, | |
1942 False, | |
1943 ButtonMotionMask | | |
1944 ButtonPressMask | | |
1945 ButtonReleaseMask | | |
1946 PointerMotionHintMask, | |
1947 GrabModeAsync, /* Keep pointer events flowing */ | |
1948 pointer_mode, /* Stall keyboard events */ | |
1949 w, /* Stay in this window */ | |
1950 (NILP (cursor) ? 0 | |
1951 : XIMAGE_INSTANCE_X_CURSOR (cursor)), | |
1952 CurrentTime); | |
1953 return (result == GrabSuccess) ? Qt : Qnil; | |
1954 } | |
1955 | |
1956 DEFUN ("x-ungrab-pointer", Fx_ungrab_pointer, 0, 1, 0, /* | |
1957 Release a pointer grab made with `x-grab-pointer'. | |
1958 If optional first arg DEVICE is nil the default device is used. | |
1959 If it is t the pointer will be released on all X devices. | |
1960 */ | |
1961 (device)) | |
1962 { | |
1963 if (!EQ (device, Qt)) | |
1964 { | |
1965 Display *dpy = get_x_display (device); | |
1966 XUngrabPointer (dpy, CurrentTime); | |
1967 } | |
1968 else | |
1969 { | |
1970 Lisp_Object devcons, concons; | |
1971 | |
1972 DEVICE_LOOP_NO_BREAK (devcons, concons) | |
1973 { | |
1974 struct device *d = XDEVICE (XCAR (devcons)); | |
1975 | |
1976 if (DEVICE_X_P (d)) | |
1977 XUngrabPointer (DEVICE_X_DISPLAY (d), CurrentTime); | |
1978 } | |
1979 } | |
1980 | |
1981 return Qnil; | |
1982 } | |
1983 | |
1984 DEFUN ("x-grab-keyboard", Fx_grab_keyboard, 0, 1, 0, /* | |
1985 Grab the keyboard on the given device (defaulting to the selected one). | |
1986 So long as the keyboard is grabbed, all keyboard events will be delivered | |
1987 to emacs -- it is not possible for other X clients to eavesdrop on them. | |
1988 Ungrab the keyboard with `x-ungrab-keyboard' (use an unwind-protect). | |
1989 Returns t if the grab is successful, nil otherwise. | |
1990 */ | |
1991 (device)) | |
1992 { | |
1993 struct device *d = decode_x_device (device); | |
1994 Window w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d))); | |
1995 Display *dpy = DEVICE_X_DISPLAY (d); | |
1996 Status status; | |
1997 XSync (dpy, False); | |
1998 status = XGrabKeyboard (dpy, w, True, | |
1999 /* I don't really understand sync-vs-async | |
2000 grabs, but this is what xterm does. */ | |
2001 GrabModeAsync, GrabModeAsync, | |
2002 /* Use the timestamp of the last user action | |
2003 read by emacs proper; xterm uses CurrentTime | |
2004 but there's a comment that says "wrong"... | |
2005 (Despite the name this is the time of the | |
2006 last key or mouse event.) */ | |
2007 DEVICE_X_MOUSE_TIMESTAMP (d)); | |
2008 if (status == GrabSuccess) | |
2009 { | |
2010 /* The XUngrabKeyboard should generate a FocusIn back to this | |
2011 window but it doesn't unless we explicitly set focus to the | |
2012 window first (which should already have it. The net result | |
2013 is that without this call when x-ungrab-keyboard is called | |
2014 the selected frame ends up not having focus. */ | |
2015 XSetInputFocus (dpy, w, RevertToParent, DEVICE_X_MOUSE_TIMESTAMP (d)); | |
2016 return Qt; | |
2017 } | |
2018 else | |
2019 return Qnil; | |
2020 } | |
2021 | |
2022 DEFUN ("x-ungrab-keyboard", Fx_ungrab_keyboard, 0, 1, 0, /* | |
2023 Release a keyboard grab made with `x-grab-keyboard'. | |
2024 */ | |
2025 (device)) | |
2026 { | |
2027 Display *dpy = get_x_display (device); | |
2028 XUngrabKeyboard (dpy, CurrentTime); | |
2029 return Qnil; | |
2030 } | |
2031 | |
2032 DEFUN ("x-get-font-path", Fx_get_font_path, 0, 1, 0, /* | |
2033 Get the X Server's font path. | |
2034 | |
2035 See also `x-set-font-path'. | |
2036 */ | |
2037 (device)) | |
2038 { | |
2039 Display *dpy = get_x_display (device); | |
2040 int ndirs_return; | |
2367 | 2041 const Extbyte **directories = |
2042 (const Extbyte **) XGetFontPath (dpy, &ndirs_return); | |
428 | 2043 Lisp_Object font_path = Qnil; |
2044 | |
2045 if (!directories) | |
563 | 2046 gui_error ("Can't get X font path", device); |
428 | 2047 |
2048 while (ndirs_return--) | |
2049 font_path = Fcons (build_ext_string (directories[ndirs_return], | |
440 | 2050 Qfile_name), |
2051 font_path); | |
428 | 2052 |
2053 return font_path; | |
2054 } | |
2055 | |
2056 DEFUN ("x-set-font-path", Fx_set_font_path, 1, 2, 0, /* | |
2057 Set the X Server's font path to FONT-PATH. | |
2058 | |
2059 There is only one font path per server, not one per client. Use this | |
2060 sparingly. It uncaches all of the X server's font information. | |
2061 | |
2062 Font directories should end in the path separator and should contain | |
2063 a file called fonts.dir usually created with the program mkfontdir. | |
2064 | |
2065 Setting the FONT-PATH to nil tells the X server to use the default | |
2066 font path. | |
2067 | |
2068 See also `x-get-font-path'. | |
2069 */ | |
2070 (font_path, device)) | |
2071 { | |
2072 Display *dpy = get_x_display (device); | |
2367 | 2073 Extbyte **directories; |
428 | 2074 int i=0,ndirs=0; |
2075 | |
2367 | 2076 { |
2077 EXTERNAL_LIST_LOOP_2 (path_entry, font_path) | |
2078 { | |
2079 CHECK_STRING (path_entry); | |
2080 ndirs++; | |
2081 } | |
2082 } | |
428 | 2083 |
2367 | 2084 directories = alloca_array (Extbyte *, ndirs); |
428 | 2085 |
2367 | 2086 { |
2087 EXTERNAL_LIST_LOOP_2 (path_entry, font_path) | |
2088 { | |
2089 LISP_STRING_TO_EXTERNAL (path_entry, directories[i++], | |
2090 Qfile_name); | |
2091 } | |
2092 } | |
428 | 2093 |
2094 expect_x_error (dpy); | |
2367 | 2095 XSetFontPath (dpy, directories, ndirs); |
428 | 2096 signal_if_x_error (dpy, 1/*resumable_p*/); |
2097 | |
2098 return Qnil; | |
2099 } | |
2100 | |
2101 | |
2102 /************************************************************************/ | |
2103 /* initialization */ | |
2104 /************************************************************************/ | |
2105 | |
2106 void | |
2107 syms_of_device_x (void) | |
2108 { | |
3092 | 2109 #ifdef NEW_GC |
2110 INIT_LRECORD_IMPLEMENTATION (x_device); | |
2111 #endif /* NEW_GC */ | |
2112 | |
428 | 2113 DEFSUBR (Fx_debug_mode); |
2114 DEFSUBR (Fx_get_resource); | |
2115 DEFSUBR (Fx_get_resource_prefix); | |
2116 DEFSUBR (Fx_put_resource); | |
2117 | |
2118 DEFSUBR (Fdefault_x_device); | |
2119 DEFSUBR (Fx_display_visual_class); | |
2120 DEFSUBR (Fx_display_visual_depth); | |
2121 DEFSUBR (Fx_server_vendor); | |
2122 DEFSUBR (Fx_server_version); | |
2123 DEFSUBR (Fx_valid_keysym_name_p); | |
2124 DEFSUBR (Fx_keysym_hash_table); | |
2125 DEFSUBR (Fx_keysym_on_keyboard_p); | |
2126 DEFSUBR (Fx_keysym_on_keyboard_sans_modifiers_p); | |
2127 | |
2128 DEFSUBR (Fx_grab_pointer); | |
2129 DEFSUBR (Fx_ungrab_pointer); | |
2130 DEFSUBR (Fx_grab_keyboard); | |
2131 DEFSUBR (Fx_ungrab_keyboard); | |
2132 | |
2133 DEFSUBR (Fx_get_font_path); | |
2134 DEFSUBR (Fx_set_font_path); | |
2135 | |
563 | 2136 DEFSYMBOL (Qx_error); |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
2137 DEFSYMBOL (Qmake_device_early_x_entry_point); |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4404
diff
changeset
|
2138 DEFSYMBOL (Qmake_device_late_x_entry_point); |
771 | 2139 |
2140 #ifdef MULE | |
2141 DEFSYMBOL (Qget_coding_system_from_locale); | |
2142 #endif | |
428 | 2143 } |
2144 | |
2145 void | |
2146 reinit_console_type_create_device_x (void) | |
2147 { | |
2148 /* Initialize variables to speed up X resource interactions */ | |
2367 | 2149 const Ascbyte *valid_resource_chars = |
428 | 2150 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"; |
2151 while (*valid_resource_chars) | |
2152 valid_resource_char_p[(unsigned int) (*valid_resource_chars++)] = 1; | |
2153 | |
771 | 2154 name_Extbyte_dynarr = Dynarr_new (Extbyte); |
2155 class_Extbyte_dynarr = Dynarr_new (Extbyte); | |
428 | 2156 } |
2157 | |
2158 void | |
2159 console_type_create_device_x (void) | |
2160 { | |
2161 reinit_console_type_create_device_x (); | |
2162 CONSOLE_HAS_METHOD (x, init_device); | |
2163 CONSOLE_HAS_METHOD (x, finish_init_device); | |
2164 CONSOLE_HAS_METHOD (x, mark_device); | |
2165 CONSOLE_HAS_METHOD (x, delete_device); | |
2166 CONSOLE_HAS_METHOD (x, device_system_metrics); | |
2167 } | |
2168 | |
2169 void | |
2170 reinit_vars_of_device_x (void) | |
2171 { | |
2172 error_expected = 0; | |
2173 error_occurred = 0; | |
2174 | |
2175 in_resource_setting = 0; | |
2176 } | |
2177 | |
2178 void | |
2179 vars_of_device_x (void) | |
2180 { | |
2181 DEFVAR_LISP ("x-emacs-application-class", &Vx_emacs_application_class /* | |
2182 The X application class of the XEmacs process. | |
2183 This controls, among other things, the name of the `app-defaults' file | |
2184 that XEmacs will use. For changes to this variable to take effect, they | |
2185 must be made before the connection to the X server is initialized, that is, | |
2186 this variable may only be changed before emacs is dumped, or by setting it | |
2187 in the file lisp/term/x-win.el. | |
2188 | |
2681 | 2189 If this variable is nil on startup, the application uses `XEmacs'. Versions |
2190 previous to 21.5.21 examined the resource database and used `XEmacs' if any | |
2191 resources beginning with that string existed, and `Emacs' otherwise, for | |
2828 | 2192 greater backward compatibility. However, this has always tended to conflict |
2681 | 2193 with GNU Emacs, so this behavior is deprecated--in the short term, you can |
2194 restore it in a post-21.5.21 XEmacs by setting the | |
2195 USE_EMACS_AS_DEFAULT_APPLICATION_CLASS environment variable to some value, | |
2196 but in the medium and long term, you should migrate your X resources. | |
428 | 2197 */ ); |
2198 Vx_emacs_application_class = Qnil; | |
2199 | |
2200 DEFVAR_LISP ("x-initial-argv-list", &Vx_initial_argv_list /* | |
2201 You don't want to know. | |
2202 This is used during startup to communicate the remaining arguments in | |
2203 `command-line-args-left' to the C code, which passes the args to | |
2204 the X initialization code, which removes some args, and then the | |
2205 args are placed back into `x-initial-arg-list' and thence into | |
2206 `command-line-args-left'. Perhaps `command-line-args-left' should | |
2207 just reside in C. | |
2208 */ ); | |
2209 Vx_initial_argv_list = Qnil; | |
2210 | |
2211 DEFVAR_LISP ("x-app-defaults-directory", &Vx_app_defaults_directory /* | |
2212 Used by the Lisp code to communicate to the low level X initialization | |
2213 where the localized init files are. | |
2214 */ ); | |
2215 Vx_app_defaults_directory = Qnil; | |
2216 | |
2217 Fprovide (Qx); | |
2218 } |