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