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