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