0
|
1 /* X-specific Lisp objects.
|
|
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
4 Copyright (C) 1995 Tinker Systems
|
|
5 Copyright (C) 1995, 1996 Ben Wing
|
|
6 Copyright (C) 1995 Sun Microsystems
|
|
7
|
|
8 This file is part of XEmacs.
|
|
9
|
|
10 XEmacs is free software; you can redistribute it and/or modify it
|
|
11 under the terms of the GNU General Public License as published by the
|
|
12 Free Software Foundation; either version 2, or (at your option) any
|
|
13 later version.
|
|
14
|
|
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
18 for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with XEmacs; see the file COPYING. If not, write to
|
|
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 Boston, MA 02111-1307, USA. */
|
|
24
|
|
25 /* Synched up with: Not in FSF. */
|
|
26
|
|
27 /* Original author: Jamie Zawinski for 19.8
|
|
28 font-truename stuff added by Jamie Zawinski for 19.10
|
|
29 subwindow support added by Chuck Thompson
|
|
30 additional XPM support added by Chuck Thompson
|
|
31 initial X-Face support added by Stig
|
185
|
32 rewritten/restructured by Ben Wing for 19.12/19.13
|
0
|
33 GIF/JPEG support added by Ben Wing for 19.14
|
|
34 PNG support added by Bill Perry for 19.14
|
|
35 Improved GIF/JPEG support added by Bill Perry for 19.14
|
|
36 Cleanup/simplification of error handling by Ben Wing for 19.14
|
|
37 Pointer/icon overhaul, more restructuring by Ben Wing for 19.14
|
276
|
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 21.0
|
|
39 Many changes for color work and optimizations by Jareth Hein for 21.0
|
|
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 21.0
|
|
41 TIFF code by Jareth Hein for 21.0
|
0
|
42
|
|
43 TODO:
|
|
44 Convert images.el to C and stick it in here?
|
|
45 */
|
|
46
|
|
47 #include <config.h>
|
|
48 #include "lisp.h"
|
251
|
49 #include "lstream.h"
|
0
|
50 #include "console-x.h"
|
|
51 #include "glyphs-x.h"
|
|
52 #include "objects-x.h"
|
|
53 #include "xmu.h"
|
|
54
|
|
55 #include "buffer.h"
|
|
56 #include "frame.h"
|
|
57 #include "insdel.h"
|
|
58 #include "opaque.h"
|
|
59
|
265
|
60 #include "imgproc.h"
|
|
61
|
0
|
62 #include "sysfile.h"
|
|
63
|
251
|
64 #include <setjmp.h>
|
290
|
65
|
259
|
66 #ifdef FILE_CODING
|
|
67 #include "file-coding.h"
|
138
|
68 #endif
|
0
|
69
|
265
|
70 #if INTBITS == 32
|
|
71 # define FOUR_BYTE_TYPE unsigned int
|
|
72 #elif LONGBITS == 32
|
|
73 # define FOUR_BYTE_TYPE unsigned long
|
|
74 #elif SHORTBITS == 32
|
|
75 # define FOUR_BYTE_TYPE unsigned short
|
|
76 #else
|
|
77 #error What kind of strange-ass system are we running on?
|
|
78 #endif
|
|
79
|
|
80 #define LISP_DEVICE_TO_X_SCREEN(dev) XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
|
0
|
81
|
|
82 #ifdef HAVE_XFACE
|
|
83 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
|
|
84 Lisp_Object Qxface;
|
|
85 #endif
|
|
86
|
|
87 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
|
|
88 Lisp_Object Qcursor_font;
|
|
89
|
|
90 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
|
|
91
|
122
|
92 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
|
0
|
93
|
|
94 static void cursor_font_instantiate (Lisp_Object image_instance,
|
|
95 Lisp_Object instantiator,
|
|
96 Lisp_Object pointer_fg,
|
|
97 Lisp_Object pointer_bg,
|
124
|
98 int dest_mask,
|
|
99 Lisp_Object domain);
|
0
|
100
|
|
101 #include "bitmaps.h"
|
|
102
|
|
103
|
|
104 /************************************************************************/
|
|
105 /* image instance methods */
|
|
106 /************************************************************************/
|
|
107
|
265
|
108 /************************************************************************/
|
|
109 /* convert from a series of RGB triples to an XImage formated for the */
|
|
110 /* proper display */
|
|
111 /************************************************************************/
|
272
|
112 static XImage *
|
|
113 convert_EImage_to_XImage (Lisp_Object device, int width, int height,
|
|
114 unsigned char *pic, unsigned long **pixtbl,
|
280
|
115 int *npixels)
|
265
|
116 {
|
|
117 Display *dpy;
|
|
118 Colormap cmap;
|
|
119 Visual *vis;
|
|
120 XImage *outimg;
|
|
121 int depth, bitmap_pad, byte_cnt, i, j;
|
|
122 int rd,gr,bl,q;
|
|
123 unsigned char *data, *ip, *dp;
|
|
124 quant_table *qtable;
|
|
125 union {
|
|
126 FOUR_BYTE_TYPE val;
|
|
127 char cp[4];
|
|
128 } conv;
|
|
129
|
|
130 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
131 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
132 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
133 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
134
|
269
|
135 if (vis->class == PseudoColor)
|
|
136 {
|
|
137 /* Quantize the image and get a histogram while we're at it.
|
|
138 Do this first to save memory */
|
|
139 qtable = build_EImage_quantable(pic, width, height, 256);
|
|
140 if (qtable == NULL) return NULL;
|
|
141 }
|
265
|
142
|
|
143 bitmap_pad = ((depth > 16) ? 32 :
|
|
144 (depth > 8) ? 16 :
|
|
145 8);
|
|
146 byte_cnt = bitmap_pad >> 3;
|
|
147
|
|
148 outimg = XCreateImage (dpy, vis,
|
|
149 depth, ZPixmap, 0, 0, width, height,
|
|
150 bitmap_pad, 0);
|
|
151 if (!outimg) return NULL;
|
|
152
|
|
153 data = (unsigned char *) xmalloc (outimg->bytes_per_line * height);
|
269
|
154 if (!data)
|
|
155 {
|
272
|
156 XDestroyImage (outimg);
|
269
|
157 return NULL;
|
|
158 }
|
272
|
159 outimg->data = (char *) data;
|
265
|
160
|
269
|
161 if (vis->class == PseudoColor)
|
|
162 {
|
|
163 unsigned long pixarray[256];
|
280
|
164 int pixcount, n;
|
269
|
165 /* use our quantize table to allocate the colors */
|
280
|
166 pixcount = 32;
|
|
167 *pixtbl = xnew_array (unsigned long, pixcount);
|
269
|
168 *npixels = 0;
|
|
169
|
|
170 /* ### should implement a sort by popularity to assure proper allocation */
|
|
171 n = *npixels;
|
|
172 for (i = 0; i < qtable->num_active_colors; i++)
|
|
173 {
|
|
174 XColor color;
|
|
175 int res;
|
265
|
176
|
269
|
177 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
|
|
178 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
|
|
179 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
|
|
180 color.flags = DoRed | DoGreen | DoBlue;
|
|
181 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
182 if (res > 0 && res < 3)
|
|
183 {
|
280
|
184 DO_REALLOC(*pixtbl, pixcount, n+1, unsigned long);
|
269
|
185 (*pixtbl)[n] = color.pixel;
|
|
186 n++;
|
|
187 }
|
|
188 pixarray[i] = color.pixel;
|
|
189 }
|
|
190 *npixels = n;
|
|
191 ip = pic;
|
|
192 for (i = 0; i < height; i++)
|
|
193 {
|
|
194 dp = data + (i * outimg->bytes_per_line);
|
|
195 for (j = 0; j < width; j++)
|
|
196 {
|
|
197 rd = *ip++;
|
|
198 gr = *ip++;
|
|
199 bl = *ip++;
|
|
200 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
|
265
|
201 #ifdef WORDS_BIGENDIAN
|
269
|
202 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
265
|
203 #else
|
269
|
204 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
265
|
205 #endif
|
269
|
206 }
|
|
207 }
|
|
208 xfree(qtable);
|
|
209 } else {
|
|
210 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
|
|
211 junk = vis->red_mask;
|
|
212 rshift = 0;
|
|
213 while ((junk & 0x1) == 0)
|
|
214 {
|
|
215 junk = junk >> 1;
|
|
216 rshift ++;
|
|
217 }
|
|
218 rbits = 0;
|
|
219 while (junk != 0)
|
|
220 {
|
|
221 junk = junk >> 1;
|
|
222 rbits++;
|
|
223 }
|
|
224 junk = vis->green_mask;
|
|
225 gshift = 0;
|
|
226 while ((junk & 0x1) == 0)
|
|
227 {
|
|
228 junk = junk >> 1;
|
|
229 gshift ++;
|
|
230 }
|
|
231 gbits = 0;
|
|
232 while (junk != 0)
|
|
233 {
|
|
234 junk = junk >> 1;
|
|
235 gbits++;
|
|
236 }
|
|
237 junk = vis->blue_mask;
|
|
238 bshift = 0;
|
|
239 while ((junk & 0x1) == 0)
|
|
240 {
|
|
241 junk = junk >> 1;
|
|
242 bshift ++;
|
|
243 }
|
|
244 bbits = 0;
|
|
245 while (junk != 0)
|
|
246 {
|
|
247 junk = junk >> 1;
|
|
248 bbits++;
|
|
249 }
|
|
250 ip = pic;
|
|
251 for (i = 0; i < height; i++)
|
|
252 {
|
|
253 dp = data + (i * outimg->bytes_per_line);
|
|
254 for (j = 0; j < width; j++)
|
|
255 {
|
|
256 if (rbits > 8)
|
|
257 rd = *ip++ << (rbits - 8);
|
|
258 else
|
|
259 rd = *ip++ >> (8 - rbits);
|
|
260 if (gbits > 8)
|
|
261 gr = *ip++ << (gbits - 8);
|
|
262 else
|
|
263 gr = *ip++ >> (8 - gbits);
|
|
264 if (bbits > 8)
|
|
265 bl = *ip++ << (bbits - 8);
|
|
266 else
|
|
267 bl = *ip++ >> (8 - bbits);
|
|
268
|
|
269 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
|
265
|
270 #ifdef WORDS_BIGENDIAN
|
269
|
271 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
265
|
272 #else
|
269
|
273 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
265
|
274 #endif
|
269
|
275 }
|
|
276 }
|
|
277 }
|
265
|
278 return outimg;
|
|
279 }
|
|
280
|
|
281
|
|
282
|
0
|
283 static void
|
|
284 x_print_image_instance (struct Lisp_Image_Instance *p,
|
|
285 Lisp_Object printcharfun,
|
|
286 int escapeflag)
|
|
287 {
|
|
288 char buf[100];
|
|
289
|
|
290 switch (IMAGE_INSTANCE_TYPE (p))
|
|
291 {
|
|
292 case IMAGE_MONO_PIXMAP:
|
|
293 case IMAGE_COLOR_PIXMAP:
|
|
294 case IMAGE_POINTER:
|
|
295 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
|
|
296 write_c_string (buf, printcharfun);
|
|
297 if (IMAGE_INSTANCE_X_MASK (p))
|
|
298 {
|
|
299 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
|
|
300 write_c_string (buf, printcharfun);
|
|
301 }
|
|
302 write_c_string (")", printcharfun);
|
|
303 break;
|
114
|
304 #if HAVE_SUBWINDOWS
|
0
|
305 case IMAGE_SUBWINDOW:
|
|
306 /* #### implement me */
|
114
|
307 #endif
|
0
|
308 default:
|
|
309 break;
|
|
310 }
|
|
311 }
|
|
312
|
|
313 static void
|
|
314 x_finalize_image_instance (struct Lisp_Image_Instance *p)
|
|
315 {
|
|
316 if (!p->data)
|
|
317 return;
|
|
318
|
|
319 if (DEVICE_LIVE_P (XDEVICE (p->device)))
|
|
320 {
|
219
|
321 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
|
0
|
322
|
|
323 if (IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
324 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
|
0
|
325 if (IMAGE_INSTANCE_X_MASK (p) &&
|
|
326 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
327 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
|
0
|
328 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
|
|
329 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
330
|
|
331 if (IMAGE_INSTANCE_X_CURSOR (p))
|
|
332 {
|
219
|
333 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
|
0
|
334 IMAGE_INSTANCE_X_CURSOR (p) = 0;
|
|
335 }
|
|
336
|
|
337 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
|
|
338 {
|
219
|
339 XFreeColors (dpy,
|
269
|
340 IMAGE_INSTANCE_X_COLORMAP (p),
|
0
|
341 IMAGE_INSTANCE_X_PIXELS (p),
|
|
342 IMAGE_INSTANCE_X_NPIXELS (p), 0);
|
|
343 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
|
|
344 }
|
|
345 }
|
|
346 if (IMAGE_INSTANCE_X_PIXELS (p))
|
|
347 {
|
|
348 xfree (IMAGE_INSTANCE_X_PIXELS (p));
|
|
349 IMAGE_INSTANCE_X_PIXELS (p) = 0;
|
|
350 }
|
|
351
|
|
352 xfree (p->data);
|
|
353 p->data = 0;
|
|
354 }
|
|
355
|
|
356 static int
|
|
357 x_image_instance_equal (struct Lisp_Image_Instance *p1,
|
|
358 struct Lisp_Image_Instance *p2, int depth)
|
|
359 {
|
|
360 switch (IMAGE_INSTANCE_TYPE (p1))
|
|
361 {
|
|
362 case IMAGE_MONO_PIXMAP:
|
|
363 case IMAGE_COLOR_PIXMAP:
|
|
364 case IMAGE_POINTER:
|
269
|
365 if (IMAGE_INSTANCE_X_COLORMAP (p1) != IMAGE_INSTANCE_X_COLORMAP (p2) ||
|
|
366 IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
|
0
|
367 return 0;
|
114
|
368 #if HAVE_SUBWINDOWS
|
0
|
369 case IMAGE_SUBWINDOW:
|
|
370 /* #### implement me */
|
114
|
371 #endif
|
56
|
372 break;
|
0
|
373 default:
|
|
374 break;
|
|
375 }
|
|
376
|
|
377 return 1;
|
|
378 }
|
|
379
|
|
380 static unsigned long
|
|
381 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
|
|
382 {
|
|
383 switch (IMAGE_INSTANCE_TYPE (p))
|
|
384 {
|
|
385 case IMAGE_MONO_PIXMAP:
|
|
386 case IMAGE_COLOR_PIXMAP:
|
|
387 case IMAGE_POINTER:
|
|
388 return IMAGE_INSTANCE_X_NPIXELS (p);
|
114
|
389 #if HAVE_SUBWINDOWS
|
0
|
390 case IMAGE_SUBWINDOW:
|
|
391 /* #### implement me */
|
149
|
392 return 0;
|
114
|
393 #endif
|
0
|
394 default:
|
|
395 return 0;
|
|
396 }
|
|
397 }
|
|
398
|
|
399 /* Set all the slots in an image instance structure to reasonable
|
|
400 default values. This is used somewhere within an instantiate
|
|
401 method. It is assumed that the device slot within the image
|
|
402 instance is already set -- this is the case when instantiate
|
|
403 methods are called. */
|
|
404
|
|
405 static void
|
|
406 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
|
|
407 enum image_instance_type type)
|
|
408 {
|
185
|
409 ii->data = xnew_and_zero (struct x_image_instance_data);
|
0
|
410 IMAGE_INSTANCE_TYPE (ii) = type;
|
|
411 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
412 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
|
|
413 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
|
|
414 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
|
|
415 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
|
|
416 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
|
|
417 }
|
|
418
|
|
419
|
|
420 /************************************************************************/
|
|
421 /* pixmap file functions */
|
|
422 /************************************************************************/
|
|
423
|
|
424 /* Where bitmaps are; initialized from resource database */
|
|
425 Lisp_Object Vx_bitmap_file_path;
|
|
426
|
|
427 #ifndef BITMAPDIR
|
|
428 #define BITMAPDIR "/usr/include/X11/bitmaps"
|
|
429 #endif
|
|
430
|
|
431 #define USE_XBMLANGPATH
|
|
432
|
|
433 /* Given a pixmap filename, look through all of the "standard" places
|
|
434 where the file might be located. Return a full pathname if found;
|
|
435 otherwise, return Qnil. */
|
|
436
|
280
|
437 static Lisp_Object
|
278
|
438 x_locate_pixmap_file (Lisp_Object name)
|
0
|
439 {
|
|
440 /* This function can GC if IN_REDISPLAY is false */
|
|
441 Display *display;
|
|
442
|
|
443 /* Check non-absolute pathnames with a directory component relative to
|
|
444 the search path; that's the way Xt does it. */
|
|
445 /* #### Unix-specific */
|
80
|
446 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
447 (XSTRING_BYTE (name, 0) == '.' &&
|
|
448 (XSTRING_BYTE (name, 1) == '/' ||
|
|
449 (XSTRING_BYTE (name, 1) == '.' &&
|
|
450 (XSTRING_BYTE (name, 2) == '/')))))
|
0
|
451 {
|
|
452 if (!NILP (Ffile_readable_p (name)))
|
|
453 return name;
|
|
454 else
|
|
455 return Qnil;
|
|
456 }
|
|
457
|
|
458 if (NILP (Vdefault_x_device))
|
|
459 /* This may occur during intialization. */
|
|
460 return Qnil;
|
|
461 else
|
|
462 /* We only check the bitmapFilePath resource on the original X device. */
|
|
463 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
|
|
464
|
|
465 #ifdef USE_XBMLANGPATH
|
|
466 {
|
|
467 char *path = egetenv ("XBMLANGPATH");
|
|
468 SubstitutionRec subs[1];
|
|
469 subs[0].match = 'B';
|
14
|
470 subs[0].substitution = (char *) XSTRING_DATA (name);
|
0
|
471 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
|
|
472 We don't. If you want it used, set it. */
|
|
473 if (path &&
|
|
474 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
|
|
475 subs, XtNumber (subs), 0)))
|
|
476 {
|
|
477 name = build_string (path);
|
|
478 XtFree (path);
|
|
479 return (name);
|
|
480 }
|
|
481 }
|
|
482 #endif
|
|
483
|
|
484 if (NILP (Vx_bitmap_file_path))
|
|
485 {
|
|
486 char *type = 0;
|
|
487 XrmValue value;
|
|
488 if (XrmGetResource (XtDatabase (display),
|
|
489 "bitmapFilePath", "BitmapFilePath", &type, &value)
|
|
490 && !strcmp (type, "String"))
|
|
491 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
|
|
492 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
|
265
|
493 (decode_path (BITMAPDIR)));
|
0
|
494 }
|
|
495
|
|
496 {
|
|
497 Lisp_Object found;
|
|
498 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
|
|
499 {
|
|
500 Lisp_Object temp = list1 (Vdata_directory);
|
|
501 struct gcpro gcpro1;
|
|
502
|
|
503 GCPRO1 (temp);
|
|
504 locate_file (temp, name, "", &found, R_OK);
|
|
505 UNGCPRO;
|
|
506 }
|
|
507
|
|
508 return found;
|
|
509 }
|
|
510 }
|
|
511
|
278
|
512 static Lisp_Object
|
|
513 locate_pixmap_file (Lisp_Object name)
|
|
514 {
|
|
515 return x_locate_pixmap_file (name);
|
|
516 }
|
|
517
|
|
518 #if 0
|
0
|
519 static void
|
|
520 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
|
|
521 {
|
251
|
522 Lisp_Object instream, outstream;
|
|
523 Lstream *istr, *ostr;
|
|
524 char tempbuf[1024]; /* some random amount */
|
|
525 int fubar = 0;
|
|
526 FILE *tmpfil;
|
265
|
527 static Extbyte_dynarr *conversion_out_dynarr;
|
251
|
528 Bytecount bstart, bend;
|
|
529 struct gcpro gcpro1, gcpro2;
|
259
|
530 #ifdef FILE_CODING
|
251
|
531 Lisp_Object conv_out_stream;
|
|
532 Lstream *costr;
|
|
533 struct gcpro gcpro3;
|
|
534 #endif
|
|
535
|
|
536 /* This function can GC */
|
|
537 if (!conversion_out_dynarr)
|
|
538 conversion_out_dynarr = Dynarr_new (Extbyte);
|
|
539 else
|
|
540 Dynarr_reset (conversion_out_dynarr);
|
|
541
|
|
542 /* Create the temporary file ... */
|
0
|
543 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
|
|
544 mktemp (filename_out);
|
251
|
545 tmpfil = fopen (filename_out, "w");
|
|
546 if (!tmpfil)
|
0
|
547 {
|
251
|
548 if (tmpfil)
|
0
|
549 {
|
|
550 int old_errno = errno;
|
251
|
551 fclose (tmpfil);
|
0
|
552 unlink (filename_out);
|
|
553 errno = old_errno;
|
|
554 }
|
|
555 report_file_error ("Creating temp file",
|
|
556 list1 (build_string (filename_out)));
|
|
557 }
|
|
558
|
251
|
559 CHECK_STRING (string);
|
|
560 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
|
|
561 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
562 instream = make_lisp_string_input_stream (string, bstart, bend);
|
|
563 istr = XLSTREAM (instream);
|
|
564 /* setup the out stream */
|
|
565 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
|
|
566 ostr = XLSTREAM (outstream);
|
259
|
567 #ifdef FILE_CODING
|
251
|
568 /* setup the conversion stream */
|
|
569 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
|
|
570 costr = XLSTREAM (conv_out_stream);
|
|
571 GCPRO3 (instream, outstream, conv_out_stream);
|
|
572 #else
|
|
573 GCPRO2 (instream, outstream);
|
|
574 #endif
|
|
575
|
|
576 /* Get the data while doing the conversion */
|
269
|
577 while (1)
|
|
578 {
|
|
579 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
|
|
580 if (!size_in_bytes)
|
|
581 break;
|
|
582 /* It does seem the flushes are necessary... */
|
259
|
583 #ifdef FILE_CODING
|
269
|
584 Lstream_write (costr, tempbuf, size_in_bytes);
|
|
585 Lstream_flush (costr);
|
251
|
586 #else
|
269
|
587 Lstream_write (ostr, tempbuf, size_in_bytes);
|
251
|
588 #endif
|
269
|
589 Lstream_flush (ostr);
|
|
590 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
|
|
591 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
|
|
592 {
|
|
593 fubar = 1;
|
|
594 break;
|
|
595 }
|
|
596 /* reset the dynarr */
|
|
597 Lstream_rewind(ostr);
|
|
598 }
|
251
|
599
|
|
600 if (fclose (tmpfil) != 0)
|
|
601 fubar = 1;
|
|
602 Lstream_close (istr);
|
259
|
603 #ifdef FILE_CODING
|
251
|
604 Lstream_close (costr);
|
|
605 #endif
|
|
606 Lstream_close (ostr);
|
272
|
607
|
251
|
608 UNGCPRO;
|
|
609 Lstream_delete (istr);
|
|
610 Lstream_delete (ostr);
|
259
|
611 #ifdef FILE_CODING
|
251
|
612 Lstream_delete (costr);
|
|
613 #endif
|
259
|
614
|
251
|
615 if (fubar)
|
|
616 report_file_error ("Writing temp file",
|
|
617 list1 (build_string (filename_out)));
|
0
|
618 }
|
272
|
619 #endif /* 0 */
|
0
|
620
|
|
621
|
|
622 /************************************************************************/
|
|
623 /* cursor functions */
|
|
624 /************************************************************************/
|
|
625
|
|
626 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
|
|
627 not, signal an error. INSTANTIATOR is only used in the error
|
|
628 message. */
|
|
629
|
|
630 static void
|
|
631 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
|
|
632 Lisp_Object instantiator)
|
|
633 {
|
|
634 unsigned int best_width, best_height;
|
|
635 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
|
|
636 width, height, &best_width, &best_height))
|
|
637 /* this means that an X error of some sort occurred (we trap
|
|
638 these so they're not fatal). */
|
|
639 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
|
|
640
|
|
641 if (width > best_width || height > best_height)
|
|
642 error_with_frob (instantiator,
|
|
643 "pointer too large (%dx%d): "
|
|
644 "server requires %dx%d or smaller",
|
|
645 width, height, best_width, best_height);
|
|
646 }
|
|
647
|
|
648
|
|
649 static void
|
|
650 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
|
|
651 Lisp_Object *background, XColor *xfg, XColor *xbg)
|
|
652 {
|
|
653 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
|
|
654 *foreground =
|
|
655 Fmake_color_instance (*foreground, device,
|
|
656 encode_error_behavior_flag (ERROR_ME));
|
|
657 if (COLOR_INSTANCEP (*foreground))
|
|
658 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
|
|
659 else
|
|
660 {
|
|
661 xfg->pixel = 0;
|
|
662 xfg->red = xfg->green = xfg->blue = 0;
|
|
663 }
|
185
|
664
|
0
|
665 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
|
|
666 *background =
|
|
667 Fmake_color_instance (*background, device,
|
|
668 encode_error_behavior_flag (ERROR_ME));
|
|
669 if (COLOR_INSTANCEP (*background))
|
|
670 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
|
|
671 else
|
|
672 {
|
|
673 xbg->pixel = 0;
|
|
674 xbg->red = xbg->green = xbg->blue = ~0;
|
|
675 }
|
|
676 }
|
|
677
|
|
678 static void
|
|
679 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
|
|
680 Lisp_Object background)
|
|
681 {
|
|
682 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
683 XColor xfg, xbg;
|
|
684
|
|
685 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
|
|
686 if (!NILP (foreground) || !NILP (background))
|
|
687 {
|
|
688 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
|
|
689 XIMAGE_INSTANCE_X_CURSOR (image_instance),
|
|
690 &xfg, &xbg);
|
|
691 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
692 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
693 }
|
|
694 }
|
|
695
|
|
696
|
|
697 /************************************************************************/
|
|
698 /* color pixmap functions */
|
|
699 /************************************************************************/
|
|
700
|
|
701 /* Initialize an image instance from an XImage.
|
|
702
|
|
703 DEST_MASK specifies the mask of allowed image types.
|
|
704
|
|
705 PIXELS and NPIXELS specify an array of pixels that are used in
|
|
706 the image. These need to be kept around for the duration of the
|
|
707 image. When the image instance is freed, XFreeColors() will
|
|
708 automatically be called on all the pixels specified here; thus,
|
|
709 you should have allocated the pixels yourself using XAllocColor()
|
|
710 or the like. The array passed in is used directly without
|
|
711 being copied, so it should be heap data created with xmalloc().
|
|
712 It will be freed using xfree() when the image instance is
|
|
713 destroyed.
|
|
714
|
|
715 If this fails, signal an error. INSTANTIATOR is only used
|
|
716 in the error message.
|
|
717
|
|
718 #### This should be able to handle conversion into `pointer'.
|
|
719 Use the same code as for `xpm'. */
|
|
720
|
|
721 static void
|
|
722 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
|
|
723 XImage *ximage,
|
|
724 int dest_mask,
|
269
|
725 Colormap cmap,
|
0
|
726 unsigned long *pixels,
|
|
727 int npixels,
|
|
728 Lisp_Object instantiator)
|
|
729 {
|
|
730 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
731 Display *dpy;
|
|
732 GC gc;
|
|
733 Drawable d;
|
|
734 Pixmap pixmap;
|
|
735
|
|
736 if (!DEVICE_X_P (XDEVICE (device)))
|
|
737 signal_simple_error ("Not an X device", device);
|
|
738
|
|
739 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
740 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
741
|
|
742 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
743 incompatible_image_types (instantiator, dest_mask,
|
|
744 IMAGE_COLOR_PIXMAP_MASK);
|
185
|
745
|
0
|
746 pixmap = XCreatePixmap (dpy, d, ximage->width,
|
|
747 ximage->height, ximage->depth);
|
|
748 if (!pixmap)
|
|
749 signal_simple_error ("Unable to create pixmap", instantiator);
|
|
750
|
|
751 gc = XCreateGC (dpy, pixmap, 0, NULL);
|
|
752 if (!gc)
|
|
753 {
|
|
754 XFreePixmap (dpy, pixmap);
|
|
755 signal_simple_error ("Unable to create GC", instantiator);
|
|
756 }
|
185
|
757
|
0
|
758 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
|
|
759 ximage->width, ximage->height);
|
185
|
760
|
0
|
761 XFreeGC (dpy, gc);
|
|
762
|
|
763 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
|
|
764
|
|
765 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
766 find_keyword_in_vector (instantiator, Q_file);
|
185
|
767
|
0
|
768 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
769 IMAGE_INSTANCE_X_MASK (ii) = 0;
|
|
770 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
|
|
771 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
|
|
772 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
|
269
|
773 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
774 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
775 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
776 }
|
|
777
|
278
|
778 static void
|
|
779 x_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
|
|
780 int width, int height,
|
|
781 unsigned char *eimage,
|
|
782 int dest_mask,
|
|
783 Lisp_Object instantiator,
|
|
784 Lisp_Object domain)
|
|
785 {
|
|
786 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
787 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
280
|
788 unsigned long *pixtbl = NULL;
|
|
789 int npixels = 0;
|
278
|
790 XImage* ximage;
|
|
791
|
|
792 ximage = convert_EImage_to_XImage (device, width, height, eimage,
|
280
|
793 &pixtbl, &npixels);
|
278
|
794 if (!ximage)
|
280
|
795 {
|
|
796 if (pixtbl) xfree (pixtbl);
|
|
797 signal_image_error("EImage to XImage conversion failed", instantiator);
|
|
798 }
|
|
799
|
278
|
800 /* Now create the pixmap and set up the image instance */
|
|
801 init_image_instance_from_x_image (ii, ximage, dest_mask,
|
|
802 cmap, pixtbl, npixels,
|
|
803 instantiator);
|
|
804
|
|
805 if (ximage)
|
|
806 {
|
|
807 if (ximage->data)
|
|
808 {
|
|
809 xfree (ximage->data);
|
|
810 ximage->data = 0;
|
|
811 }
|
|
812 XDestroyImage (ximage);
|
|
813 }
|
|
814 }
|
|
815
|
288
|
816 int read_bitmap_data_from_file (CONST char *filename, unsigned int *width,
|
|
817 unsigned int *height, unsigned char **datap,
|
|
818 int *x_hot, int *y_hot)
|
0
|
819 {
|
288
|
820 return XmuReadBitmapDataFromFile (filename, width, height,
|
|
821 datap, x_hot, y_hot);
|
0
|
822 }
|
|
823
|
|
824 /* Given inline data for a mono pixmap, create and return the
|
|
825 corresponding X object. */
|
|
826
|
|
827 static Pixmap
|
|
828 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
|
|
829 /* Note that data is in ext-format! */
|
|
830 CONST Extbyte *bits)
|
|
831 {
|
219
|
832 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
|
|
833 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
|
0
|
834 (char *) bits, width, height,
|
|
835 1, 0, 1);
|
|
836 }
|
|
837
|
|
838 /* Given inline data for a mono pixmap, initialize the given
|
|
839 image instance accordingly. */
|
|
840
|
|
841 static void
|
|
842 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
|
|
843 int width, int height,
|
|
844 /* Note that data is in ext-format! */
|
|
845 CONST char *bits,
|
|
846 Lisp_Object instantiator,
|
|
847 Lisp_Object pointer_fg,
|
|
848 Lisp_Object pointer_bg,
|
|
849 int dest_mask,
|
|
850 Pixmap mask,
|
|
851 Lisp_Object mask_filename)
|
|
852 {
|
|
853 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
854 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
855 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
|
|
856 Display *dpy;
|
|
857 Screen *scr;
|
219
|
858 Drawable draw;
|
0
|
859 enum image_instance_type type;
|
|
860
|
|
861 if (!DEVICE_X_P (XDEVICE (device)))
|
|
862 signal_simple_error ("Not an X device", device);
|
|
863
|
|
864 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
865 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
866 scr = DefaultScreenOfDisplay (dpy);
|
|
867
|
|
868 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
|
|
869 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
870 {
|
|
871 if (!NILP (foreground) || !NILP (background))
|
|
872 type = IMAGE_COLOR_PIXMAP;
|
|
873 else
|
|
874 type = IMAGE_MONO_PIXMAP;
|
|
875 }
|
|
876 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
877 type = IMAGE_MONO_PIXMAP;
|
|
878 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
879 type = IMAGE_COLOR_PIXMAP;
|
|
880 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
881 type = IMAGE_POINTER;
|
|
882 else
|
|
883 incompatible_image_types (instantiator, dest_mask,
|
|
884 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
885 | IMAGE_POINTER_MASK);
|
|
886
|
|
887 x_initialize_pixmap_image_instance (ii, type);
|
|
888 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
889 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
890 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
891 find_keyword_in_vector (instantiator, Q_file);
|
|
892
|
|
893 switch (type)
|
|
894 {
|
|
895 case IMAGE_MONO_PIXMAP:
|
|
896 {
|
|
897 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
|
898 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
|
|
899 }
|
|
900 break;
|
|
901
|
|
902 case IMAGE_COLOR_PIXMAP:
|
|
903 {
|
219
|
904 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
|
0
|
905 unsigned long fg = BlackPixelOfScreen (scr);
|
|
906 unsigned long bg = WhitePixelOfScreen (scr);
|
|
907
|
|
908 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
|
|
909 foreground =
|
|
910 Fmake_color_instance (foreground, device,
|
|
911 encode_error_behavior_flag (ERROR_ME));
|
|
912
|
|
913 if (COLOR_INSTANCEP (foreground))
|
|
914 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
|
|
915
|
|
916 if (!NILP (background) && !COLOR_INSTANCEP (background))
|
|
917 background =
|
|
918 Fmake_color_instance (background, device,
|
|
919 encode_error_behavior_flag (ERROR_ME));
|
|
920
|
|
921 if (COLOR_INSTANCEP (background))
|
|
922 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
|
|
923
|
|
924 /* We used to duplicate the pixels using XAllocColor(), to protect
|
|
925 against their getting freed. Just as easy to just store the
|
|
926 color instances here and GC-protect them, so this doesn't
|
|
927 happen. */
|
|
928 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
929 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
930 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
219
|
931 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
932 (char *) bits, width, height,
|
|
933 fg, bg, d);
|
|
934 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
935 }
|
|
936 break;
|
|
937
|
|
938 case IMAGE_POINTER:
|
207
|
939 {
|
0
|
940 XColor fg_color, bg_color;
|
|
941 Pixmap source;
|
|
942
|
|
943 check_pointer_sizes (scr, width, height, instantiator);
|
|
944
|
|
945 source =
|
219
|
946 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
947 (char *) bits, width, height,
|
|
948 1, 0, 1);
|
|
949
|
|
950 if (NILP (foreground))
|
|
951 foreground = pointer_fg;
|
|
952 if (NILP (background))
|
|
953 background = pointer_bg;
|
|
954 generate_cursor_fg_bg (device, &foreground, &background,
|
|
955 &fg_color, &bg_color);
|
|
956
|
|
957 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
958 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
959 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
|
|
960 find_keyword_in_vector (instantiator, Q_hotspot_x);
|
|
961 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
|
|
962 find_keyword_in_vector (instantiator, Q_hotspot_y);
|
|
963 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
964 XCreatePixmapCursor
|
|
965 (dpy, source, mask, &fg_color, &bg_color,
|
|
966 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
|
|
967 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
|
|
968 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
|
|
969 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
|
|
970 }
|
|
971 break;
|
|
972
|
|
973 default:
|
|
974 abort ();
|
|
975 }
|
|
976 }
|
|
977
|
|
978 static void
|
|
979 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
980 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
981 int dest_mask, int width, int height,
|
|
982 /* Note that data is in ext-format! */
|
|
983 CONST char *bits)
|
|
984 {
|
|
985 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
|
|
986 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
|
|
987 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
988 Pixmap mask = 0;
|
|
989 CONST char *gcc_may_you_rot_in_hell;
|
|
990
|
|
991 if (!NILP (mask_data))
|
269
|
992 {
|
0
|
993 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
|
|
994 gcc_may_you_rot_in_hell);
|
|
995 mask =
|
|
996 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
|
|
997 XINT (XCAR (mask_data)),
|
|
998 XINT (XCAR (XCDR (mask_data))),
|
|
999 (CONST unsigned char *)
|
|
1000 gcc_may_you_rot_in_hell);
|
288
|
1001 }
|
0
|
1002
|
|
1003 init_image_instance_from_xbm_inline (ii, width, height, bits,
|
|
1004 instantiator, pointer_fg, pointer_bg,
|
|
1005 dest_mask, mask, mask_file);
|
|
1006 }
|
|
1007
|
|
1008 /* Instantiate method for XBM's. */
|
|
1009
|
|
1010 static void
|
288
|
1011 x_xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1012 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1013 int dest_mask, Lisp_Object domain)
|
0
|
1014 {
|
|
1015 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1016 CONST char *gcc_go_home;
|
|
1017
|
|
1018 assert (!NILP (data));
|
|
1019
|
|
1020 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
|
|
1021 gcc_go_home);
|
|
1022
|
|
1023 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1024 pointer_bg, dest_mask, XINT (XCAR (data)),
|
|
1025 XINT (XCAR (XCDR (data))), gcc_go_home);
|
|
1026 }
|
|
1027
|
|
1028
|
|
1029 #ifdef HAVE_XPM
|
|
1030
|
|
1031 /**********************************************************************
|
|
1032 * XPM *
|
|
1033 **********************************************************************/
|
|
1034 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
|
|
1035 There was no version number in xpm.h before 3.3, but this should do.
|
|
1036 */
|
|
1037 #if (XpmVersion >= 3) || defined(XpmExactColors)
|
|
1038 # define XPM_DOES_BUFFERS
|
|
1039 #endif
|
|
1040
|
|
1041 #ifndef XPM_DOES_BUFFERS
|
|
1042 Your version of XPM is too old. You cannot compile with it.
|
|
1043 Upgrade to version 3.2g or better or compile with --with-xpm=no.
|
|
1044 #endif /* !XPM_DOES_BUFFERS */
|
|
1045
|
|
1046 static XpmColorSymbol *
|
|
1047 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
|
124
|
1048 Lisp_Object domain,
|
0
|
1049 Lisp_Object color_symbol_alist)
|
|
1050 {
|
|
1051 /* This function can GC */
|
219
|
1052 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
|
|
1053 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
0
|
1054 XColor color;
|
|
1055 Lisp_Object rest;
|
|
1056 Lisp_Object results = Qnil;
|
|
1057 int i;
|
|
1058 XpmColorSymbol *symbols;
|
|
1059 struct gcpro gcpro1, gcpro2;
|
|
1060
|
|
1061 GCPRO2 (results, device);
|
|
1062
|
|
1063 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
1064 error happens we don't lose any malloc()ed data, or more importantly,
|
|
1065 leave any pixels allocated in the server. */
|
|
1066 i = 0;
|
|
1067 LIST_LOOP (rest, color_symbol_alist)
|
|
1068 {
|
|
1069 Lisp_Object cons = XCAR (rest);
|
|
1070 Lisp_Object name = XCAR (cons);
|
|
1071 Lisp_Object value = XCDR (cons);
|
|
1072 if (NILP (value))
|
|
1073 continue;
|
|
1074 if (STRINGP (value))
|
|
1075 value =
|
|
1076 Fmake_color_instance
|
|
1077 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
1078 else
|
|
1079 {
|
|
1080 assert (COLOR_SPECIFIERP (value));
|
124
|
1081 value = Fspecifier_instance (value, domain, Qnil, Qnil);
|
0
|
1082 }
|
|
1083 if (NILP (value))
|
|
1084 continue;
|
|
1085 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
1086 i++;
|
|
1087 }
|
|
1088 UNGCPRO; /* no more evaluation */
|
|
1089
|
|
1090 if (i == 0) return 0;
|
|
1091
|
185
|
1092 symbols = xnew_array (XpmColorSymbol, i);
|
0
|
1093 xpmattrs->valuemask |= XpmColorSymbols;
|
|
1094 xpmattrs->colorsymbols = symbols;
|
|
1095 xpmattrs->numsymbols = i;
|
|
1096
|
|
1097 while (--i >= 0)
|
|
1098 {
|
|
1099 Lisp_Object cons = XCAR (results);
|
|
1100 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
1101 /* Duplicate the pixel value so that we still have a lock on it if
|
|
1102 the pixel we were passed is later freed. */
|
|
1103 if (! XAllocColor (dpy, cmap, &color))
|
|
1104 abort (); /* it must be allocable since we're just duplicating it */
|
|
1105
|
14
|
1106 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
|
0
|
1107 symbols [i].pixel = color.pixel;
|
|
1108 symbols [i].value = 0;
|
|
1109 free_cons (XCONS (cons));
|
|
1110 cons = results;
|
|
1111 results = XCDR (results);
|
|
1112 free_cons (XCONS (cons));
|
|
1113 }
|
|
1114 return symbols;
|
|
1115 }
|
|
1116
|
|
1117 static void
|
|
1118 xpm_free (XpmAttributes *xpmattrs)
|
|
1119 {
|
|
1120 /* Could conceivably lose if XpmXXX returned an error without first
|
|
1121 initializing this structure, if we didn't know that initializing it
|
|
1122 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
|
|
1123 multiple times, since it zeros slots as it frees them...) */
|
|
1124 XpmFreeAttributes (xpmattrs);
|
|
1125 }
|
|
1126
|
280
|
1127 static void
|
276
|
1128 x_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1129 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1130 int dest_mask, Lisp_Object domain)
|
0
|
1131 {
|
|
1132 /* This function can GC */
|
|
1133 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
276
|
1134 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
0
|
1135 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1136 Display *dpy;
|
|
1137 Screen *xs;
|
219
|
1138 Colormap cmap;
|
|
1139 int depth;
|
280
|
1140 Visual *visual;
|
0
|
1141 Pixmap pixmap;
|
|
1142 Pixmap mask = 0;
|
|
1143 XpmAttributes xpmattrs;
|
|
1144 int result;
|
|
1145 XpmColorSymbol *color_symbols;
|
|
1146 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
1147 Q_color_symbols);
|
|
1148 enum image_instance_type type;
|
|
1149 int force_mono;
|
|
1150 unsigned int w, h;
|
|
1151
|
|
1152 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1153 signal_simple_error ("Not an X device", device);
|
|
1154
|
|
1155 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1156 xs = DefaultScreenOfDisplay (dpy);
|
|
1157
|
|
1158 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1159 type = IMAGE_COLOR_PIXMAP;
|
|
1160 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1161 type = IMAGE_MONO_PIXMAP;
|
|
1162 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1163 type = IMAGE_POINTER;
|
|
1164 else
|
|
1165 incompatible_image_types (instantiator, dest_mask,
|
|
1166 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1167 | IMAGE_POINTER_MASK);
|
|
1168 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
1169
|
269
|
1170 #if 1
|
251
|
1171 /* Although I haven't found it documented yet, it appears that pointers are
|
280
|
1172 always colored via the default window colormap... Sigh. */
|
251
|
1173 if (type == IMAGE_POINTER)
|
|
1174 {
|
|
1175 cmap = DefaultColormap(dpy, DefaultScreen(dpy));
|
|
1176 depth = DefaultDepthOfScreen (xs);
|
280
|
1177 visual = DefaultVisualOfScreen (xs);
|
251
|
1178 }
|
|
1179 else
|
|
1180 {
|
|
1181 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1182 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
280
|
1183 visual = DEVICE_X_VISUAL (XDEVICE(device));
|
251
|
1184 }
|
|
1185 #else
|
|
1186 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1187 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
280
|
1188 visual = DEVICE_X_VISUAL (XDEVICE(device));
|
251
|
1189 #endif
|
|
1190
|
0
|
1191 x_initialize_pixmap_image_instance (ii, type);
|
|
1192
|
|
1193 assert (!NILP (data));
|
|
1194
|
|
1195 retry:
|
|
1196
|
272
|
1197 xzero (xpmattrs); /* want XpmInitAttributes() */
|
0
|
1198 xpmattrs.valuemask = XpmReturnPixels;
|
|
1199 if (force_mono)
|
|
1200 {
|
|
1201 /* Without this, we get a 1-bit version of the color image, which
|
|
1202 isn't quite right. With this, we get the mono image, which might
|
|
1203 be very different looking. */
|
|
1204 xpmattrs.valuemask |= XpmColorKey;
|
|
1205 xpmattrs.color_key = XPM_MONO;
|
|
1206 xpmattrs.depth = 1;
|
|
1207 xpmattrs.valuemask |= XpmDepth;
|
|
1208 }
|
|
1209 else
|
|
1210 {
|
|
1211 xpmattrs.closeness = 65535;
|
|
1212 xpmattrs.valuemask |= XpmCloseness;
|
219
|
1213 xpmattrs.depth = depth;
|
|
1214 xpmattrs.valuemask |= XpmDepth;
|
280
|
1215 xpmattrs.visual = visual;
|
219
|
1216 xpmattrs.valuemask |= XpmVisual;
|
|
1217 xpmattrs.colormap = cmap;
|
|
1218 xpmattrs.valuemask |= XpmColormap;
|
0
|
1219 }
|
185
|
1220
|
124
|
1221 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
|
0
|
1222 color_symbol_alist);
|
|
1223
|
|
1224 result = XpmCreatePixmapFromBuffer (dpy,
|
219
|
1225 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
|
14
|
1226 (char *) XSTRING_DATA (data),
|
0
|
1227 &pixmap, &mask, &xpmattrs);
|
|
1228
|
|
1229 if (color_symbols)
|
|
1230 {
|
|
1231 xfree (color_symbols);
|
|
1232 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
|
|
1233 xpmattrs.numsymbols = 0;
|
|
1234 }
|
|
1235
|
|
1236 switch (result)
|
|
1237 {
|
|
1238 case XpmSuccess:
|
|
1239 break;
|
|
1240 case XpmFileInvalid:
|
|
1241 {
|
|
1242 xpm_free (&xpmattrs);
|
269
|
1243 signal_image_error ("invalid XPM data", data);
|
0
|
1244 }
|
|
1245 case XpmColorFailed:
|
|
1246 case XpmColorError:
|
|
1247 {
|
|
1248 xpm_free (&xpmattrs);
|
|
1249 if (force_mono)
|
|
1250 {
|
|
1251 /* second time; blow out. */
|
|
1252 signal_double_file_error ("Reading pixmap data",
|
|
1253 "color allocation failed",
|
|
1254 data);
|
|
1255 }
|
|
1256 else
|
|
1257 {
|
|
1258 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
|
|
1259 {
|
|
1260 /* second time; blow out. */
|
|
1261 signal_double_file_error ("Reading pixmap data",
|
|
1262 "color allocation failed",
|
|
1263 data);
|
|
1264 }
|
|
1265 force_mono = 1;
|
|
1266 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
|
|
1267 goto retry;
|
|
1268 }
|
|
1269 }
|
|
1270 case XpmNoMemory:
|
|
1271 {
|
|
1272 xpm_free (&xpmattrs);
|
|
1273 signal_double_file_error ("Parsing pixmap data",
|
|
1274 "out of memory", data);
|
|
1275 }
|
|
1276 default:
|
|
1277 {
|
|
1278 xpm_free (&xpmattrs);
|
|
1279 signal_double_file_error_2 ("Parsing pixmap data",
|
|
1280 "unknown error code",
|
|
1281 make_int (result), data);
|
|
1282 }
|
|
1283 }
|
|
1284
|
|
1285 w = xpmattrs.width;
|
|
1286 h = xpmattrs.height;
|
|
1287
|
|
1288 {
|
|
1289 int npixels = xpmattrs.npixels;
|
185
|
1290 Pixel *pixels;
|
0
|
1291
|
|
1292 if (npixels != 0)
|
|
1293 {
|
185
|
1294 pixels = xnew_array (Pixel, npixels);
|
0
|
1295 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
|
|
1296 }
|
|
1297 else
|
185
|
1298 pixels = NULL;
|
0
|
1299
|
|
1300 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
1301 IMAGE_INSTANCE_X_MASK (ii) = mask;
|
269
|
1302 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
1303 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
1304 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
1305 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
1306 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
1307 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1308 find_keyword_in_vector (instantiator, Q_file);
|
|
1309 }
|
|
1310
|
|
1311 switch (type)
|
|
1312 {
|
|
1313 case IMAGE_MONO_PIXMAP:
|
|
1314 break;
|
|
1315
|
|
1316 case IMAGE_COLOR_PIXMAP:
|
|
1317 {
|
219
|
1318 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
0
|
1319 }
|
|
1320 break;
|
|
1321
|
|
1322 case IMAGE_POINTER:
|
|
1323 {
|
|
1324 int npixels = xpmattrs.npixels;
|
|
1325 Pixel *pixels = xpmattrs.pixels;
|
|
1326 XColor fg, bg;
|
|
1327 int i;
|
|
1328 int xhot = 0, yhot = 0;
|
|
1329
|
|
1330 if (xpmattrs.valuemask & XpmHotspot)
|
|
1331 {
|
|
1332 xhot = xpmattrs.x_hotspot;
|
|
1333 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
|
|
1334 }
|
|
1335 if (xpmattrs.valuemask & XpmHotspot)
|
|
1336 {
|
|
1337 yhot = xpmattrs.y_hotspot;
|
|
1338 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
|
|
1339 }
|
|
1340 check_pointer_sizes (xs, w, h, instantiator);
|
|
1341
|
|
1342 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
1343 XPM file), then use those as the default colors for the cursor we
|
|
1344 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
1345 */
|
|
1346 if (npixels >= 2)
|
|
1347 {
|
|
1348 /* With an XBM file, it's obvious which bit is foreground
|
|
1349 and which is background, or rather, it's implicit: in
|
|
1350 an XBM file, a 1 bit is foreground, and a 0 bit is
|
|
1351 background.
|
185
|
1352
|
0
|
1353 XCreatePixmapCursor() assumes this property of the
|
|
1354 pixmap it is called with as well; the `foreground'
|
|
1355 color argument is used for the 1 bits.
|
|
1356
|
|
1357 With an XPM file, it's tricker, since the elements of
|
|
1358 the pixmap don't represent FG and BG, but are actual
|
|
1359 pixel values. So we need to figure out which of those
|
|
1360 pixels is the foreground color and which is the
|
|
1361 background. We do it by comparing RGB and assuming
|
|
1362 that the darker color is the foreground. This works
|
|
1363 with the result of xbmtopbm|ppmtoxpm, at least.
|
185
|
1364
|
0
|
1365 It might be nice if there was some way to tag the
|
|
1366 colors in the XPM file with whether they are the
|
|
1367 foreground - perhaps with logical color names somehow?
|
185
|
1368
|
0
|
1369 Once we have decided which color is the foreground, we
|
|
1370 need to ensure that that color corresponds to a `1' bit
|
|
1371 in the Pixmap. The XPM library wrote into the (1-bit)
|
|
1372 pixmap with XPutPixel, which will ignore all but the
|
|
1373 least significant bit.
|
185
|
1374
|
0
|
1375 This means that a 1 bit in the image corresponds to
|
|
1376 `fg' only if `fg.pixel' is odd.
|
185
|
1377
|
0
|
1378 (This also means that the image will be all the same
|
|
1379 color if both `fg' and `bg' are odd or even, but we can
|
|
1380 safely assume that that won't happen if the XPM file is
|
|
1381 sensible I think.)
|
185
|
1382
|
0
|
1383 The desired result is that the image use `1' to
|
|
1384 represent the foreground color, and `0' to represent
|
|
1385 the background color. So, we may need to invert the
|
|
1386 image to accomplish this; we invert if fg is
|
|
1387 odd. (Remember that WhitePixel and BlackPixel are not
|
|
1388 necessarily 1 and 0 respectively, though I think it
|
|
1389 might be safe to assume that one of them is always 1
|
|
1390 and the other is always 0. We also pretty much need to
|
|
1391 assume that one is even and the other is odd.)
|
|
1392 */
|
|
1393
|
|
1394 fg.pixel = pixels[0]; /* pick a pixel at random. */
|
|
1395 bg.pixel = fg.pixel;
|
|
1396 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
|
|
1397 {
|
|
1398 bg.pixel = pixels[i];
|
|
1399 if (fg.pixel != bg.pixel)
|
|
1400 break;
|
|
1401 }
|
|
1402
|
|
1403 /* If (fg.pixel == bg.pixel) then probably something has
|
|
1404 gone wrong, but I don't think signalling an error would
|
|
1405 be appropriate. */
|
|
1406
|
219
|
1407 XQueryColor (dpy, cmap, &fg);
|
|
1408 XQueryColor (dpy, cmap, &bg);
|
0
|
1409
|
|
1410 /* If the foreground is lighter than the background, swap them.
|
|
1411 (This occurs semi-randomly, depending on the ordering of the
|
|
1412 color list in the XPM file.)
|
|
1413 */
|
|
1414 {
|
|
1415 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
|
|
1416 + (fg.blue / 3));
|
|
1417 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
|
|
1418 + (bg.blue / 3));
|
|
1419 if (fg_total > bg_total)
|
|
1420 {
|
|
1421 XColor swap;
|
|
1422 swap = fg;
|
|
1423 fg = bg;
|
|
1424 bg = swap;
|
|
1425 }
|
|
1426 }
|
185
|
1427
|
0
|
1428 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
|
|
1429 (This occurs (only?) on servers with Black=0, White=1.)
|
|
1430 */
|
|
1431 if ((fg.pixel & 1) == 0)
|
|
1432 {
|
|
1433 XGCValues gcv;
|
|
1434 GC gc;
|
|
1435 gcv.function = GXxor;
|
|
1436 gcv.foreground = 1;
|
|
1437 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
|
|
1438 &gcv);
|
|
1439 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
|
|
1440 XFreeGC (dpy, gc);
|
|
1441 }
|
|
1442 }
|
|
1443 else
|
|
1444 {
|
|
1445 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
1446 &fg, &bg);
|
|
1447 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
1448 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
1449 }
|
|
1450
|
|
1451 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1452 XCreatePixmapCursor
|
|
1453 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
|
|
1454 }
|
|
1455
|
|
1456 break;
|
|
1457
|
|
1458 default:
|
|
1459 abort ();
|
|
1460 }
|
185
|
1461
|
0
|
1462 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
|
|
1463 }
|
|
1464
|
|
1465 #endif /* HAVE_XPM */
|
|
1466
|
|
1467
|
|
1468 #ifdef HAVE_XFACE
|
|
1469
|
|
1470 /**********************************************************************
|
|
1471 * X-Face *
|
|
1472 **********************************************************************/
|
|
1473
|
|
1474 static void
|
|
1475 xface_validate (Lisp_Object instantiator)
|
|
1476 {
|
|
1477 file_or_data_must_be_present (instantiator);
|
|
1478 }
|
|
1479
|
|
1480 static Lisp_Object
|
|
1481 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1482 {
|
116
|
1483 /* This funcation can call lisp */
|
0
|
1484 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
1485 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1486 Lisp_Object alist = Qnil;
|
185
|
1487
|
0
|
1488 GCPRO3 (file, mask_file, alist);
|
|
1489
|
|
1490 /* Now, convert any file data into inline data for both the regular
|
|
1491 data and the mask data. At the end of this, `data' will contain
|
|
1492 the inline data (if any) or Qnil, and `file' will contain
|
|
1493 the name this data was derived from (if known) or Qnil.
|
|
1494 Likewise for `mask_file' and `mask_data'.
|
|
1495
|
|
1496 Note that if we cannot generate any regular inline data, we
|
|
1497 skip out. */
|
|
1498
|
278
|
1499 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1500 console_type);
|
0
|
1501 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
278
|
1502 Q_mask_data, console_type);
|
0
|
1503
|
|
1504 if (CONSP (file)) /* failure locating filename */
|
|
1505 signal_double_file_error ("Opening bitmap file",
|
|
1506 "no such file or directory",
|
|
1507 Fcar (file));
|
|
1508
|
|
1509 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
1510 RETURN_UNGCPRO (inst);
|
|
1511
|
|
1512 alist = tagged_vector_to_alist (inst);
|
|
1513
|
|
1514 {
|
|
1515 Lisp_Object data = make_string_from_file (file);
|
|
1516 alist = remassq_no_quit (Q_file, alist);
|
|
1517 /* there can't be a :data at this point. */
|
|
1518 alist = Fcons (Fcons (Q_file, file),
|
|
1519 Fcons (Fcons (Q_data, data), alist));
|
|
1520 }
|
|
1521
|
288
|
1522 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
0
|
1523
|
|
1524 {
|
|
1525 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
1526 free_alist (alist);
|
|
1527 RETURN_UNGCPRO (result);
|
|
1528 }
|
|
1529 }
|
|
1530
|
|
1531 static int
|
74
|
1532 xface_possible_dest_types (void)
|
0
|
1533 {
|
74
|
1534 return
|
|
1535 IMAGE_MONO_PIXMAP_MASK |
|
|
1536 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
1537 IMAGE_POINTER_MASK;
|
|
1538 }
|
|
1539
|
|
1540 #if defined(EXTERN)
|
|
1541 /* This is about to get redefined! */
|
|
1542 #undef EXTERN
|
|
1543 #endif
|
|
1544 /* We have to define SYSV32 so that compface.h includes string.h
|
|
1545 instead of strings.h. */
|
|
1546 #define SYSV32
|
185
|
1547 #ifdef __cplusplus
|
|
1548 extern "C" {
|
|
1549 #endif
|
0
|
1550 #include <compface.h>
|
185
|
1551 #ifdef __cplusplus
|
|
1552 }
|
|
1553 #endif
|
0
|
1554 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
1555 to jmp_buf we end up with a conflicting type error with the
|
|
1556 definition in compface.h */
|
|
1557 extern jmp_buf comp_env;
|
|
1558 #undef SYSV32
|
|
1559
|
|
1560 static void
|
|
1561 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1562 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1563 int dest_mask, Lisp_Object domain)
|
0
|
1564 {
|
|
1565 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1566 int i, stattis;
|
|
1567 char *p, *bits, *bp;
|
16
|
1568 CONST char * volatile emsg = 0;
|
|
1569 CONST char * volatile dstring;
|
0
|
1570
|
|
1571 assert (!NILP (data));
|
|
1572
|
|
1573 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
|
|
1574
|
|
1575 if ((p = strchr (dstring, ':')))
|
|
1576 {
|
|
1577 dstring = p + 1;
|
|
1578 }
|
|
1579
|
|
1580 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
1581 if (!(stattis = setjmp (comp_env)))
|
|
1582 {
|
|
1583 UnCompAll ((char *) dstring);
|
|
1584 UnGenFace ();
|
|
1585 }
|
|
1586
|
|
1587 switch (stattis)
|
|
1588 {
|
|
1589 case -2:
|
|
1590 emsg = "uncompface: internal error";
|
|
1591 break;
|
|
1592 case -1:
|
|
1593 emsg = "uncompface: insufficient or invalid data";
|
|
1594 break;
|
|
1595 case 1:
|
|
1596 emsg = "uncompface: excess data ignored";
|
|
1597 break;
|
|
1598 }
|
|
1599
|
|
1600 if (emsg)
|
|
1601 signal_simple_error_2 (emsg, data, Qimage);
|
|
1602
|
|
1603 bp = bits = (char *) alloca (PIXELS / 8);
|
|
1604
|
|
1605 /* the compface library exports char F[], which uses a single byte per
|
|
1606 pixel to represent a 48x48 bitmap. Yuck. */
|
|
1607 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
1608 {
|
|
1609 int n, b;
|
|
1610 /* reverse the bit order of each byte... */
|
|
1611 for (b = n = 0; b < 8; ++b)
|
|
1612 {
|
|
1613 n |= ((*p++) << b);
|
|
1614 }
|
|
1615 *bp++ = (char) n;
|
|
1616 }
|
|
1617
|
|
1618 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1619 pointer_bg, dest_mask, 48, 48, bits);
|
|
1620 }
|
|
1621
|
|
1622 #endif /* HAVE_XFACE */
|
|
1623
|
|
1624
|
|
1625 /**********************************************************************
|
122
|
1626 * Autodetect *
|
0
|
1627 **********************************************************************/
|
|
1628
|
|
1629 static void
|
122
|
1630 autodetect_validate (Lisp_Object instantiator)
|
0
|
1631 {
|
|
1632 data_must_be_present (instantiator);
|
|
1633 }
|
|
1634
|
|
1635 static Lisp_Object
|
122
|
1636 autodetect_normalize (Lisp_Object instantiator,
|
120
|
1637 Lisp_Object console_type)
|
0
|
1638 {
|
|
1639 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
1640 Lisp_Object filename = Qnil;
|
|
1641 Lisp_Object data = Qnil;
|
|
1642 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1643 Lisp_Object alist = Qnil;
|
|
1644
|
|
1645 GCPRO3 (filename, data, alist);
|
|
1646
|
|
1647 if (NILP (file)) /* no conversion necessary */
|
|
1648 RETURN_UNGCPRO (instantiator);
|
|
1649
|
|
1650 alist = tagged_vector_to_alist (instantiator);
|
|
1651
|
|
1652 filename = locate_pixmap_file (file);
|
|
1653 if (!NILP (filename))
|
|
1654 {
|
|
1655 int xhot, yhot;
|
|
1656 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
1657 called by pixmap_to_lisp_data, don't return an error value
|
|
1658 if the given file is not a valid XPM file. Instead, they
|
|
1659 just seg fault. It is definitely caused by passing a
|
|
1660 bitmap. To try and avoid this we check for bitmaps first. */
|
185
|
1661
|
0
|
1662 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
1663
|
|
1664 if (!EQ (data, Qt))
|
|
1665 {
|
|
1666 alist = remassq_no_quit (Q_data, alist);
|
|
1667 alist = Fcons (Fcons (Q_file, filename),
|
|
1668 Fcons (Fcons (Q_data, data), alist));
|
|
1669 if (xhot != -1)
|
|
1670 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
1671 alist);
|
|
1672 if (yhot != -1)
|
|
1673 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
1674 alist);
|
|
1675
|
288
|
1676 alist = xbm_mask_file_munging (alist, filename, Qnil, console_type);
|
0
|
1677
|
|
1678 {
|
|
1679 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
1680 free_alist (alist);
|
|
1681 RETURN_UNGCPRO (result);
|
|
1682 }
|
|
1683 }
|
|
1684
|
|
1685 #ifdef HAVE_XPM
|
|
1686 data = pixmap_to_lisp_data (filename, 1);
|
|
1687
|
|
1688 if (!EQ (data, Qt))
|
|
1689 {
|
|
1690 alist = remassq_no_quit (Q_data, alist);
|
|
1691 alist = Fcons (Fcons (Q_file, filename),
|
|
1692 Fcons (Fcons (Q_data, data), alist));
|
|
1693 alist = Fcons (Fcons (Q_color_symbols,
|
|
1694 evaluate_xpm_color_symbols ()),
|
|
1695 alist);
|
|
1696 {
|
|
1697 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1698 free_alist (alist);
|
|
1699 RETURN_UNGCPRO (result);
|
|
1700 }
|
|
1701 }
|
|
1702 #endif
|
|
1703 }
|
|
1704
|
|
1705 /* If we couldn't convert it, just put it back as it is.
|
|
1706 We might try to further frob it later as a cursor-font
|
|
1707 specification. (We can't do that now because we don't know
|
|
1708 what dest-types it's going to be instantiated into.) */
|
|
1709 {
|
122
|
1710 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
0
|
1711 free_alist (alist);
|
|
1712 RETURN_UNGCPRO (result);
|
|
1713 }
|
|
1714 }
|
|
1715
|
|
1716 static int
|
122
|
1717 autodetect_possible_dest_types (void)
|
0
|
1718 {
|
74
|
1719 return
|
|
1720 IMAGE_MONO_PIXMAP_MASK |
|
|
1721 IMAGE_COLOR_PIXMAP_MASK |
|
|
1722 IMAGE_POINTER_MASK |
|
|
1723 IMAGE_TEXT_MASK;
|
0
|
1724 }
|
|
1725
|
|
1726 static void
|
122
|
1727 autodetect_instantiate (Lisp_Object image_instance,
|
120
|
1728 Lisp_Object instantiator,
|
|
1729 Lisp_Object pointer_fg,
|
|
1730 Lisp_Object pointer_bg,
|
124
|
1731 int dest_mask, Lisp_Object domain)
|
0
|
1732 {
|
|
1733 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1734 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1735 Lisp_Object alist = Qnil;
|
|
1736 Lisp_Object result = Qnil;
|
|
1737 int is_cursor_font = 0;
|
|
1738
|
|
1739 GCPRO3 (data, alist, result);
|
|
1740
|
|
1741 alist = tagged_vector_to_alist (instantiator);
|
|
1742 if (dest_mask & IMAGE_POINTER_MASK)
|
|
1743 {
|
|
1744 CONST char *name_ext;
|
|
1745 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
1746 if (XmuCursorNameToIndex (name_ext) != -1)
|
|
1747 {
|
|
1748 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
1749 is_cursor_font = 1;
|
|
1750 }
|
|
1751 }
|
|
1752
|
|
1753 if (!is_cursor_font)
|
|
1754 result = alist_to_tagged_vector (Qstring, alist);
|
|
1755 free_alist (alist);
|
|
1756
|
|
1757 if (is_cursor_font)
|
|
1758 cursor_font_instantiate (image_instance, result, pointer_fg,
|
124
|
1759 pointer_bg, dest_mask, domain);
|
0
|
1760 else
|
|
1761 string_instantiate (image_instance, result, pointer_fg,
|
124
|
1762 pointer_bg, dest_mask, domain);
|
0
|
1763
|
|
1764 UNGCPRO;
|
|
1765 }
|
|
1766
|
|
1767
|
|
1768 /**********************************************************************
|
|
1769 * Font *
|
|
1770 **********************************************************************/
|
|
1771
|
|
1772 static void
|
|
1773 font_validate (Lisp_Object instantiator)
|
|
1774 {
|
|
1775 data_must_be_present (instantiator);
|
|
1776 }
|
|
1777
|
|
1778 /* XmuCvtStringToCursor is bogus in the following ways:
|
|
1779
|
|
1780 - When it can't convert the given string to a real cursor, it will
|
|
1781 sometimes return a "success" value, after triggering a BadPixmap
|
|
1782 error. It then gives you a cursor that will itself generate BadCursor
|
|
1783 errors. So we install this error handler to catch/notice the X error
|
|
1784 and take that as meaning "couldn't convert."
|
|
1785
|
|
1786 - When you tell it to find a cursor file that doesn't exist, it prints
|
|
1787 an error message on stderr. You can't make it not do that.
|
|
1788
|
|
1789 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
|
|
1790 objects, or XPM files, or $XBMLANGPATH.
|
|
1791 */
|
|
1792
|
|
1793 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
|
|
1794
|
|
1795 static int XLoadFont_got_error;
|
|
1796
|
|
1797 static int
|
|
1798 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
|
|
1799 {
|
|
1800 XLoadFont_got_error = 1;
|
|
1801 return 0;
|
|
1802 }
|
|
1803
|
|
1804 static Font
|
|
1805 safe_XLoadFont (Display *dpy, char *name)
|
|
1806 {
|
|
1807 Font font;
|
|
1808 int (*old_handler) (Display *, XErrorEvent *);
|
|
1809 XLoadFont_got_error = 0;
|
|
1810 XSync (dpy, 0);
|
|
1811 old_handler = XSetErrorHandler (XLoadFont_error_handler);
|
|
1812 font = XLoadFont (dpy, name);
|
|
1813 XSync (dpy, 0);
|
|
1814 XSetErrorHandler (old_handler);
|
|
1815 if (XLoadFont_got_error) return 0;
|
|
1816 return font;
|
|
1817 }
|
|
1818
|
|
1819 static int
|
74
|
1820 font_possible_dest_types (void)
|
0
|
1821 {
|
|
1822 return IMAGE_POINTER_MASK;
|
|
1823 }
|
|
1824
|
|
1825 static void
|
|
1826 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1827 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1828 int dest_mask, Lisp_Object domain)
|
0
|
1829 {
|
|
1830 /* This function can GC */
|
|
1831 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1832 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1833 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1834 Display *dpy;
|
|
1835 XColor fg, bg;
|
|
1836 Font source, mask;
|
|
1837 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
1838 int source_char, mask_char;
|
|
1839 int count;
|
|
1840 Lisp_Object foreground, background;
|
|
1841
|
|
1842 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1843 signal_simple_error ("Not an X device", device);
|
|
1844
|
|
1845 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1846
|
|
1847 if (!STRINGP (data) ||
|
14
|
1848 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
0
|
1849 signal_simple_error ("Invalid font-glyph instantiator",
|
|
1850 instantiator);
|
|
1851
|
|
1852 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1853 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1854
|
|
1855 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1856 if (NILP (foreground))
|
|
1857 foreground = pointer_fg;
|
|
1858 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1859 if (NILP (background))
|
|
1860 background = pointer_bg;
|
|
1861
|
|
1862 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
1863
|
14
|
1864 count = sscanf ((char *) XSTRING_DATA (data),
|
0
|
1865 "FONT %s %d %s %d %c",
|
|
1866 source_name, &source_char,
|
|
1867 mask_name, &mask_char, &dummy);
|
|
1868 /* Allow "%s %d %d" as well... */
|
|
1869 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
1870 count = 4, mask_name[0] = 0;
|
|
1871
|
|
1872 if (count != 2 && count != 4)
|
|
1873 signal_simple_error ("invalid cursor specification", data);
|
|
1874 source = safe_XLoadFont (dpy, source_name);
|
|
1875 if (! source)
|
|
1876 signal_simple_error_2 ("couldn't load font",
|
|
1877 build_string (source_name),
|
|
1878 data);
|
|
1879 if (count == 2)
|
|
1880 mask = 0;
|
|
1881 else if (!mask_name[0])
|
|
1882 mask = source;
|
|
1883 else
|
|
1884 {
|
|
1885 mask = safe_XLoadFont (dpy, mask_name);
|
|
1886 if (!mask)
|
|
1887 /* continuable */
|
|
1888 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
|
|
1889 build_string (mask_name), data));
|
|
1890 }
|
|
1891 if (!mask)
|
|
1892 mask_char = 0;
|
|
1893
|
|
1894 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
1895
|
|
1896 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
1897 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1898 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
1899 &fg, &bg);
|
|
1900 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
1901 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
1902 XUnloadFont (dpy, source);
|
|
1903 if (mask && mask != source) XUnloadFont (dpy, mask);
|
|
1904 }
|
|
1905
|
|
1906
|
|
1907 /**********************************************************************
|
|
1908 * Cursor-Font *
|
|
1909 **********************************************************************/
|
|
1910
|
|
1911 static void
|
|
1912 cursor_font_validate (Lisp_Object instantiator)
|
|
1913 {
|
|
1914 data_must_be_present (instantiator);
|
|
1915 }
|
|
1916
|
|
1917 static int
|
74
|
1918 cursor_font_possible_dest_types (void)
|
0
|
1919 {
|
|
1920 return IMAGE_POINTER_MASK;
|
|
1921 }
|
|
1922
|
|
1923 static void
|
|
1924 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1925 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1926 int dest_mask, Lisp_Object domain)
|
0
|
1927 {
|
|
1928 /* This function can GC */
|
|
1929 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1930 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1931 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1932 Display *dpy;
|
|
1933 int i;
|
|
1934 CONST char *name_ext;
|
|
1935 Lisp_Object foreground, background;
|
|
1936
|
|
1937 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1938 signal_simple_error ("Not an X device", device);
|
|
1939
|
|
1940 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1941
|
|
1942 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1943 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1944
|
|
1945 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
1946 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
|
|
1947 signal_simple_error ("Unrecognized cursor-font name", data);
|
|
1948
|
|
1949 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
1950 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
|
|
1951 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1952 if (NILP (foreground))
|
|
1953 foreground = pointer_fg;
|
|
1954 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1955 if (NILP (background))
|
|
1956 background = pointer_bg;
|
|
1957 maybe_recolor_cursor (image_instance, foreground, background);
|
|
1958 }
|
|
1959
|
|
1960 static int
|
|
1961 x_colorize_image_instance (Lisp_Object image_instance,
|
|
1962 Lisp_Object foreground, Lisp_Object background)
|
|
1963 {
|
|
1964 struct Lisp_Image_Instance *p;
|
|
1965
|
|
1966 p = XIMAGE_INSTANCE (image_instance);
|
|
1967
|
|
1968 switch (IMAGE_INSTANCE_TYPE (p))
|
|
1969 {
|
|
1970 case IMAGE_MONO_PIXMAP:
|
|
1971 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
1972 /* Make sure there aren't two pointers to the same mask, causing
|
|
1973 it to get freed twice. */
|
|
1974 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
1975 break;
|
|
1976
|
|
1977 default:
|
|
1978 return 0;
|
|
1979 }
|
|
1980
|
|
1981 {
|
|
1982 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
219
|
1983 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
1984 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
1985 Pixmap new = XCreatePixmap (dpy, draw,
|
0
|
1986 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
1987 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
|
|
1988 XColor color;
|
|
1989 XGCValues gcv;
|
|
1990 GC gc;
|
|
1991 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
|
|
1992 gcv.foreground = color.pixel;
|
|
1993 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
|
|
1994 gcv.background = color.pixel;
|
|
1995 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
|
|
1996 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
|
|
1997 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
1998 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
1999 0, 0, 1);
|
|
2000 XFreeGC (dpy, gc);
|
|
2001 IMAGE_INSTANCE_X_PIXMAP (p) = new;
|
|
2002 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
|
|
2003 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
2004 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
2005 return 1;
|
|
2006 }
|
|
2007 }
|
|
2008
|
|
2009
|
114
|
2010 #if HAVE_SUBWINDOWS
|
0
|
2011 /************************************************************************/
|
|
2012 /* subwindows */
|
|
2013 /************************************************************************/
|
|
2014
|
|
2015 Lisp_Object Qsubwindowp;
|
|
2016
|
|
2017 static Lisp_Object
|
|
2018 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2019 {
|
|
2020 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2021 return sw->frame;
|
|
2022 }
|
|
2023
|
|
2024 static void
|
|
2025 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
2026 {
|
|
2027 char buf[100];
|
|
2028 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2029 struct frame *frm = XFRAME (sw->frame);
|
|
2030
|
|
2031 if (print_readably)
|
|
2032 error ("printing unreadable object #<subwindow 0x%x>",
|
|
2033 sw->header.uid);
|
|
2034
|
|
2035 write_c_string ("#<subwindow", printcharfun);
|
|
2036 sprintf (buf, " %dx%d", sw->width, sw->height);
|
|
2037 write_c_string (buf, printcharfun);
|
|
2038
|
|
2039 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
2040 are specific to a particular frame so we want to print in their
|
|
2041 description what that frame is. */
|
185
|
2042
|
0
|
2043 write_c_string (" on #<", printcharfun);
|
|
2044 if (!FRAME_LIVE_P (frm))
|
|
2045 write_c_string ("dead", printcharfun);
|
|
2046 else if (FRAME_TTY_P (frm))
|
|
2047 write_c_string ("tty", printcharfun);
|
|
2048 else if (FRAME_X_P (frm))
|
|
2049 write_c_string ("x", printcharfun);
|
|
2050 else
|
|
2051 write_c_string ("UNKNOWN", printcharfun);
|
|
2052 write_c_string ("-frame ", printcharfun);
|
|
2053 print_internal (frm->name, printcharfun, 1);
|
|
2054 sprintf (buf, " 0x%x>", frm->header.uid);
|
|
2055 write_c_string (buf, printcharfun);
|
|
2056
|
|
2057 sprintf (buf, ") 0x%x>", sw->header.uid);
|
|
2058 write_c_string (buf, printcharfun);
|
|
2059 }
|
|
2060
|
|
2061 static void
|
|
2062 finalize_subwindow (void *header, int for_disksave)
|
|
2063 {
|
|
2064 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
|
|
2065 if (for_disksave) finalose (sw);
|
|
2066 if (sw->subwindow)
|
|
2067 {
|
|
2068 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
|
|
2069 sw->subwindow = 0;
|
|
2070 }
|
|
2071 }
|
|
2072
|
|
2073 /* subwindows are equal iff they have the same window XID */
|
|
2074 static int
|
|
2075 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
2076 {
|
|
2077 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
|
|
2078 }
|
|
2079
|
|
2080 static unsigned long
|
|
2081 subwindow_hash (Lisp_Object obj, int depth)
|
|
2082 {
|
|
2083 return XSUBWINDOW (obj)->subwindow;
|
|
2084 }
|
|
2085
|
272
|
2086 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
|
|
2087 mark_subwindow, print_subwindow,
|
|
2088 finalize_subwindow, subwindow_equal,
|
|
2089 subwindow_hash, struct Lisp_Subwindow);
|
|
2090
|
0
|
2091 /* #### PROBLEM: The display routines assume that the glyph is only
|
|
2092 being displayed in one buffer. If it is in two different buffers
|
|
2093 which are both being displayed simultaneously you will lose big time.
|
|
2094 This can be dealt with in the new redisplay. */
|
|
2095
|
70
|
2096 /* #### These are completely un-re-implemented in 19.14. Get it done
|
|
2097 for 19.15. */
|
0
|
2098
|
20
|
2099 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
|
0
|
2100 Creates a new `subwindow' object of size WIDTH x HEIGHT.
|
|
2101 The default is a window of size 1x1, which is also the minimum allowed
|
|
2102 window size. Subwindows are per-frame. A buffer being shown in two
|
|
2103 different frames will only display a subwindow glyph in the frame in
|
|
2104 which it was actually created. If two windows on the same frame are
|
|
2105 displaying the buffer then the most recently used window will actually
|
|
2106 display the window. If the frame is not specified, the selected frame
|
|
2107 is used.
|
|
2108
|
|
2109 Subwindows are not currently implemented.
|
20
|
2110 */
|
|
2111 (width, height, frame))
|
0
|
2112 {
|
|
2113 Display *dpy;
|
|
2114 Screen *xs;
|
|
2115 Window pw;
|
|
2116 struct frame *f;
|
|
2117 unsigned int iw, ih;
|
|
2118 XSetWindowAttributes xswa;
|
|
2119 Mask valueMask = 0;
|
|
2120
|
140
|
2121 error ("subwindows are not functional in 20.2; they may be again someday");
|
0
|
2122
|
|
2123 f = decode_x_frame (frame);
|
|
2124
|
|
2125 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
|
|
2126 dpy = DisplayOfScreen (xs);
|
|
2127 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
|
|
2128
|
|
2129 if (NILP (width))
|
|
2130 iw = 1;
|
|
2131 else
|
|
2132 {
|
|
2133 CHECK_INT (width);
|
|
2134 iw = XINT (width);
|
|
2135 if (iw < 1) iw = 1;
|
|
2136 }
|
|
2137 if (NILP (height))
|
|
2138 ih = 1;
|
|
2139 else
|
|
2140 {
|
|
2141 CHECK_INT (height);
|
|
2142 ih = XINT (height);
|
|
2143 if (ih < 1) ih = 1;
|
|
2144 }
|
|
2145
|
|
2146 {
|
185
|
2147 struct Lisp_Subwindow *sw =
|
|
2148 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
|
0
|
2149 Lisp_Object val;
|
|
2150 sw->frame = frame;
|
|
2151 sw->xscreen = xs;
|
|
2152 sw->parent_window = pw;
|
|
2153 sw->height = ih;
|
|
2154 sw->width = iw;
|
|
2155
|
|
2156 xswa.backing_store = Always;
|
|
2157 valueMask |= CWBackingStore;
|
|
2158
|
|
2159 xswa.colormap = DefaultColormapOfScreen (xs);
|
|
2160 valueMask |= CWColormap;
|
|
2161
|
|
2162 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
|
|
2163 InputOutput, CopyFromParent, valueMask,
|
|
2164 &xswa);
|
|
2165
|
|
2166 XSETSUBWINDOW (val, sw);
|
|
2167 return val;
|
|
2168 }
|
|
2169 }
|
|
2170
|
|
2171 /* #### Should this function exist? */
|
20
|
2172 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
|
0
|
2173 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
|
|
2174 Subwindows are not currently implemented.
|
20
|
2175 */
|
|
2176 (subwindow, property, data))
|
0
|
2177 {
|
|
2178 Atom property_atom;
|
|
2179 struct Lisp_Subwindow *sw;
|
|
2180 Display *dpy;
|
|
2181
|
|
2182 CHECK_SUBWINDOW (subwindow);
|
|
2183 CHECK_STRING (property);
|
|
2184 CHECK_STRING (data);
|
|
2185
|
|
2186 sw = XSUBWINDOW (subwindow);
|
|
2187 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
|
|
2188 (FRAME_DEVICE (XFRAME (sw->frame))));
|
|
2189
|
16
|
2190 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
|
0
|
2191 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
|
16
|
2192 PropModeReplace,
|
|
2193 XSTRING_DATA (data),
|
14
|
2194 XSTRING_LENGTH (data));
|
0
|
2195
|
272
|
2196 return property;
|
0
|
2197 }
|
|
2198
|
20
|
2199 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
0
|
2200 Return non-nil if OBJECT is a subwindow.
|
|
2201 Subwindows are not currently implemented.
|
20
|
2202 */
|
|
2203 (object))
|
0
|
2204 {
|
272
|
2205 return SUBWINDOWP (object) ? Qt : Qnil;
|
0
|
2206 }
|
|
2207
|
20
|
2208 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
|
0
|
2209 Width of SUBWINDOW.
|
|
2210 Subwindows are not currently implemented.
|
20
|
2211 */
|
|
2212 (subwindow))
|
0
|
2213 {
|
|
2214 CHECK_SUBWINDOW (subwindow);
|
272
|
2215 return make_int (XSUBWINDOW (subwindow)->width);
|
0
|
2216 }
|
|
2217
|
20
|
2218 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
|
0
|
2219 Height of SUBWINDOW.
|
|
2220 Subwindows are not currently implemented.
|
20
|
2221 */
|
|
2222 (subwindow))
|
0
|
2223 {
|
|
2224 CHECK_SUBWINDOW (subwindow);
|
272
|
2225 return make_int (XSUBWINDOW (subwindow)->height);
|
0
|
2226 }
|
|
2227
|
20
|
2228 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
|
0
|
2229 Return the xid of SUBWINDOW as a number.
|
|
2230 Subwindows are not currently implemented.
|
20
|
2231 */
|
|
2232 (subwindow))
|
0
|
2233 {
|
|
2234 CHECK_SUBWINDOW (subwindow);
|
272
|
2235 return make_int (XSUBWINDOW (subwindow)->subwindow);
|
0
|
2236 }
|
|
2237
|
20
|
2238 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
0
|
2239 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
2240 If a value is nil that parameter is not changed.
|
|
2241 Subwindows are not currently implemented.
|
20
|
2242 */
|
|
2243 (subwindow, width, height))
|
0
|
2244 {
|
|
2245 int neww, newh;
|
|
2246 struct Lisp_Subwindow *sw;
|
|
2247
|
|
2248 CHECK_SUBWINDOW (subwindow);
|
|
2249 sw = XSUBWINDOW (subwindow);
|
|
2250
|
|
2251 if (NILP (width))
|
|
2252 neww = sw->width;
|
|
2253 else
|
|
2254 neww = XINT (width);
|
|
2255
|
|
2256 if (NILP (height))
|
|
2257 newh = sw->height;
|
|
2258 else
|
|
2259 newh = XINT (height);
|
|
2260
|
|
2261 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
|
|
2262
|
|
2263 sw->height = newh;
|
|
2264 sw->width = neww;
|
|
2265
|
|
2266 return subwindow;
|
|
2267 }
|
|
2268
|
20
|
2269 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
0
|
2270 Generate a Map event for SUBWINDOW.
|
|
2271 Subwindows are not currently implemented.
|
20
|
2272 */
|
|
2273 (subwindow))
|
0
|
2274 {
|
|
2275 CHECK_SUBWINDOW (subwindow);
|
|
2276
|
|
2277 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
|
|
2278 XSUBWINDOW (subwindow)->subwindow);
|
|
2279
|
|
2280 return subwindow;
|
|
2281 }
|
114
|
2282 #endif
|
0
|
2283
|
|
2284 /************************************************************************/
|
|
2285 /* initialization */
|
|
2286 /************************************************************************/
|
|
2287
|
|
2288 void
|
|
2289 syms_of_glyphs_x (void)
|
|
2290 {
|
114
|
2291 #if HAVE_SUBWINDOWS
|
0
|
2292 defsymbol (&Qsubwindowp, "subwindowp");
|
|
2293
|
20
|
2294 DEFSUBR (Fmake_subwindow);
|
|
2295 DEFSUBR (Fchange_subwindow_property);
|
|
2296 DEFSUBR (Fsubwindowp);
|
|
2297 DEFSUBR (Fsubwindow_width);
|
|
2298 DEFSUBR (Fsubwindow_height);
|
|
2299 DEFSUBR (Fsubwindow_xid);
|
|
2300 DEFSUBR (Fresize_subwindow);
|
|
2301 DEFSUBR (Fforce_subwindow_map);
|
114
|
2302 #endif
|
0
|
2303 }
|
|
2304
|
|
2305 void
|
|
2306 console_type_create_glyphs_x (void)
|
|
2307 {
|
|
2308 /* image methods */
|
|
2309
|
|
2310 CONSOLE_HAS_METHOD (x, print_image_instance);
|
|
2311 CONSOLE_HAS_METHOD (x, finalize_image_instance);
|
|
2312 CONSOLE_HAS_METHOD (x, image_instance_equal);
|
|
2313 CONSOLE_HAS_METHOD (x, image_instance_hash);
|
|
2314 CONSOLE_HAS_METHOD (x, colorize_image_instance);
|
278
|
2315 CONSOLE_HAS_METHOD (x, init_image_instance_from_eimage);
|
|
2316 CONSOLE_HAS_METHOD (x, locate_pixmap_file);
|
280
|
2317 #ifdef HAVE_XPM
|
|
2318 CONSOLE_HAS_METHOD (x, xpm_instantiate);
|
|
2319 #endif
|
288
|
2320 CONSOLE_HAS_METHOD (x, xbm_instantiate);
|
0
|
2321 }
|
|
2322
|
|
2323 void
|
|
2324 image_instantiator_format_create_glyphs_x (void)
|
|
2325 {
|
|
2326
|
|
2327 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
2328
|
|
2329 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
2330 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
2331 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
2332
|
|
2333 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
2334 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
2335 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
2336
|
|
2337 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
2338
|
|
2339 IIFORMAT_HAS_METHOD (font, validate);
|
|
2340 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
2341 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
2342
|
|
2343 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
2344 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
2345 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
2346
|
|
2347 #ifdef HAVE_XFACE
|
|
2348 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
2349
|
|
2350 IIFORMAT_HAS_METHOD (xface, validate);
|
|
2351 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
2352 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
2353 IIFORMAT_HAS_METHOD (xface, instantiate);
|
|
2354
|
|
2355 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
2356 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
2357 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
2358 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
2359 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
2360 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
185
|
2361 #endif
|
0
|
2362
|
122
|
2363 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
|
|
2364 "autodetect");
|
|
2365
|
|
2366 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
2367 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
2368 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
2369 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
2370
|
|
2371 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
0
|
2372 }
|
|
2373
|
|
2374 void
|
|
2375 vars_of_glyphs_x (void)
|
|
2376 {
|
|
2377 #ifdef HAVE_XFACE
|
|
2378 Fprovide (Qxface);
|
185
|
2379 #endif
|
0
|
2380
|
|
2381 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
|
|
2382 A list of the directories in which X bitmap files may be found.
|
185
|
2383 If nil, this is initialized from the "*bitmapFilePath" resource.
|
0
|
2384 This is used by the `make-image-instance' function (however, note that if
|
|
2385 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
2386 */ );
|
|
2387 Vx_bitmap_file_path = Qnil;
|
|
2388 }
|
|
2389
|
|
2390 void
|
|
2391 complex_vars_of_glyphs_x (void)
|
|
2392 {
|
|
2393 #define BUILD_GLYPH_INST(variable, name) \
|
|
2394 Fadd_spec_to_specifier \
|
|
2395 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
2396 vector3 (Qxbm, Q_data, \
|
|
2397 list3 (make_int (name##_width), \
|
|
2398 make_int (name##_height), \
|
|
2399 make_ext_string (name##_bits, \
|
|
2400 sizeof (name##_bits), \
|
|
2401 FORMAT_BINARY))), \
|
|
2402 Qglobal, Qx, Qnil)
|
|
2403
|
|
2404 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
2405 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
2406 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
74
|
2407 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
0
|
2408
|
|
2409 #undef BUILD_GLYPH_INST
|
|
2410 }
|