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