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 #ifdef HAVE_PNG
|
|
65 #ifdef __cplusplus
|
|
66 extern "C" {
|
|
67 #endif
|
|
68 #include <png.h>
|
|
69 #ifdef __cplusplus
|
|
70 }
|
|
71 #endif
|
223
|
72 #else
|
251
|
73 #include <setjmp.h>
|
223
|
74 #endif
|
259
|
75 #ifdef FILE_CODING
|
|
76 #include "file-coding.h"
|
138
|
77 #endif
|
0
|
78
|
278
|
79 #undef HAVE_PNG
|
|
80 #undef HAVE_TIFF
|
|
81 #undef HAVE_JPEG
|
|
82 #undef HAVE_GIF
|
|
83
|
265
|
84 #if INTBITS == 32
|
|
85 # define FOUR_BYTE_TYPE unsigned int
|
|
86 #elif LONGBITS == 32
|
|
87 # define FOUR_BYTE_TYPE unsigned long
|
|
88 #elif SHORTBITS == 32
|
|
89 # define FOUR_BYTE_TYPE unsigned short
|
|
90 #else
|
|
91 #error What kind of strange-ass system are we running on?
|
|
92 #endif
|
|
93
|
|
94 #define LISP_DEVICE_TO_X_SCREEN(dev) XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
|
0
|
95
|
|
96 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
|
|
97 Lisp_Object Qxbm;
|
|
98
|
|
99 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
|
|
100 Lisp_Object Q_foreground, Q_background;
|
|
101
|
|
102 #ifdef HAVE_XFACE
|
|
103 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
|
|
104 Lisp_Object Qxface;
|
|
105 #endif
|
|
106
|
251
|
107 #ifdef HAVE_TIFF
|
221
|
108 DEFINE_IMAGE_INSTANTIATOR_FORMAT (tiff);
|
251
|
109 Lisp_Object Qtiff;
|
|
110 #endif
|
|
111
|
|
112 #ifdef HAVE_JPEG
|
221
|
113 DEFINE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
|
|
114 Lisp_Object Qjpeg;
|
|
115 #endif
|
251
|
116
|
|
117 #ifdef HAVE_GIF
|
|
118 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gif);
|
|
119 Lisp_Object Qgif;
|
|
120 #endif
|
|
121
|
|
122 #ifdef HAVE_PNG
|
|
123 DEFINE_IMAGE_INSTANTIATOR_FORMAT (png);
|
|
124 Lisp_Object Qpng;
|
0
|
125 #endif
|
|
126
|
|
127 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
|
|
128 Lisp_Object Qcursor_font;
|
|
129
|
|
130 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
|
|
131
|
122
|
132 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
|
0
|
133
|
|
134 static void cursor_font_instantiate (Lisp_Object image_instance,
|
|
135 Lisp_Object instantiator,
|
|
136 Lisp_Object pointer_fg,
|
|
137 Lisp_Object pointer_bg,
|
124
|
138 int dest_mask,
|
|
139 Lisp_Object domain);
|
0
|
140
|
|
141 #include "bitmaps.h"
|
|
142
|
|
143
|
|
144 /************************************************************************/
|
|
145 /* image instance methods */
|
|
146 /************************************************************************/
|
|
147
|
265
|
148 /************************************************************************/
|
|
149 /* convert from a series of RGB triples to an XImage formated for the */
|
|
150 /* proper display */
|
|
151 /************************************************************************/
|
272
|
152 static XImage *
|
|
153 convert_EImage_to_XImage (Lisp_Object device, int width, int height,
|
|
154 unsigned char *pic, unsigned long **pixtbl,
|
|
155 int *pixcount, int *npixels)
|
265
|
156 {
|
|
157 Display *dpy;
|
|
158 Colormap cmap;
|
|
159 Visual *vis;
|
|
160 XImage *outimg;
|
|
161 int depth, bitmap_pad, byte_cnt, i, j;
|
|
162 int rd,gr,bl,q;
|
|
163 unsigned char *data, *ip, *dp;
|
|
164 quant_table *qtable;
|
|
165 union {
|
|
166 FOUR_BYTE_TYPE val;
|
|
167 char cp[4];
|
|
168 } conv;
|
|
169
|
|
170 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
171 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
172 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
173 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
174
|
269
|
175 if (vis->class == PseudoColor)
|
|
176 {
|
|
177 /* Quantize the image and get a histogram while we're at it.
|
|
178 Do this first to save memory */
|
|
179 qtable = build_EImage_quantable(pic, width, height, 256);
|
|
180 if (qtable == NULL) return NULL;
|
|
181 }
|
265
|
182
|
|
183 bitmap_pad = ((depth > 16) ? 32 :
|
|
184 (depth > 8) ? 16 :
|
|
185 8);
|
|
186 byte_cnt = bitmap_pad >> 3;
|
|
187
|
|
188 outimg = XCreateImage (dpy, vis,
|
|
189 depth, ZPixmap, 0, 0, width, height,
|
|
190 bitmap_pad, 0);
|
|
191 if (!outimg) return NULL;
|
|
192
|
|
193 data = (unsigned char *) xmalloc (outimg->bytes_per_line * height);
|
269
|
194 if (!data)
|
|
195 {
|
272
|
196 XDestroyImage (outimg);
|
269
|
197 return NULL;
|
|
198 }
|
272
|
199 outimg->data = (char *) data;
|
265
|
200
|
269
|
201 if (vis->class == PseudoColor)
|
|
202 {
|
|
203 unsigned long pixarray[256];
|
|
204 int n;
|
|
205 /* use our quantize table to allocate the colors */
|
|
206 *pixcount = 32;
|
|
207 *pixtbl = xnew_array (unsigned long, *pixcount);
|
|
208 *npixels = 0;
|
|
209
|
|
210 /* ### should implement a sort by popularity to assure proper allocation */
|
|
211 n = *npixels;
|
|
212 for (i = 0; i < qtable->num_active_colors; i++)
|
|
213 {
|
|
214 XColor color;
|
|
215 int res;
|
265
|
216
|
269
|
217 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
|
|
218 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
|
|
219 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
|
|
220 color.flags = DoRed | DoGreen | DoBlue;
|
|
221 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
222 if (res > 0 && res < 3)
|
|
223 {
|
|
224 DO_REALLOC(*pixtbl, *pixcount, n+1, unsigned long);
|
|
225 (*pixtbl)[n] = color.pixel;
|
|
226 n++;
|
|
227 }
|
|
228 pixarray[i] = color.pixel;
|
|
229 }
|
|
230 *npixels = n;
|
|
231 ip = pic;
|
|
232 for (i = 0; i < height; i++)
|
|
233 {
|
|
234 dp = data + (i * outimg->bytes_per_line);
|
|
235 for (j = 0; j < width; j++)
|
|
236 {
|
|
237 rd = *ip++;
|
|
238 gr = *ip++;
|
|
239 bl = *ip++;
|
|
240 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
|
265
|
241 #ifdef WORDS_BIGENDIAN
|
269
|
242 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
265
|
243 #else
|
269
|
244 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
265
|
245 #endif
|
269
|
246 }
|
|
247 }
|
|
248 xfree(qtable);
|
|
249 } else {
|
|
250 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
|
|
251 junk = vis->red_mask;
|
|
252 rshift = 0;
|
|
253 while ((junk & 0x1) == 0)
|
|
254 {
|
|
255 junk = junk >> 1;
|
|
256 rshift ++;
|
|
257 }
|
|
258 rbits = 0;
|
|
259 while (junk != 0)
|
|
260 {
|
|
261 junk = junk >> 1;
|
|
262 rbits++;
|
|
263 }
|
|
264 junk = vis->green_mask;
|
|
265 gshift = 0;
|
|
266 while ((junk & 0x1) == 0)
|
|
267 {
|
|
268 junk = junk >> 1;
|
|
269 gshift ++;
|
|
270 }
|
|
271 gbits = 0;
|
|
272 while (junk != 0)
|
|
273 {
|
|
274 junk = junk >> 1;
|
|
275 gbits++;
|
|
276 }
|
|
277 junk = vis->blue_mask;
|
|
278 bshift = 0;
|
|
279 while ((junk & 0x1) == 0)
|
|
280 {
|
|
281 junk = junk >> 1;
|
|
282 bshift ++;
|
|
283 }
|
|
284 bbits = 0;
|
|
285 while (junk != 0)
|
|
286 {
|
|
287 junk = junk >> 1;
|
|
288 bbits++;
|
|
289 }
|
|
290 ip = pic;
|
|
291 for (i = 0; i < height; i++)
|
|
292 {
|
|
293 dp = data + (i * outimg->bytes_per_line);
|
|
294 for (j = 0; j < width; j++)
|
|
295 {
|
|
296 if (rbits > 8)
|
|
297 rd = *ip++ << (rbits - 8);
|
|
298 else
|
|
299 rd = *ip++ >> (8 - rbits);
|
|
300 if (gbits > 8)
|
|
301 gr = *ip++ << (gbits - 8);
|
|
302 else
|
|
303 gr = *ip++ >> (8 - gbits);
|
|
304 if (bbits > 8)
|
|
305 bl = *ip++ << (bbits - 8);
|
|
306 else
|
|
307 bl = *ip++ >> (8 - bbits);
|
|
308
|
|
309 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
|
265
|
310 #ifdef WORDS_BIGENDIAN
|
269
|
311 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
265
|
312 #else
|
269
|
313 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
265
|
314 #endif
|
269
|
315 }
|
|
316 }
|
|
317 }
|
265
|
318 return outimg;
|
|
319 }
|
|
320
|
|
321
|
|
322
|
0
|
323 static void
|
|
324 x_print_image_instance (struct Lisp_Image_Instance *p,
|
|
325 Lisp_Object printcharfun,
|
|
326 int escapeflag)
|
|
327 {
|
|
328 char buf[100];
|
|
329
|
|
330 switch (IMAGE_INSTANCE_TYPE (p))
|
|
331 {
|
|
332 case IMAGE_MONO_PIXMAP:
|
|
333 case IMAGE_COLOR_PIXMAP:
|
|
334 case IMAGE_POINTER:
|
|
335 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
|
|
336 write_c_string (buf, printcharfun);
|
|
337 if (IMAGE_INSTANCE_X_MASK (p))
|
|
338 {
|
|
339 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
|
|
340 write_c_string (buf, printcharfun);
|
|
341 }
|
|
342 write_c_string (")", printcharfun);
|
|
343 break;
|
114
|
344 #if HAVE_SUBWINDOWS
|
0
|
345 case IMAGE_SUBWINDOW:
|
|
346 /* #### implement me */
|
114
|
347 #endif
|
0
|
348 default:
|
|
349 break;
|
|
350 }
|
|
351 }
|
|
352
|
|
353 static void
|
|
354 x_finalize_image_instance (struct Lisp_Image_Instance *p)
|
|
355 {
|
|
356 if (!p->data)
|
|
357 return;
|
|
358
|
|
359 if (DEVICE_LIVE_P (XDEVICE (p->device)))
|
|
360 {
|
219
|
361 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
|
0
|
362
|
|
363 if (IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
364 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
|
0
|
365 if (IMAGE_INSTANCE_X_MASK (p) &&
|
|
366 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
367 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
|
0
|
368 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
|
|
369 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
370
|
|
371 if (IMAGE_INSTANCE_X_CURSOR (p))
|
|
372 {
|
219
|
373 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
|
0
|
374 IMAGE_INSTANCE_X_CURSOR (p) = 0;
|
|
375 }
|
|
376
|
|
377 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
|
|
378 {
|
219
|
379 XFreeColors (dpy,
|
269
|
380 IMAGE_INSTANCE_X_COLORMAP (p),
|
0
|
381 IMAGE_INSTANCE_X_PIXELS (p),
|
|
382 IMAGE_INSTANCE_X_NPIXELS (p), 0);
|
|
383 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
|
|
384 }
|
|
385 }
|
|
386 if (IMAGE_INSTANCE_X_PIXELS (p))
|
|
387 {
|
|
388 xfree (IMAGE_INSTANCE_X_PIXELS (p));
|
|
389 IMAGE_INSTANCE_X_PIXELS (p) = 0;
|
|
390 }
|
|
391
|
|
392 xfree (p->data);
|
|
393 p->data = 0;
|
|
394 }
|
|
395
|
|
396 static int
|
|
397 x_image_instance_equal (struct Lisp_Image_Instance *p1,
|
|
398 struct Lisp_Image_Instance *p2, int depth)
|
|
399 {
|
|
400 switch (IMAGE_INSTANCE_TYPE (p1))
|
|
401 {
|
|
402 case IMAGE_MONO_PIXMAP:
|
|
403 case IMAGE_COLOR_PIXMAP:
|
|
404 case IMAGE_POINTER:
|
269
|
405 if (IMAGE_INSTANCE_X_COLORMAP (p1) != IMAGE_INSTANCE_X_COLORMAP (p2) ||
|
|
406 IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
|
0
|
407 return 0;
|
114
|
408 #if HAVE_SUBWINDOWS
|
0
|
409 case IMAGE_SUBWINDOW:
|
|
410 /* #### implement me */
|
114
|
411 #endif
|
56
|
412 break;
|
0
|
413 default:
|
|
414 break;
|
|
415 }
|
|
416
|
|
417 return 1;
|
|
418 }
|
|
419
|
|
420 static unsigned long
|
|
421 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
|
|
422 {
|
|
423 switch (IMAGE_INSTANCE_TYPE (p))
|
|
424 {
|
|
425 case IMAGE_MONO_PIXMAP:
|
|
426 case IMAGE_COLOR_PIXMAP:
|
|
427 case IMAGE_POINTER:
|
|
428 return IMAGE_INSTANCE_X_NPIXELS (p);
|
114
|
429 #if HAVE_SUBWINDOWS
|
0
|
430 case IMAGE_SUBWINDOW:
|
|
431 /* #### implement me */
|
149
|
432 return 0;
|
114
|
433 #endif
|
0
|
434 default:
|
|
435 return 0;
|
|
436 }
|
|
437 }
|
|
438
|
|
439 /* Set all the slots in an image instance structure to reasonable
|
|
440 default values. This is used somewhere within an instantiate
|
|
441 method. It is assumed that the device slot within the image
|
|
442 instance is already set -- this is the case when instantiate
|
|
443 methods are called. */
|
|
444
|
|
445 static void
|
|
446 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
|
|
447 enum image_instance_type type)
|
|
448 {
|
185
|
449 ii->data = xnew_and_zero (struct x_image_instance_data);
|
0
|
450 IMAGE_INSTANCE_TYPE (ii) = type;
|
|
451 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
452 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
|
|
453 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
|
|
454 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
|
|
455 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
|
|
456 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
|
|
457 }
|
|
458
|
|
459
|
|
460 /************************************************************************/
|
|
461 /* pixmap file functions */
|
|
462 /************************************************************************/
|
|
463
|
|
464 /* Where bitmaps are; initialized from resource database */
|
|
465 Lisp_Object Vx_bitmap_file_path;
|
|
466
|
|
467 #ifndef BITMAPDIR
|
|
468 #define BITMAPDIR "/usr/include/X11/bitmaps"
|
|
469 #endif
|
|
470
|
|
471 #define USE_XBMLANGPATH
|
|
472
|
|
473 /* Given a pixmap filename, look through all of the "standard" places
|
|
474 where the file might be located. Return a full pathname if found;
|
|
475 otherwise, return Qnil. */
|
|
476
|
278
|
477 Lisp_Object
|
|
478 x_locate_pixmap_file (Lisp_Object name)
|
0
|
479 {
|
|
480 /* This function can GC if IN_REDISPLAY is false */
|
|
481 Display *display;
|
|
482
|
|
483 /* Check non-absolute pathnames with a directory component relative to
|
|
484 the search path; that's the way Xt does it. */
|
|
485 /* #### Unix-specific */
|
80
|
486 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
487 (XSTRING_BYTE (name, 0) == '.' &&
|
|
488 (XSTRING_BYTE (name, 1) == '/' ||
|
|
489 (XSTRING_BYTE (name, 1) == '.' &&
|
|
490 (XSTRING_BYTE (name, 2) == '/')))))
|
0
|
491 {
|
|
492 if (!NILP (Ffile_readable_p (name)))
|
|
493 return name;
|
|
494 else
|
|
495 return Qnil;
|
|
496 }
|
|
497
|
|
498 if (NILP (Vdefault_x_device))
|
|
499 /* This may occur during intialization. */
|
|
500 return Qnil;
|
|
501 else
|
|
502 /* We only check the bitmapFilePath resource on the original X device. */
|
|
503 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
|
|
504
|
|
505 #ifdef USE_XBMLANGPATH
|
|
506 {
|
|
507 char *path = egetenv ("XBMLANGPATH");
|
|
508 SubstitutionRec subs[1];
|
|
509 subs[0].match = 'B';
|
14
|
510 subs[0].substitution = (char *) XSTRING_DATA (name);
|
0
|
511 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
|
|
512 We don't. If you want it used, set it. */
|
|
513 if (path &&
|
|
514 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
|
|
515 subs, XtNumber (subs), 0)))
|
|
516 {
|
|
517 name = build_string (path);
|
|
518 XtFree (path);
|
|
519 return (name);
|
|
520 }
|
|
521 }
|
|
522 #endif
|
|
523
|
|
524 if (NILP (Vx_bitmap_file_path))
|
|
525 {
|
|
526 char *type = 0;
|
|
527 XrmValue value;
|
|
528 if (XrmGetResource (XtDatabase (display),
|
|
529 "bitmapFilePath", "BitmapFilePath", &type, &value)
|
|
530 && !strcmp (type, "String"))
|
|
531 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
|
|
532 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
|
265
|
533 (decode_path (BITMAPDIR)));
|
0
|
534 }
|
|
535
|
|
536 {
|
|
537 Lisp_Object found;
|
|
538 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
|
|
539 {
|
|
540 Lisp_Object temp = list1 (Vdata_directory);
|
|
541 struct gcpro gcpro1;
|
|
542
|
|
543 GCPRO1 (temp);
|
|
544 locate_file (temp, name, "", &found, R_OK);
|
|
545 UNGCPRO;
|
|
546 }
|
|
547
|
|
548 return found;
|
|
549 }
|
|
550 }
|
|
551
|
278
|
552 static Lisp_Object
|
|
553 locate_pixmap_file (Lisp_Object name)
|
|
554 {
|
|
555 return x_locate_pixmap_file (name);
|
|
556 }
|
|
557
|
|
558 #if 0
|
0
|
559 /* If INSTANTIATOR refers to inline data, return Qnil.
|
|
560 If INSTANTIATOR refers to data in a file, return the full filename
|
|
561 if it exists; otherwise, return a cons of (filename).
|
|
562
|
|
563 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
|
|
564 keywords used to look up the file and inline data,
|
|
565 respectively, in the instantiator. Normally these would
|
|
566 be Q_file and Q_data, but might be different for mask data. */
|
|
567
|
|
568 static Lisp_Object
|
|
569 potential_pixmap_file_instantiator (Lisp_Object instantiator,
|
|
570 Lisp_Object file_keyword,
|
|
571 Lisp_Object data_keyword)
|
|
572 {
|
|
573 Lisp_Object file;
|
|
574 Lisp_Object data;
|
|
575
|
|
576 assert (VECTORP (instantiator));
|
185
|
577
|
0
|
578 data = find_keyword_in_vector (instantiator, data_keyword);
|
|
579 file = find_keyword_in_vector (instantiator, file_keyword);
|
|
580
|
|
581 if (!NILP (file) && NILP (data))
|
|
582 {
|
|
583 Lisp_Object retval = locate_pixmap_file (file);
|
|
584 if (!NILP (retval))
|
|
585 return retval;
|
|
586 else
|
|
587 return Fcons (file, Qnil); /* should have been file */
|
|
588 }
|
|
589
|
|
590 return Qnil;
|
|
591 }
|
|
592
|
|
593
|
|
594 static Lisp_Object
|
|
595 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
596 Lisp_Object image_type_tag)
|
|
597 {
|
116
|
598 /* This function can call lisp */
|
0
|
599 Lisp_Object file = Qnil;
|
|
600 struct gcpro gcpro1, gcpro2;
|
|
601 Lisp_Object alist = Qnil;
|
185
|
602
|
0
|
603 GCPRO2 (file, alist);
|
|
604
|
|
605 /* Now, convert any file data into inline data. At the end of this,
|
|
606 `data' will contain the inline data (if any) or Qnil, and `file'
|
|
607 will contain the name this data was derived from (if known) or
|
|
608 Qnil.
|
|
609
|
|
610 Note that if we cannot generate any regular inline data, we
|
|
611 skip out. */
|
|
612
|
278
|
613 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
614 console_type);
|
|
615
|
0
|
616 if (CONSP (file)) /* failure locating filename */
|
|
617 signal_double_file_error ("Opening pixmap file",
|
|
618 "no such file or directory",
|
|
619 Fcar (file));
|
|
620
|
|
621 if (NILP (file)) /* no conversion necessary */
|
|
622 RETURN_UNGCPRO (inst);
|
|
623
|
|
624 alist = tagged_vector_to_alist (inst);
|
|
625
|
|
626 {
|
|
627 Lisp_Object data = make_string_from_file (file);
|
|
628 alist = remassq_no_quit (Q_file, alist);
|
|
629 /* there can't be a :data at this point. */
|
|
630 alist = Fcons (Fcons (Q_file, file),
|
|
631 Fcons (Fcons (Q_data, data), alist));
|
|
632 }
|
|
633
|
|
634 {
|
|
635 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
|
|
636 free_alist (alist);
|
|
637 RETURN_UNGCPRO (result);
|
|
638 }
|
|
639 }
|
278
|
640 #endif
|
0
|
641
|
265
|
642 #if 0
|
0
|
643 static void
|
|
644 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
|
|
645 {
|
251
|
646 Lisp_Object instream, outstream;
|
|
647 Lstream *istr, *ostr;
|
|
648 char tempbuf[1024]; /* some random amount */
|
|
649 int fubar = 0;
|
|
650 FILE *tmpfil;
|
265
|
651 static Extbyte_dynarr *conversion_out_dynarr;
|
251
|
652 Bytecount bstart, bend;
|
|
653 struct gcpro gcpro1, gcpro2;
|
259
|
654 #ifdef FILE_CODING
|
251
|
655 Lisp_Object conv_out_stream;
|
|
656 Lstream *costr;
|
|
657 struct gcpro gcpro3;
|
|
658 #endif
|
|
659
|
|
660 /* This function can GC */
|
|
661 if (!conversion_out_dynarr)
|
|
662 conversion_out_dynarr = Dynarr_new (Extbyte);
|
|
663 else
|
|
664 Dynarr_reset (conversion_out_dynarr);
|
|
665
|
|
666 /* Create the temporary file ... */
|
0
|
667 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
|
|
668 mktemp (filename_out);
|
251
|
669 tmpfil = fopen (filename_out, "w");
|
|
670 if (!tmpfil)
|
0
|
671 {
|
251
|
672 if (tmpfil)
|
0
|
673 {
|
|
674 int old_errno = errno;
|
251
|
675 fclose (tmpfil);
|
0
|
676 unlink (filename_out);
|
|
677 errno = old_errno;
|
|
678 }
|
|
679 report_file_error ("Creating temp file",
|
|
680 list1 (build_string (filename_out)));
|
|
681 }
|
|
682
|
251
|
683 CHECK_STRING (string);
|
|
684 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
|
|
685 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
686 instream = make_lisp_string_input_stream (string, bstart, bend);
|
|
687 istr = XLSTREAM (instream);
|
|
688 /* setup the out stream */
|
|
689 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
|
|
690 ostr = XLSTREAM (outstream);
|
259
|
691 #ifdef FILE_CODING
|
251
|
692 /* setup the conversion stream */
|
|
693 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
|
|
694 costr = XLSTREAM (conv_out_stream);
|
|
695 GCPRO3 (instream, outstream, conv_out_stream);
|
|
696 #else
|
|
697 GCPRO2 (instream, outstream);
|
|
698 #endif
|
|
699
|
|
700 /* Get the data while doing the conversion */
|
269
|
701 while (1)
|
|
702 {
|
|
703 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
|
|
704 if (!size_in_bytes)
|
|
705 break;
|
|
706 /* It does seem the flushes are necessary... */
|
259
|
707 #ifdef FILE_CODING
|
269
|
708 Lstream_write (costr, tempbuf, size_in_bytes);
|
|
709 Lstream_flush (costr);
|
251
|
710 #else
|
269
|
711 Lstream_write (ostr, tempbuf, size_in_bytes);
|
251
|
712 #endif
|
269
|
713 Lstream_flush (ostr);
|
|
714 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
|
|
715 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
|
|
716 {
|
|
717 fubar = 1;
|
|
718 break;
|
|
719 }
|
|
720 /* reset the dynarr */
|
|
721 Lstream_rewind(ostr);
|
|
722 }
|
251
|
723
|
|
724 if (fclose (tmpfil) != 0)
|
|
725 fubar = 1;
|
|
726 Lstream_close (istr);
|
259
|
727 #ifdef FILE_CODING
|
251
|
728 Lstream_close (costr);
|
|
729 #endif
|
|
730 Lstream_close (ostr);
|
272
|
731
|
251
|
732 UNGCPRO;
|
|
733 Lstream_delete (istr);
|
|
734 Lstream_delete (ostr);
|
259
|
735 #ifdef FILE_CODING
|
251
|
736 Lstream_delete (costr);
|
|
737 #endif
|
259
|
738
|
251
|
739 if (fubar)
|
|
740 report_file_error ("Writing temp file",
|
|
741 list1 (build_string (filename_out)));
|
0
|
742 }
|
272
|
743 #endif /* 0 */
|
0
|
744
|
|
745
|
|
746 /************************************************************************/
|
|
747 /* cursor functions */
|
|
748 /************************************************************************/
|
|
749
|
|
750 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
|
|
751 not, signal an error. INSTANTIATOR is only used in the error
|
|
752 message. */
|
|
753
|
|
754 static void
|
|
755 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
|
|
756 Lisp_Object instantiator)
|
|
757 {
|
|
758 unsigned int best_width, best_height;
|
|
759 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
|
|
760 width, height, &best_width, &best_height))
|
|
761 /* this means that an X error of some sort occurred (we trap
|
|
762 these so they're not fatal). */
|
|
763 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
|
|
764
|
|
765 if (width > best_width || height > best_height)
|
|
766 error_with_frob (instantiator,
|
|
767 "pointer too large (%dx%d): "
|
|
768 "server requires %dx%d or smaller",
|
|
769 width, height, best_width, best_height);
|
|
770 }
|
|
771
|
|
772
|
|
773 static void
|
|
774 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
|
|
775 Lisp_Object *background, XColor *xfg, XColor *xbg)
|
|
776 {
|
|
777 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
|
|
778 *foreground =
|
|
779 Fmake_color_instance (*foreground, device,
|
|
780 encode_error_behavior_flag (ERROR_ME));
|
|
781 if (COLOR_INSTANCEP (*foreground))
|
|
782 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
|
|
783 else
|
|
784 {
|
|
785 xfg->pixel = 0;
|
|
786 xfg->red = xfg->green = xfg->blue = 0;
|
|
787 }
|
185
|
788
|
0
|
789 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
|
|
790 *background =
|
|
791 Fmake_color_instance (*background, device,
|
|
792 encode_error_behavior_flag (ERROR_ME));
|
|
793 if (COLOR_INSTANCEP (*background))
|
|
794 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
|
|
795 else
|
|
796 {
|
|
797 xbg->pixel = 0;
|
|
798 xbg->red = xbg->green = xbg->blue = ~0;
|
|
799 }
|
|
800 }
|
|
801
|
|
802 static void
|
|
803 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
|
|
804 Lisp_Object background)
|
|
805 {
|
|
806 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
807 XColor xfg, xbg;
|
|
808
|
|
809 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
|
|
810 if (!NILP (foreground) || !NILP (background))
|
|
811 {
|
|
812 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
|
|
813 XIMAGE_INSTANCE_X_CURSOR (image_instance),
|
|
814 &xfg, &xbg);
|
|
815 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
816 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
817 }
|
|
818 }
|
|
819
|
|
820
|
|
821 /************************************************************************/
|
|
822 /* color pixmap functions */
|
|
823 /************************************************************************/
|
|
824
|
|
825 /* Initialize an image instance from an XImage.
|
|
826
|
|
827 DEST_MASK specifies the mask of allowed image types.
|
|
828
|
|
829 PIXELS and NPIXELS specify an array of pixels that are used in
|
|
830 the image. These need to be kept around for the duration of the
|
|
831 image. When the image instance is freed, XFreeColors() will
|
|
832 automatically be called on all the pixels specified here; thus,
|
|
833 you should have allocated the pixels yourself using XAllocColor()
|
|
834 or the like. The array passed in is used directly without
|
|
835 being copied, so it should be heap data created with xmalloc().
|
|
836 It will be freed using xfree() when the image instance is
|
|
837 destroyed.
|
|
838
|
|
839 If this fails, signal an error. INSTANTIATOR is only used
|
|
840 in the error message.
|
|
841
|
|
842 #### This should be able to handle conversion into `pointer'.
|
|
843 Use the same code as for `xpm'. */
|
|
844
|
|
845 static void
|
|
846 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
|
|
847 XImage *ximage,
|
|
848 int dest_mask,
|
269
|
849 Colormap cmap,
|
0
|
850 unsigned long *pixels,
|
|
851 int npixels,
|
|
852 Lisp_Object instantiator)
|
|
853 {
|
|
854 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
855 Display *dpy;
|
|
856 GC gc;
|
|
857 Drawable d;
|
|
858 Pixmap pixmap;
|
|
859
|
|
860 if (!DEVICE_X_P (XDEVICE (device)))
|
|
861 signal_simple_error ("Not an X device", device);
|
|
862
|
|
863 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
864 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
865
|
|
866 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
867 incompatible_image_types (instantiator, dest_mask,
|
|
868 IMAGE_COLOR_PIXMAP_MASK);
|
185
|
869
|
0
|
870 pixmap = XCreatePixmap (dpy, d, ximage->width,
|
|
871 ximage->height, ximage->depth);
|
|
872 if (!pixmap)
|
|
873 signal_simple_error ("Unable to create pixmap", instantiator);
|
|
874
|
|
875 gc = XCreateGC (dpy, pixmap, 0, NULL);
|
|
876 if (!gc)
|
|
877 {
|
|
878 XFreePixmap (dpy, pixmap);
|
|
879 signal_simple_error ("Unable to create GC", instantiator);
|
|
880 }
|
185
|
881
|
0
|
882 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
|
|
883 ximage->width, ximage->height);
|
185
|
884
|
0
|
885 XFreeGC (dpy, gc);
|
|
886
|
|
887 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
|
|
888
|
|
889 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
890 find_keyword_in_vector (instantiator, Q_file);
|
185
|
891
|
0
|
892 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
893 IMAGE_INSTANCE_X_MASK (ii) = 0;
|
|
894 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
|
|
895 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
|
|
896 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
|
269
|
897 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
898 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
899 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
900 }
|
|
901
|
278
|
902 static void
|
|
903 x_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
|
|
904 int width, int height,
|
|
905 unsigned char *eimage,
|
|
906 int dest_mask,
|
|
907 Lisp_Object instantiator,
|
|
908 Lisp_Object domain)
|
|
909 {
|
|
910 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
911 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
912 unsigned long *pixtbl;
|
|
913 int pixcount;
|
|
914 int npixels;
|
|
915 XImage* ximage;
|
|
916
|
|
917 ximage = convert_EImage_to_XImage (device, width, height, eimage,
|
|
918 &pixtbl, &pixcount, &npixels);
|
|
919 if (!ximage)
|
|
920 signal_image_error("EImage to XImage conversion failed", instantiator);
|
|
921
|
|
922 /* Now create the pixmap and set up the image instance */
|
|
923 init_image_instance_from_x_image (ii, ximage, dest_mask,
|
|
924 cmap, pixtbl, npixels,
|
|
925 instantiator);
|
|
926
|
|
927 if (ximage)
|
|
928 {
|
|
929 if (ximage->data)
|
|
930 {
|
|
931 xfree (ximage->data);
|
|
932 ximage->data = 0;
|
|
933 }
|
|
934 XDestroyImage (ximage);
|
|
935 }
|
|
936 }
|
|
937
|
0
|
938
|
|
939 /**********************************************************************
|
|
940 * XBM *
|
|
941 **********************************************************************/
|
|
942
|
|
943 /* Check if DATA represents a valid inline XBM spec (i.e. a list
|
|
944 of (width height bits), with checking done on the dimensions).
|
|
945 If not, signal an error. */
|
|
946
|
|
947 static void
|
|
948 check_valid_xbm_inline (Lisp_Object data)
|
|
949 {
|
|
950 Lisp_Object width, height, bits;
|
|
951
|
272
|
952 if (!CONSP (data) ||
|
|
953 !CONSP (XCDR (data)) ||
|
|
954 !CONSP (XCDR (XCDR (data))) ||
|
0
|
955 !NILP (XCDR (XCDR (XCDR (data)))))
|
|
956 signal_simple_error ("Must be list of 3 elements", data);
|
|
957
|
272
|
958 width = XCAR (data);
|
0
|
959 height = XCAR (XCDR (data));
|
272
|
960 bits = XCAR (XCDR (XCDR (data)));
|
|
961
|
|
962 CHECK_STRING (bits);
|
|
963
|
|
964 if (!NATNUMP (width))
|
|
965 signal_simple_error ("Width must be a natural number", width);
|
|
966
|
|
967 if (!NATNUMP (height))
|
|
968 signal_simple_error ("Height must be a natural number", height);
|
|
969
|
|
970 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
|
|
971 signal_simple_error ("data is too short for width and height",
|
0
|
972 vector3 (width, height, bits));
|
|
973 }
|
|
974
|
|
975 /* Validate method for XBM's. */
|
|
976
|
|
977 static void
|
|
978 xbm_validate (Lisp_Object instantiator)
|
|
979 {
|
|
980 file_or_data_must_be_present (instantiator);
|
|
981 }
|
|
982
|
|
983 /* Given a filename that is supposed to contain XBM data, return
|
|
984 the inline representation of it as (width height bits). Return
|
|
985 the hotspot through XHOT and YHOT, if those pointers are not 0.
|
|
986 If there is no hotspot, XHOT and YHOT will contain -1.
|
|
987
|
|
988 If the function fails:
|
|
989
|
|
990 -- if OK_IF_DATA_INVALID is set and the data was invalid,
|
|
991 return Qt.
|
|
992 -- maybe return an error, or return Qnil.
|
|
993 */
|
185
|
994
|
0
|
995
|
|
996 static Lisp_Object
|
|
997 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
|
|
998 int ok_if_data_invalid)
|
|
999 {
|
|
1000 unsigned int w, h;
|
|
1001 Extbyte *data;
|
|
1002 int result;
|
|
1003 CONST char *filename_ext;
|
|
1004
|
|
1005 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
|
|
1006 result = XmuReadBitmapDataFromFile (filename_ext, &w, &h, &data, xhot, yhot);
|
|
1007
|
|
1008 if (result == BitmapSuccess)
|
|
1009 {
|
|
1010 Lisp_Object retval;
|
|
1011 int len = (w + 7) / 8 * h;
|
|
1012
|
|
1013 retval = list3 (make_int (w), make_int (h),
|
|
1014 make_ext_string (data, len, FORMAT_BINARY));
|
|
1015 XFree ((char *) data);
|
|
1016 return retval;
|
|
1017 }
|
|
1018
|
|
1019 switch (result)
|
|
1020 {
|
|
1021 case BitmapOpenFailed:
|
|
1022 {
|
|
1023 /* should never happen */
|
|
1024 signal_double_file_error ("Opening bitmap file",
|
|
1025 "no such file or directory",
|
|
1026 name);
|
|
1027 }
|
|
1028 case BitmapFileInvalid:
|
|
1029 {
|
|
1030 if (ok_if_data_invalid)
|
|
1031 return Qt;
|
|
1032 signal_double_file_error ("Reading bitmap file",
|
|
1033 "invalid data in file",
|
|
1034 name);
|
|
1035 }
|
|
1036 case BitmapNoMemory:
|
|
1037 {
|
|
1038 signal_double_file_error ("Reading bitmap file",
|
|
1039 "out of memory",
|
|
1040 name);
|
|
1041 }
|
|
1042 default:
|
|
1043 {
|
|
1044 signal_double_file_error_2 ("Reading bitmap file",
|
|
1045 "unknown error code",
|
|
1046 make_int (result), name);
|
|
1047 }
|
|
1048 }
|
|
1049
|
|
1050 return Qnil; /* not reached */
|
|
1051 }
|
|
1052
|
|
1053 static Lisp_Object
|
|
1054 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
|
|
1055 Lisp_Object mask_file)
|
|
1056 {
|
|
1057 /* This is unclean but it's fairly standard -- a number of the
|
|
1058 bitmaps in /usr/include/X11/bitmaps use it -- so we support
|
|
1059 it. */
|
|
1060 if (NILP (mask_file)
|
|
1061 /* don't override explicitly specified mask data. */
|
|
1062 && NILP (assq_no_quit (Q_mask_data, alist))
|
|
1063 && !NILP (file))
|
|
1064 {
|
|
1065 mask_file =
|
|
1066 locate_pixmap_file (concat2 (file, build_string ("Mask")));
|
|
1067 if (NILP (mask_file))
|
|
1068 mask_file =
|
|
1069 locate_pixmap_file (concat2 (file, build_string ("msk")));
|
|
1070 }
|
|
1071
|
|
1072 if (!NILP (mask_file))
|
|
1073 {
|
|
1074 Lisp_Object mask_data =
|
|
1075 bitmap_to_lisp_data (mask_file, 0, 0, 0);
|
|
1076 alist = remassq_no_quit (Q_mask_file, alist);
|
|
1077 /* there can't be a :mask-data at this point. */
|
|
1078 alist = Fcons (Fcons (Q_mask_file, mask_file),
|
|
1079 Fcons (Fcons (Q_mask_data, mask_data), alist));
|
|
1080 }
|
|
1081
|
|
1082 return alist;
|
|
1083 }
|
|
1084
|
|
1085 /* Normalize method for XBM's. */
|
|
1086
|
|
1087 static Lisp_Object
|
|
1088 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1089 {
|
|
1090 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
1091 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1092 Lisp_Object alist = Qnil;
|
185
|
1093
|
0
|
1094 GCPRO3 (file, mask_file, alist);
|
|
1095
|
|
1096 /* Now, convert any file data into inline data for both the regular
|
|
1097 data and the mask data. At the end of this, `data' will contain
|
|
1098 the inline data (if any) or Qnil, and `file' will contain
|
|
1099 the name this data was derived from (if known) or Qnil.
|
|
1100 Likewise for `mask_file' and `mask_data'.
|
|
1101
|
|
1102 Note that if we cannot generate any regular inline data, we
|
|
1103 skip out. */
|
|
1104
|
278
|
1105 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1106 console_type);
|
0
|
1107 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
278
|
1108 Q_mask_data, console_type);
|
0
|
1109
|
|
1110 if (CONSP (file)) /* failure locating filename */
|
|
1111 signal_double_file_error ("Opening bitmap file",
|
|
1112 "no such file or directory",
|
|
1113 Fcar (file));
|
|
1114
|
|
1115 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
1116 RETURN_UNGCPRO (inst);
|
|
1117
|
|
1118 alist = tagged_vector_to_alist (inst);
|
|
1119
|
|
1120 if (!NILP (file))
|
|
1121 {
|
|
1122 int xhot, yhot;
|
|
1123 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
|
|
1124 alist = remassq_no_quit (Q_file, alist);
|
|
1125 /* there can't be a :data at this point. */
|
|
1126 alist = Fcons (Fcons (Q_file, file),
|
|
1127 Fcons (Fcons (Q_data, data), alist));
|
|
1128
|
|
1129 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
|
|
1130 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
1131 alist);
|
|
1132 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
|
|
1133 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
1134 alist);
|
|
1135 }
|
|
1136
|
|
1137 alist = xbm_mask_file_munging (alist, file, mask_file);
|
|
1138
|
|
1139 {
|
|
1140 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
1141 free_alist (alist);
|
|
1142 RETURN_UNGCPRO (result);
|
|
1143 }
|
|
1144 }
|
|
1145
|
|
1146 /* Given inline data for a mono pixmap, create and return the
|
|
1147 corresponding X object. */
|
|
1148
|
|
1149 static Pixmap
|
|
1150 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
|
|
1151 /* Note that data is in ext-format! */
|
|
1152 CONST Extbyte *bits)
|
|
1153 {
|
219
|
1154 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
|
|
1155 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
|
0
|
1156 (char *) bits, width, height,
|
|
1157 1, 0, 1);
|
|
1158 }
|
|
1159
|
|
1160 /* Given inline data for a mono pixmap, initialize the given
|
|
1161 image instance accordingly. */
|
|
1162
|
|
1163 static void
|
|
1164 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
|
|
1165 int width, int height,
|
|
1166 /* Note that data is in ext-format! */
|
|
1167 CONST char *bits,
|
|
1168 Lisp_Object instantiator,
|
|
1169 Lisp_Object pointer_fg,
|
|
1170 Lisp_Object pointer_bg,
|
|
1171 int dest_mask,
|
|
1172 Pixmap mask,
|
|
1173 Lisp_Object mask_filename)
|
|
1174 {
|
|
1175 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1176 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1177 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
|
|
1178 Display *dpy;
|
|
1179 Screen *scr;
|
219
|
1180 Drawable draw;
|
0
|
1181 enum image_instance_type type;
|
|
1182
|
|
1183 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1184 signal_simple_error ("Not an X device", device);
|
|
1185
|
|
1186 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
1187 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
1188 scr = DefaultScreenOfDisplay (dpy);
|
|
1189
|
|
1190 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
|
|
1191 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
1192 {
|
|
1193 if (!NILP (foreground) || !NILP (background))
|
|
1194 type = IMAGE_COLOR_PIXMAP;
|
|
1195 else
|
|
1196 type = IMAGE_MONO_PIXMAP;
|
|
1197 }
|
|
1198 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1199 type = IMAGE_MONO_PIXMAP;
|
|
1200 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1201 type = IMAGE_COLOR_PIXMAP;
|
|
1202 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1203 type = IMAGE_POINTER;
|
|
1204 else
|
|
1205 incompatible_image_types (instantiator, dest_mask,
|
|
1206 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1207 | IMAGE_POINTER_MASK);
|
|
1208
|
|
1209 x_initialize_pixmap_image_instance (ii, type);
|
|
1210 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
1211 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
1212 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1213 find_keyword_in_vector (instantiator, Q_file);
|
|
1214
|
|
1215 switch (type)
|
|
1216 {
|
|
1217 case IMAGE_MONO_PIXMAP:
|
|
1218 {
|
|
1219 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
|
1220 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
|
|
1221 }
|
|
1222 break;
|
|
1223
|
|
1224 case IMAGE_COLOR_PIXMAP:
|
|
1225 {
|
219
|
1226 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
|
0
|
1227 unsigned long fg = BlackPixelOfScreen (scr);
|
|
1228 unsigned long bg = WhitePixelOfScreen (scr);
|
|
1229
|
|
1230 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
|
|
1231 foreground =
|
|
1232 Fmake_color_instance (foreground, device,
|
|
1233 encode_error_behavior_flag (ERROR_ME));
|
|
1234
|
|
1235 if (COLOR_INSTANCEP (foreground))
|
|
1236 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
|
|
1237
|
|
1238 if (!NILP (background) && !COLOR_INSTANCEP (background))
|
|
1239 background =
|
|
1240 Fmake_color_instance (background, device,
|
|
1241 encode_error_behavior_flag (ERROR_ME));
|
|
1242
|
|
1243 if (COLOR_INSTANCEP (background))
|
|
1244 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
|
|
1245
|
|
1246 /* We used to duplicate the pixels using XAllocColor(), to protect
|
|
1247 against their getting freed. Just as easy to just store the
|
|
1248 color instances here and GC-protect them, so this doesn't
|
|
1249 happen. */
|
|
1250 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
1251 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
1252 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
219
|
1253 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
1254 (char *) bits, width, height,
|
|
1255 fg, bg, d);
|
|
1256 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
1257 }
|
|
1258 break;
|
|
1259
|
|
1260 case IMAGE_POINTER:
|
207
|
1261 {
|
0
|
1262 XColor fg_color, bg_color;
|
|
1263 Pixmap source;
|
|
1264
|
|
1265 check_pointer_sizes (scr, width, height, instantiator);
|
|
1266
|
|
1267 source =
|
219
|
1268 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
1269 (char *) bits, width, height,
|
|
1270 1, 0, 1);
|
|
1271
|
|
1272 if (NILP (foreground))
|
|
1273 foreground = pointer_fg;
|
|
1274 if (NILP (background))
|
|
1275 background = pointer_bg;
|
|
1276 generate_cursor_fg_bg (device, &foreground, &background,
|
|
1277 &fg_color, &bg_color);
|
|
1278
|
|
1279 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
1280 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
1281 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
|
|
1282 find_keyword_in_vector (instantiator, Q_hotspot_x);
|
|
1283 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
|
|
1284 find_keyword_in_vector (instantiator, Q_hotspot_y);
|
|
1285 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1286 XCreatePixmapCursor
|
|
1287 (dpy, source, mask, &fg_color, &bg_color,
|
|
1288 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
|
|
1289 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
|
|
1290 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
|
|
1291 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
|
|
1292 }
|
|
1293 break;
|
|
1294
|
|
1295 default:
|
|
1296 abort ();
|
|
1297 }
|
|
1298 }
|
207
|
1299
|
0
|
1300 static int
|
74
|
1301 xbm_possible_dest_types (void)
|
0
|
1302 {
|
74
|
1303 return
|
|
1304 IMAGE_MONO_PIXMAP_MASK |
|
|
1305 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
1306 IMAGE_POINTER_MASK;
|
|
1307 }
|
|
1308
|
|
1309 static void
|
|
1310 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1311 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1312 int dest_mask, int width, int height,
|
|
1313 /* Note that data is in ext-format! */
|
|
1314 CONST char *bits)
|
|
1315 {
|
|
1316 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
|
|
1317 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
|
|
1318 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1319 Pixmap mask = 0;
|
|
1320 CONST char *gcc_may_you_rot_in_hell;
|
|
1321
|
|
1322 if (!NILP (mask_data))
|
269
|
1323 {
|
0
|
1324 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
|
|
1325 gcc_may_you_rot_in_hell);
|
|
1326 mask =
|
|
1327 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
|
|
1328 XINT (XCAR (mask_data)),
|
|
1329 XINT (XCAR (XCDR (mask_data))),
|
|
1330 (CONST unsigned char *)
|
|
1331 gcc_may_you_rot_in_hell);
|
207
|
1332 }
|
0
|
1333
|
|
1334 init_image_instance_from_xbm_inline (ii, width, height, bits,
|
|
1335 instantiator, pointer_fg, pointer_bg,
|
|
1336 dest_mask, mask, mask_file);
|
|
1337 }
|
|
1338
|
|
1339 /* Instantiate method for XBM's. */
|
|
1340
|
|
1341 static void
|
|
1342 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
207
|
1343 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1344 int dest_mask, Lisp_Object domain)
|
0
|
1345 {
|
|
1346 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1347 CONST char *gcc_go_home;
|
|
1348
|
|
1349 assert (!NILP (data));
|
|
1350
|
|
1351 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
|
|
1352 gcc_go_home);
|
|
1353
|
|
1354 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1355 pointer_bg, dest_mask, XINT (XCAR (data)),
|
|
1356 XINT (XCAR (XCDR (data))), gcc_go_home);
|
|
1357 }
|
|
1358
|
|
1359
|
|
1360 #ifdef HAVE_XPM
|
|
1361
|
|
1362 /**********************************************************************
|
|
1363 * XPM *
|
|
1364 **********************************************************************/
|
|
1365
|
|
1366 static Lisp_Object
|
|
1367 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
1368 {
|
|
1369 char **data;
|
|
1370 int result;
|
|
1371
|
14
|
1372 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
|
0
|
1373
|
|
1374 if (result == XpmSuccess)
|
|
1375 {
|
|
1376 Lisp_Object retval = Qnil;
|
|
1377 struct buffer *old_buffer = current_buffer;
|
|
1378 Lisp_Object temp_buffer =
|
|
1379 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
1380 int elt;
|
|
1381 int height, width, ncolors;
|
|
1382 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1383 int speccount = specpdl_depth ();
|
|
1384
|
|
1385 GCPRO3 (name, retval, temp_buffer);
|
|
1386
|
|
1387 specbind (Qinhibit_quit, Qt);
|
|
1388 set_buffer_internal (XBUFFER (temp_buffer));
|
223
|
1389 Ferase_buffer (Qnil);
|
0
|
1390
|
|
1391 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
1392 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
1393
|
|
1394 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
1395 for (elt = 0; elt <= width + ncolors; elt++)
|
|
1396 {
|
|
1397 buffer_insert_c_string (current_buffer, "\"");
|
|
1398 buffer_insert_c_string (current_buffer, data[elt]);
|
|
1399
|
|
1400 if (elt < width + ncolors)
|
|
1401 buffer_insert_c_string (current_buffer, "\",\r");
|
|
1402 else
|
|
1403 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
1404 }
|
|
1405
|
223
|
1406 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
|
0
|
1407 XpmFree (data);
|
|
1408
|
|
1409 set_buffer_internal (old_buffer);
|
|
1410 unbind_to (speccount, Qnil);
|
|
1411
|
|
1412 RETURN_UNGCPRO (retval);
|
|
1413 }
|
|
1414
|
|
1415 switch (result)
|
|
1416 {
|
|
1417 case XpmFileInvalid:
|
|
1418 {
|
|
1419 if (ok_if_data_invalid)
|
|
1420 return Qt;
|
269
|
1421 signal_image_error ("invalid XPM data in file", name);
|
0
|
1422 }
|
|
1423 case XpmNoMemory:
|
|
1424 {
|
|
1425 signal_double_file_error ("Reading pixmap file",
|
|
1426 "out of memory", name);
|
|
1427 }
|
|
1428 case XpmOpenFailed:
|
|
1429 {
|
|
1430 /* should never happen? */
|
|
1431 signal_double_file_error ("Opening pixmap file",
|
|
1432 "no such file or directory", name);
|
|
1433 }
|
|
1434 default:
|
|
1435 {
|
|
1436 signal_double_file_error_2 ("Parsing pixmap file",
|
|
1437 "unknown error code",
|
|
1438 make_int (result), name);
|
|
1439 break;
|
|
1440 }
|
|
1441 }
|
|
1442
|
|
1443 return Qnil; /* not reached */
|
|
1444 }
|
|
1445
|
276
|
1446 Lisp_Object
|
|
1447 x_xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
0
|
1448 {
|
|
1449 Lisp_Object file = Qnil;
|
|
1450 Lisp_Object color_symbols;
|
|
1451 struct gcpro gcpro1, gcpro2;
|
|
1452 Lisp_Object alist = Qnil;
|
185
|
1453
|
0
|
1454 GCPRO2 (file, alist);
|
|
1455
|
|
1456 /* Now, convert any file data into inline data. At the end of this,
|
|
1457 `data' will contain the inline data (if any) or Qnil, and
|
|
1458 `file' will contain the name this data was derived from (if
|
|
1459 known) or Qnil.
|
|
1460
|
|
1461 Note that if we cannot generate any regular inline data, we
|
|
1462 skip out. */
|
|
1463
|
278
|
1464 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1465 console_type);
|
0
|
1466
|
|
1467 if (CONSP (file)) /* failure locating filename */
|
|
1468 signal_double_file_error ("Opening pixmap file",
|
|
1469 "no such file or directory",
|
|
1470 Fcar (file));
|
|
1471
|
|
1472 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
1473 Qunbound);
|
|
1474
|
|
1475 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
1476 /* no conversion necessary */
|
|
1477 RETURN_UNGCPRO (inst);
|
|
1478
|
|
1479 alist = tagged_vector_to_alist (inst);
|
|
1480
|
|
1481 if (!NILP (file))
|
|
1482 {
|
|
1483 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
1484 alist = remassq_no_quit (Q_file, alist);
|
|
1485 /* there can't be a :data at this point. */
|
|
1486 alist = Fcons (Fcons (Q_file, file),
|
|
1487 Fcons (Fcons (Q_data, data), alist));
|
|
1488 }
|
|
1489
|
|
1490 if (UNBOUNDP (color_symbols))
|
|
1491 {
|
|
1492 color_symbols = evaluate_xpm_color_symbols ();
|
|
1493 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
1494 alist);
|
|
1495 }
|
|
1496
|
|
1497 {
|
|
1498 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1499 free_alist (alist);
|
|
1500 RETURN_UNGCPRO (result);
|
|
1501 }
|
|
1502 }
|
|
1503
|
|
1504 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
|
|
1505 There was no version number in xpm.h before 3.3, but this should do.
|
|
1506 */
|
|
1507 #if (XpmVersion >= 3) || defined(XpmExactColors)
|
|
1508 # define XPM_DOES_BUFFERS
|
|
1509 #endif
|
|
1510
|
|
1511 #ifndef XPM_DOES_BUFFERS
|
|
1512 Your version of XPM is too old. You cannot compile with it.
|
|
1513 Upgrade to version 3.2g or better or compile with --with-xpm=no.
|
|
1514 #endif /* !XPM_DOES_BUFFERS */
|
|
1515
|
|
1516 static XpmColorSymbol *
|
|
1517 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
|
124
|
1518 Lisp_Object domain,
|
0
|
1519 Lisp_Object color_symbol_alist)
|
|
1520 {
|
|
1521 /* This function can GC */
|
219
|
1522 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
|
|
1523 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
0
|
1524 XColor color;
|
|
1525 Lisp_Object rest;
|
|
1526 Lisp_Object results = Qnil;
|
|
1527 int i;
|
|
1528 XpmColorSymbol *symbols;
|
|
1529 struct gcpro gcpro1, gcpro2;
|
|
1530
|
|
1531 GCPRO2 (results, device);
|
|
1532
|
|
1533 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
1534 error happens we don't lose any malloc()ed data, or more importantly,
|
|
1535 leave any pixels allocated in the server. */
|
|
1536 i = 0;
|
|
1537 LIST_LOOP (rest, color_symbol_alist)
|
|
1538 {
|
|
1539 Lisp_Object cons = XCAR (rest);
|
|
1540 Lisp_Object name = XCAR (cons);
|
|
1541 Lisp_Object value = XCDR (cons);
|
|
1542 if (NILP (value))
|
|
1543 continue;
|
|
1544 if (STRINGP (value))
|
|
1545 value =
|
|
1546 Fmake_color_instance
|
|
1547 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
1548 else
|
|
1549 {
|
|
1550 assert (COLOR_SPECIFIERP (value));
|
124
|
1551 value = Fspecifier_instance (value, domain, Qnil, Qnil);
|
0
|
1552 }
|
|
1553 if (NILP (value))
|
|
1554 continue;
|
|
1555 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
1556 i++;
|
|
1557 }
|
|
1558 UNGCPRO; /* no more evaluation */
|
|
1559
|
|
1560 if (i == 0) return 0;
|
|
1561
|
185
|
1562 symbols = xnew_array (XpmColorSymbol, i);
|
0
|
1563 xpmattrs->valuemask |= XpmColorSymbols;
|
|
1564 xpmattrs->colorsymbols = symbols;
|
|
1565 xpmattrs->numsymbols = i;
|
|
1566
|
|
1567 while (--i >= 0)
|
|
1568 {
|
|
1569 Lisp_Object cons = XCAR (results);
|
|
1570 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
1571 /* Duplicate the pixel value so that we still have a lock on it if
|
|
1572 the pixel we were passed is later freed. */
|
|
1573 if (! XAllocColor (dpy, cmap, &color))
|
|
1574 abort (); /* it must be allocable since we're just duplicating it */
|
|
1575
|
14
|
1576 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
|
0
|
1577 symbols [i].pixel = color.pixel;
|
|
1578 symbols [i].value = 0;
|
|
1579 free_cons (XCONS (cons));
|
|
1580 cons = results;
|
|
1581 results = XCDR (results);
|
|
1582 free_cons (XCONS (cons));
|
|
1583 }
|
|
1584 return symbols;
|
|
1585 }
|
|
1586
|
|
1587 static void
|
|
1588 xpm_free (XpmAttributes *xpmattrs)
|
|
1589 {
|
|
1590 /* Could conceivably lose if XpmXXX returned an error without first
|
|
1591 initializing this structure, if we didn't know that initializing it
|
|
1592 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
|
|
1593 multiple times, since it zeros slots as it frees them...) */
|
|
1594 XpmFreeAttributes (xpmattrs);
|
|
1595 }
|
|
1596
|
276
|
1597 void
|
|
1598 x_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1599 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1600 int dest_mask, Lisp_Object domain)
|
0
|
1601 {
|
|
1602 /* This function can GC */
|
|
1603 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
276
|
1604 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
0
|
1605 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1606 Display *dpy;
|
|
1607 Screen *xs;
|
219
|
1608 Colormap cmap;
|
|
1609 int depth;
|
0
|
1610 Pixmap pixmap;
|
|
1611 Pixmap mask = 0;
|
|
1612 XpmAttributes xpmattrs;
|
|
1613 int result;
|
|
1614 XpmColorSymbol *color_symbols;
|
|
1615 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
1616 Q_color_symbols);
|
|
1617 enum image_instance_type type;
|
|
1618 int force_mono;
|
|
1619 unsigned int w, h;
|
|
1620
|
|
1621 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1622 signal_simple_error ("Not an X device", device);
|
|
1623
|
|
1624 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1625 xs = DefaultScreenOfDisplay (dpy);
|
|
1626
|
|
1627 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1628 type = IMAGE_COLOR_PIXMAP;
|
|
1629 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1630 type = IMAGE_MONO_PIXMAP;
|
|
1631 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1632 type = IMAGE_POINTER;
|
|
1633 else
|
|
1634 incompatible_image_types (instantiator, dest_mask,
|
|
1635 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1636 | IMAGE_POINTER_MASK);
|
|
1637 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
1638
|
269
|
1639 #if 1
|
251
|
1640 /* Although I haven't found it documented yet, it appears that pointers are
|
|
1641 always colored via the default window colormap... Sigh. However, with
|
|
1642 the current color structure, this will blow the doors off as things aren't set up
|
|
1643 to differenciate between two colormaps per console. AARGH! */
|
|
1644 if (type == IMAGE_POINTER)
|
|
1645 {
|
|
1646 cmap = DefaultColormap(dpy, DefaultScreen(dpy));
|
|
1647 depth = DefaultDepthOfScreen (xs);
|
|
1648 }
|
|
1649 else
|
|
1650 {
|
|
1651 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1652 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
|
1653 }
|
|
1654 #else
|
|
1655 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1656 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
|
1657 #endif
|
|
1658
|
0
|
1659 x_initialize_pixmap_image_instance (ii, type);
|
|
1660
|
|
1661 assert (!NILP (data));
|
|
1662
|
|
1663 retry:
|
|
1664
|
272
|
1665 xzero (xpmattrs); /* want XpmInitAttributes() */
|
0
|
1666 xpmattrs.valuemask = XpmReturnPixels;
|
|
1667 if (force_mono)
|
|
1668 {
|
|
1669 /* Without this, we get a 1-bit version of the color image, which
|
|
1670 isn't quite right. With this, we get the mono image, which might
|
|
1671 be very different looking. */
|
|
1672 xpmattrs.valuemask |= XpmColorKey;
|
|
1673 xpmattrs.color_key = XPM_MONO;
|
|
1674 xpmattrs.depth = 1;
|
|
1675 xpmattrs.valuemask |= XpmDepth;
|
|
1676 }
|
|
1677 else
|
|
1678 {
|
|
1679 xpmattrs.closeness = 65535;
|
|
1680 xpmattrs.valuemask |= XpmCloseness;
|
219
|
1681 xpmattrs.depth = depth;
|
|
1682 xpmattrs.valuemask |= XpmDepth;
|
|
1683 xpmattrs.visual = DEVICE_X_VISUAL (XDEVICE(device));
|
|
1684 xpmattrs.valuemask |= XpmVisual;
|
|
1685 xpmattrs.colormap = cmap;
|
|
1686 xpmattrs.valuemask |= XpmColormap;
|
0
|
1687 }
|
185
|
1688
|
124
|
1689 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
|
0
|
1690 color_symbol_alist);
|
|
1691
|
|
1692 result = XpmCreatePixmapFromBuffer (dpy,
|
219
|
1693 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
|
14
|
1694 (char *) XSTRING_DATA (data),
|
0
|
1695 &pixmap, &mask, &xpmattrs);
|
|
1696
|
|
1697 if (color_symbols)
|
|
1698 {
|
|
1699 xfree (color_symbols);
|
|
1700 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
|
|
1701 xpmattrs.numsymbols = 0;
|
|
1702 }
|
|
1703
|
|
1704 switch (result)
|
|
1705 {
|
|
1706 case XpmSuccess:
|
|
1707 break;
|
|
1708 case XpmFileInvalid:
|
|
1709 {
|
|
1710 xpm_free (&xpmattrs);
|
269
|
1711 signal_image_error ("invalid XPM data", data);
|
0
|
1712 }
|
|
1713 case XpmColorFailed:
|
|
1714 case XpmColorError:
|
|
1715 {
|
|
1716 xpm_free (&xpmattrs);
|
|
1717 if (force_mono)
|
|
1718 {
|
|
1719 /* second time; blow out. */
|
|
1720 signal_double_file_error ("Reading pixmap data",
|
|
1721 "color allocation failed",
|
|
1722 data);
|
|
1723 }
|
|
1724 else
|
|
1725 {
|
|
1726 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
|
|
1727 {
|
|
1728 /* second time; blow out. */
|
|
1729 signal_double_file_error ("Reading pixmap data",
|
|
1730 "color allocation failed",
|
|
1731 data);
|
|
1732 }
|
|
1733 force_mono = 1;
|
|
1734 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
|
|
1735 goto retry;
|
|
1736 }
|
|
1737 }
|
|
1738 case XpmNoMemory:
|
|
1739 {
|
|
1740 xpm_free (&xpmattrs);
|
|
1741 signal_double_file_error ("Parsing pixmap data",
|
|
1742 "out of memory", data);
|
|
1743 }
|
|
1744 default:
|
|
1745 {
|
|
1746 xpm_free (&xpmattrs);
|
|
1747 signal_double_file_error_2 ("Parsing pixmap data",
|
|
1748 "unknown error code",
|
|
1749 make_int (result), data);
|
|
1750 }
|
|
1751 }
|
|
1752
|
|
1753 w = xpmattrs.width;
|
|
1754 h = xpmattrs.height;
|
|
1755
|
|
1756 {
|
|
1757 int npixels = xpmattrs.npixels;
|
185
|
1758 Pixel *pixels;
|
0
|
1759
|
|
1760 if (npixels != 0)
|
|
1761 {
|
185
|
1762 pixels = xnew_array (Pixel, npixels);
|
0
|
1763 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
|
|
1764 }
|
|
1765 else
|
185
|
1766 pixels = NULL;
|
0
|
1767
|
|
1768 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
1769 IMAGE_INSTANCE_X_MASK (ii) = mask;
|
269
|
1770 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
1771 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
1772 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
1773 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
1774 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
1775 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1776 find_keyword_in_vector (instantiator, Q_file);
|
|
1777 }
|
|
1778
|
|
1779 switch (type)
|
|
1780 {
|
|
1781 case IMAGE_MONO_PIXMAP:
|
|
1782 break;
|
|
1783
|
|
1784 case IMAGE_COLOR_PIXMAP:
|
|
1785 {
|
219
|
1786 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
0
|
1787 }
|
|
1788 break;
|
|
1789
|
|
1790 case IMAGE_POINTER:
|
|
1791 {
|
|
1792 int npixels = xpmattrs.npixels;
|
|
1793 Pixel *pixels = xpmattrs.pixels;
|
|
1794 XColor fg, bg;
|
|
1795 int i;
|
|
1796 int xhot = 0, yhot = 0;
|
|
1797
|
|
1798 if (xpmattrs.valuemask & XpmHotspot)
|
|
1799 {
|
|
1800 xhot = xpmattrs.x_hotspot;
|
|
1801 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
|
|
1802 }
|
|
1803 if (xpmattrs.valuemask & XpmHotspot)
|
|
1804 {
|
|
1805 yhot = xpmattrs.y_hotspot;
|
|
1806 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
|
|
1807 }
|
|
1808 check_pointer_sizes (xs, w, h, instantiator);
|
|
1809
|
|
1810 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
1811 XPM file), then use those as the default colors for the cursor we
|
|
1812 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
1813 */
|
|
1814 if (npixels >= 2)
|
|
1815 {
|
|
1816 /* With an XBM file, it's obvious which bit is foreground
|
|
1817 and which is background, or rather, it's implicit: in
|
|
1818 an XBM file, a 1 bit is foreground, and a 0 bit is
|
|
1819 background.
|
185
|
1820
|
0
|
1821 XCreatePixmapCursor() assumes this property of the
|
|
1822 pixmap it is called with as well; the `foreground'
|
|
1823 color argument is used for the 1 bits.
|
|
1824
|
|
1825 With an XPM file, it's tricker, since the elements of
|
|
1826 the pixmap don't represent FG and BG, but are actual
|
|
1827 pixel values. So we need to figure out which of those
|
|
1828 pixels is the foreground color and which is the
|
|
1829 background. We do it by comparing RGB and assuming
|
|
1830 that the darker color is the foreground. This works
|
|
1831 with the result of xbmtopbm|ppmtoxpm, at least.
|
185
|
1832
|
0
|
1833 It might be nice if there was some way to tag the
|
|
1834 colors in the XPM file with whether they are the
|
|
1835 foreground - perhaps with logical color names somehow?
|
185
|
1836
|
0
|
1837 Once we have decided which color is the foreground, we
|
|
1838 need to ensure that that color corresponds to a `1' bit
|
|
1839 in the Pixmap. The XPM library wrote into the (1-bit)
|
|
1840 pixmap with XPutPixel, which will ignore all but the
|
|
1841 least significant bit.
|
185
|
1842
|
0
|
1843 This means that a 1 bit in the image corresponds to
|
|
1844 `fg' only if `fg.pixel' is odd.
|
185
|
1845
|
0
|
1846 (This also means that the image will be all the same
|
|
1847 color if both `fg' and `bg' are odd or even, but we can
|
|
1848 safely assume that that won't happen if the XPM file is
|
|
1849 sensible I think.)
|
185
|
1850
|
0
|
1851 The desired result is that the image use `1' to
|
|
1852 represent the foreground color, and `0' to represent
|
|
1853 the background color. So, we may need to invert the
|
|
1854 image to accomplish this; we invert if fg is
|
|
1855 odd. (Remember that WhitePixel and BlackPixel are not
|
|
1856 necessarily 1 and 0 respectively, though I think it
|
|
1857 might be safe to assume that one of them is always 1
|
|
1858 and the other is always 0. We also pretty much need to
|
|
1859 assume that one is even and the other is odd.)
|
|
1860 */
|
|
1861
|
|
1862 fg.pixel = pixels[0]; /* pick a pixel at random. */
|
|
1863 bg.pixel = fg.pixel;
|
|
1864 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
|
|
1865 {
|
|
1866 bg.pixel = pixels[i];
|
|
1867 if (fg.pixel != bg.pixel)
|
|
1868 break;
|
|
1869 }
|
|
1870
|
|
1871 /* If (fg.pixel == bg.pixel) then probably something has
|
|
1872 gone wrong, but I don't think signalling an error would
|
|
1873 be appropriate. */
|
|
1874
|
219
|
1875 XQueryColor (dpy, cmap, &fg);
|
|
1876 XQueryColor (dpy, cmap, &bg);
|
0
|
1877
|
|
1878 /* If the foreground is lighter than the background, swap them.
|
|
1879 (This occurs semi-randomly, depending on the ordering of the
|
|
1880 color list in the XPM file.)
|
|
1881 */
|
|
1882 {
|
|
1883 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
|
|
1884 + (fg.blue / 3));
|
|
1885 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
|
|
1886 + (bg.blue / 3));
|
|
1887 if (fg_total > bg_total)
|
|
1888 {
|
|
1889 XColor swap;
|
|
1890 swap = fg;
|
|
1891 fg = bg;
|
|
1892 bg = swap;
|
|
1893 }
|
|
1894 }
|
185
|
1895
|
0
|
1896 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
|
|
1897 (This occurs (only?) on servers with Black=0, White=1.)
|
|
1898 */
|
|
1899 if ((fg.pixel & 1) == 0)
|
|
1900 {
|
|
1901 XGCValues gcv;
|
|
1902 GC gc;
|
|
1903 gcv.function = GXxor;
|
|
1904 gcv.foreground = 1;
|
|
1905 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
|
|
1906 &gcv);
|
|
1907 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
|
|
1908 XFreeGC (dpy, gc);
|
|
1909 }
|
|
1910 }
|
|
1911 else
|
|
1912 {
|
|
1913 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
1914 &fg, &bg);
|
|
1915 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
1916 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
1917 }
|
|
1918
|
|
1919 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1920 XCreatePixmapCursor
|
|
1921 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
|
|
1922 }
|
|
1923
|
|
1924 break;
|
|
1925
|
|
1926 default:
|
|
1927 abort ();
|
|
1928 }
|
185
|
1929
|
0
|
1930 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
|
|
1931 }
|
|
1932
|
|
1933 #endif /* HAVE_XPM */
|
|
1934
|
|
1935
|
251
|
1936 #ifdef HAVE_JPEG
|
|
1937
|
207
|
1938 /**********************************************************************
|
251
|
1939 * JPEG *
|
207
|
1940 **********************************************************************/
|
251
|
1941
|
|
1942 #ifdef __cplusplus
|
|
1943 extern "C" {
|
|
1944 #endif
|
|
1945 #include <jpeglib.h>
|
|
1946 #include <jerror.h>
|
|
1947 #ifdef __cplusplus
|
|
1948 }
|
|
1949 #endif
|
|
1950
|
|
1951 /*#define USE_TEMP_FILES_FOR_JPEG_IMAGES 1*/
|
207
|
1952 static void
|
251
|
1953 jpeg_validate (Lisp_Object instantiator)
|
231
|
1954 {
|
251
|
1955 file_or_data_must_be_present (instantiator);
|
231
|
1956 }
|
|
1957
|
207
|
1958 static Lisp_Object
|
251
|
1959 jpeg_normalize (Lisp_Object inst, Lisp_Object console_type)
|
207
|
1960 {
|
251
|
1961 return simple_image_type_normalize (inst, console_type, Qjpeg);
|
207
|
1962 }
|
|
1963
|
|
1964 static int
|
251
|
1965 jpeg_possible_dest_types (void)
|
207
|
1966 {
|
251
|
1967 return IMAGE_COLOR_PIXMAP_MASK;
|
207
|
1968 }
|
|
1969
|
251
|
1970 /* To survive the otherwise baffling complexity of making sure
|
|
1971 everything gets cleaned up in the presence of an error, we
|
|
1972 use an unwind_protect(). */
|
|
1973
|
|
1974 struct jpeg_unwind_data
|
207
|
1975 {
|
251
|
1976 Display *dpy;
|
|
1977 Colormap cmap;
|
|
1978 /* Stream that we need to close */
|
|
1979 FILE *instream;
|
|
1980 /* Object that holds state info for JPEG decoding */
|
|
1981 struct jpeg_decompress_struct *cinfo_ptr;
|
265
|
1982 /* EImage data */
|
|
1983 unsigned char *eimage;
|
251
|
1984 /* Pixels to keep around while the image is active */
|
|
1985 unsigned long *pixels;
|
265
|
1986 int npixels, pixcount;
|
251
|
1987 /* Client-side image structure */
|
|
1988 XImage *ximage;
|
|
1989 /* Tempfile to remove */
|
265
|
1990 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
|
251
|
1991 char tempfile[50];
|
|
1992 int tempfile_needs_to_be_removed;
|
265
|
1993 #endif
|
207
|
1994 };
|
|
1995
|
|
1996 static Lisp_Object
|
251
|
1997 jpeg_instantiate_unwind (Lisp_Object unwind_obj)
|
|
1998 {
|
|
1999 struct jpeg_unwind_data *data =
|
|
2000 (struct jpeg_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
2001
|
|
2002 free_opaque_ptr (unwind_obj);
|
|
2003 if (data->cinfo_ptr)
|
|
2004 jpeg_destroy_decompress (data->cinfo_ptr);
|
|
2005
|
|
2006 if (data->instream)
|
|
2007 fclose (data->instream);
|
|
2008
|
265
|
2009 if (data->eimage) xfree (data->eimage);
|
251
|
2010
|
|
2011 if (data->npixels > 0)
|
|
2012 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
|
265
|
2013 if (data->pixcount)
|
251
|
2014 xfree (data->pixels);
|
|
2015
|
|
2016 if (data->ximage)
|
|
2017 {
|
|
2018 if (data->ximage->data)
|
|
2019 {
|
|
2020 xfree (data->ximage->data);
|
|
2021 data->ximage->data = 0;
|
|
2022 }
|
|
2023 XDestroyImage (data->ximage);
|
|
2024 }
|
265
|
2025 #if USE_TEMP_FILES_FOR_JPEG_IMAGES
|
|
2026 if (data->tempfile_needs_to_be_removed)
|
|
2027 unlink (data->tempfile);
|
|
2028 #endif
|
251
|
2029
|
|
2030 return Qnil;
|
|
2031 }
|
|
2032
|
|
2033 /*
|
|
2034 * ERROR HANDLING:
|
|
2035 *
|
|
2036 * The JPEG library's standard error handler (jerror.c) is divided into
|
|
2037 * several "methods" which you can override individually. This lets you
|
|
2038 * adjust the behavior without duplicating a lot of code, which you might
|
|
2039 * have to update with each future release.
|
|
2040 *
|
|
2041 * Our example here shows how to override the "error_exit" method so that
|
|
2042 * control is returned to the library's caller when a fatal error occurs,
|
|
2043 * rather than calling exit() as the standard error_exit method does.
|
|
2044 *
|
|
2045 * We use C's setjmp/longjmp facility to return control. This means that the
|
|
2046 * routine which calls the JPEG library must first execute a setjmp() call to
|
|
2047 * establish the return point. We want the replacement error_exit to do a
|
|
2048 * longjmp(). But we need to make the setjmp buffer accessible to the
|
|
2049 * error_exit routine. To do this, we make a private extension of the
|
|
2050 * standard JPEG error handler object. (If we were using C++, we'd say we
|
|
2051 * were making a subclass of the regular error handler.)
|
|
2052 *
|
|
2053 * Here's the extended error handler struct:
|
|
2054 */
|
|
2055
|
|
2056 struct my_jpeg_error_mgr
|
207
|
2057 {
|
251
|
2058 struct jpeg_error_mgr pub; /* "public" fields */
|
|
2059 jmp_buf setjmp_buffer; /* for return to caller */
|
|
2060 };
|
|
2061
|
|
2062 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2063 METHODDEF(void)
|
|
2064 #else
|
|
2065 METHODDEF void
|
|
2066 #endif
|
269
|
2067 our_init_source (j_decompress_ptr cinfo)
|
|
2068 {
|
251
|
2069 }
|
|
2070
|
|
2071 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2072 METHODDEF(boolean)
|
|
2073 #else
|
|
2074 METHODDEF boolean
|
|
2075 #endif
|
269
|
2076 our_fill_input_buffer (j_decompress_ptr cinfo)
|
|
2077 {
|
251
|
2078 /* Insert a fake EOI marker */
|
272
|
2079 struct jpeg_source_mgr *src = cinfo->src;
|
251
|
2080 static JOCTET buffer[2];
|
|
2081
|
|
2082 buffer[0] = (JOCTET) 0xFF;
|
|
2083 buffer[1] = (JOCTET) JPEG_EOI;
|
|
2084
|
|
2085 src->next_input_byte = buffer;
|
|
2086 src->bytes_in_buffer = 2;
|
|
2087 return TRUE;
|
207
|
2088 }
|
|
2089
|
251
|
2090 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2091 METHODDEF(void)
|
|
2092 #else
|
|
2093 METHODDEF void
|
|
2094 #endif
|
269
|
2095 our_skip_input_data (j_decompress_ptr cinfo, long num_bytes)
|
|
2096 {
|
251
|
2097 struct jpeg_source_mgr *src = NULL;
|
|
2098
|
|
2099 src = (struct jpeg_source_mgr *) cinfo->src;
|
|
2100
|
269
|
2101 if (!src)
|
|
2102 {
|
|
2103 return;
|
|
2104 } else if (num_bytes > src->bytes_in_buffer)
|
|
2105 {
|
|
2106 ERREXIT(cinfo, JERR_INPUT_EOF);
|
|
2107 /*NOTREACHED*/
|
|
2108 }
|
251
|
2109
|
|
2110 src->bytes_in_buffer -= num_bytes;
|
|
2111 src->next_input_byte += num_bytes;
|
|
2112 }
|
|
2113
|
|
2114 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2115 METHODDEF(void)
|
|
2116 #else
|
|
2117 METHODDEF void
|
|
2118 #endif
|
269
|
2119 our_term_source (j_decompress_ptr cinfo)
|
|
2120 {
|
251
|
2121 }
|
|
2122
|
272
|
2123 typedef struct
|
|
2124 {
|
251
|
2125 struct jpeg_source_mgr pub;
|
|
2126 } our_jpeg_source_mgr;
|
|
2127
|
207
|
2128 static void
|
251
|
2129 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, unsigned int len)
|
|
2130 {
|
272
|
2131 struct jpeg_source_mgr *src;
|
251
|
2132
|
269
|
2133 if (cinfo->src == NULL)
|
|
2134 { /* first time for this JPEG object? */
|
|
2135 cinfo->src = (struct jpeg_source_mgr *)
|
|
2136 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
|
|
2137 sizeof(our_jpeg_source_mgr));
|
|
2138 src = (struct jpeg_source_mgr *) cinfo->src;
|
|
2139 src->next_input_byte = data;
|
|
2140 }
|
251
|
2141 src = (struct jpeg_source_mgr *) cinfo->src;
|
|
2142 src->init_source = our_init_source;
|
|
2143 src->fill_input_buffer = our_fill_input_buffer;
|
|
2144 src->skip_input_data = our_skip_input_data;
|
|
2145 src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
|
|
2146 src->term_source = our_term_source;
|
|
2147 src->bytes_in_buffer = len;
|
|
2148 src->next_input_byte = data;
|
|
2149 }
|
|
2150
|
|
2151 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2152 METHODDEF(void)
|
|
2153 #else
|
|
2154 METHODDEF void
|
|
2155 #endif
|
|
2156 my_jpeg_error_exit (j_common_ptr cinfo)
|
|
2157 {
|
|
2158 /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
|
|
2159 struct my_jpeg_error_mgr *myerr = (struct my_jpeg_error_mgr *) cinfo->err;
|
|
2160
|
|
2161 /* Return control to the setjmp point */
|
|
2162 longjmp (myerr->setjmp_buffer, 1);
|
|
2163 }
|
|
2164
|
267
|
2165 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
2166 METHODDEF(void)
|
|
2167 #else
|
|
2168 METHODDEF void
|
|
2169 #endif
|
|
2170 my_jpeg_output_message (j_common_ptr cinfo)
|
|
2171 {
|
|
2172 char buffer[JMSG_LENGTH_MAX];
|
|
2173
|
|
2174 /* Create the message */
|
|
2175 (*cinfo->err->format_message) (cinfo, buffer);
|
|
2176 warn_when_safe (Qjpeg, Qinfo, "%s", buffer);
|
|
2177 }
|
|
2178
|
251
|
2179 /* The code in this routine is based on example.c from the JPEG library
|
|
2180 source code and from gif_instantiate() */
|
|
2181 static void
|
|
2182 jpeg_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2183 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2184 int dest_mask, Lisp_Object domain)
|
207
|
2185 {
|
221
|
2186 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2187 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2188 Display *dpy;
|
|
2189 Colormap cmap;
|
251
|
2190 Visual *vis;
|
|
2191 /* It is OK for the unwind data to be local to this function,
|
|
2192 because the unwind-protect is always executed when this
|
|
2193 stack frame is still valid. */
|
|
2194 struct jpeg_unwind_data unwind;
|
|
2195 int speccount = specpdl_depth ();
|
|
2196
|
|
2197 /* This struct contains the JPEG decompression parameters and pointers to
|
|
2198 * working space (which is allocated as needed by the JPEG library).
|
|
2199 */
|
|
2200 struct jpeg_decompress_struct cinfo;
|
|
2201 /* We use our private extension JPEG error handler.
|
|
2202 * Note that this struct must live as long as the main JPEG parameter
|
|
2203 * struct, to avoid dangling-pointer problems.
|
|
2204 */
|
|
2205 struct my_jpeg_error_mgr jerr;
|
|
2206
|
221
|
2207 if (!DEVICE_X_P (XDEVICE (device)))
|
|
2208 signal_simple_error ("Not an X device", device);
|
|
2209
|
|
2210 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
2211 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
251
|
2212 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
2213
|
|
2214 /* Step -1: First record our unwind-protect, which will clean up after
|
|
2215 any exit, normal or not */
|
|
2216
|
272
|
2217 xzero (unwind);
|
221
|
2218 unwind.dpy = dpy;
|
|
2219 unwind.cmap = cmap;
|
251
|
2220 record_unwind_protect (jpeg_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
2221
|
|
2222 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
|
|
2223 /* Step 0: Write out to a temp file.
|
|
2224
|
|
2225 The JPEG routines require you to read from a file unless
|
|
2226 you provide your own special input handlers, which I don't
|
|
2227 feel like doing. */
|
|
2228 {
|
|
2229 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2230
|
|
2231 assert (!NILP (data));
|
|
2232
|
|
2233 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
2234 unwind.tempfile_needs_to_be_removed = 1;
|
|
2235
|
|
2236 /* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
|
|
2237 * requires it in order to read binary files.
|
|
2238 */
|
|
2239
|
|
2240 if ((unwind.instream = fopen (unwind.tempfile, "r")) == NULL)
|
|
2241 report_file_error ("Opening JPEG temp file",
|
|
2242 list1 (build_string (unwind.tempfile)));
|
|
2243 }
|
|
2244 #endif
|
|
2245
|
|
2246 /* Step 1: allocate and initialize JPEG decompression object */
|
|
2247
|
|
2248 /* We set up the normal JPEG error routines, then override error_exit. */
|
|
2249 cinfo.err = jpeg_std_error (&jerr.pub);
|
|
2250 jerr.pub.error_exit = my_jpeg_error_exit;
|
267
|
2251 jerr.pub.output_message = my_jpeg_output_message;
|
251
|
2252
|
|
2253 /* Establish the setjmp return context for my_error_exit to use. */
|
|
2254 if (setjmp (jerr.setjmp_buffer))
|
231
|
2255 {
|
251
|
2256 /* If we get here, the JPEG code has signaled an error.
|
|
2257 * We need to clean up the JPEG object, close the input file, and return.
|
|
2258 */
|
|
2259
|
|
2260 {
|
|
2261 Lisp_Object errstring;
|
|
2262 char buffer[JMSG_LENGTH_MAX];
|
|
2263
|
|
2264 /* Create the message */
|
|
2265 (*cinfo.err->format_message) ((j_common_ptr) &cinfo, buffer);
|
|
2266 errstring = build_string (buffer);
|
|
2267
|
269
|
2268 signal_image_error_2 ("JPEG decoding error",
|
|
2269 errstring, instantiator);
|
251
|
2270 }
|
|
2271 }
|
|
2272
|
|
2273 /* Now we can initialize the JPEG decompression object. */
|
|
2274 jpeg_create_decompress (&cinfo);
|
|
2275 unwind.cinfo_ptr = &cinfo;
|
|
2276
|
|
2277 /* Step 2: specify data source (eg, a file) */
|
|
2278
|
|
2279 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
|
|
2280 jpeg_stdio_src (&cinfo, unwind.instream);
|
|
2281 #else
|
|
2282 {
|
|
2283 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
267
|
2284 CONST Extbyte *bytes;
|
251
|
2285 Extcount len;
|
|
2286
|
|
2287 /* #### This is a definite problem under Mule due to the amount of
|
|
2288 stack data it might allocate. Need to be able to convert and
|
|
2289 write out to a file. */
|
|
2290 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
272
|
2291 jpeg_memory_src (&cinfo, (JOCTET *) bytes, len);
|
251
|
2292 }
|
|
2293 #endif
|
|
2294
|
|
2295 /* Step 3: read file parameters with jpeg_read_header() */
|
|
2296
|
|
2297 jpeg_read_header (&cinfo, TRUE);
|
|
2298 /* We can ignore the return value from jpeg_read_header since
|
|
2299 * (a) suspension is not possible with the stdio data source, and
|
|
2300 * (b) we passed TRUE to reject a tables-only JPEG file as an error.
|
|
2301 * See libjpeg.doc for more info.
|
|
2302 */
|
|
2303
|
265
|
2304 #if 0
|
251
|
2305 /* Step 4: set parameters for decompression. */
|
|
2306
|
265
|
2307 if (vis->class == PseudoColor)
|
|
2308 {
|
|
2309
|
|
2310 /* We request that the JPEG file be automatically quantized into
|
|
2311 8-bit color in case it's not already (many JPEGs are stored in
|
|
2312 24-bit color). "Two-pass quantize" means that the colormap
|
|
2313 is determined on-the-fly for this particular image rather than
|
|
2314 quantizing to a supplied colormap. We can get away with this
|
|
2315 because we then use allocate_nearest_color().
|
|
2316
|
|
2317 #### Note of course that this is not the most color-effective
|
|
2318 way of doing things -- we could quantize an image that has
|
|
2319 lots of very similar colors, and eat up the colormap with these
|
|
2320 (useless to other images) colors. Unfortunately I don't think
|
|
2321 there's any "general" way of maximizing the overall image
|
|
2322 quality of lots of images, given that we don't know the
|
|
2323 colors of the images until we come across each one. Best we
|
|
2324 could do would be various sorts of heuristics, which I don't
|
|
2325 feel like dealing with now. A better scheme would be the
|
|
2326 way things are done under MS Windows, where the colormap is
|
|
2327 dynamically adjusted for various applications; but that kind
|
|
2328 of thing would have to be provided by X, which it isn't. */
|
|
2329
|
|
2330 cinfo.quantize_colors = TRUE;
|
|
2331 cinfo.two_pass_quantize = TRUE;
|
|
2332 cinfo.colormap = NULL;
|
|
2333 }
|
|
2334
|
251
|
2335 /* Step 5: Start decompressor */
|
|
2336
|
|
2337 jpeg_start_decompress (&cinfo);
|
|
2338 /* We can ignore the return value since suspension is not possible
|
|
2339 * with the stdio data source.
|
|
2340 */
|
|
2341
|
|
2342 /* At this point we know the size of the image and the colormap. */
|
|
2343
|
|
2344 /* Step 5.33: Allocate the colors */
|
269
|
2345 if (vis->class == PseudoColor)
|
|
2346 {
|
|
2347 int i;
|
|
2348 unwind.pixcount = 32;
|
|
2349 unwind.pixels = xnew_array (unsigned long, unwind.pixcount);
|
|
2350 unwind.npixels = 0;
|
|
2351
|
|
2352 /* Allocate pixels for the various colors. */
|
|
2353 for (i = 0; i < cinfo.actual_number_of_colors; i++)
|
|
2354 {
|
|
2355 XColor color;
|
|
2356 int ri, gi, bi, res;
|
|
2357
|
|
2358 ri = 0;
|
|
2359 gi = cinfo.out_color_components > 1 ? 1 : 0;
|
|
2360 bi = cinfo.out_color_components > 2 ? 2 : 0;
|
|
2361
|
|
2362 /* Ok... apparently, an entry of cinfo.colormap can be NULL if
|
|
2363 there are no bits of that color in the image. How incredibly
|
|
2364 gross. Wouldn't it be nice to have exceptions!? */
|
|
2365 color.red = cinfo.colormap[ri] ? cinfo.colormap[ri][i] << 8 : 0;
|
|
2366 color.green = cinfo.colormap[gi] ? cinfo.colormap[gi][i] << 8 : 0;
|
|
2367 color.blue = cinfo.colormap[bi] ? cinfo.colormap[bi][i] << 8 : 0;
|
|
2368 color.flags = DoRed | DoGreen | DoBlue;
|
|
2369
|
|
2370 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
2371 if (res > 0 && res < 3)
|
|
2372 {
|
|
2373 DO_REALLOC(unwind.pixels, unwind.pixcount, unwind.npixels+1, unsigned long);
|
|
2374 unwind.pixels[unwind.npixels] = color.pixel;
|
|
2375 unwind.npixels++;
|
|
2376 }
|
|
2377 }
|
|
2378 }
|
251
|
2379
|
|
2380 /* Step 5.66: Create the image */
|
|
2381 {
|
|
2382 int height = cinfo.output_height;
|
|
2383 int width = cinfo.output_width;
|
|
2384 int depth;
|
|
2385 int bitmap_pad;
|
|
2386
|
|
2387 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
2388
|
|
2389 /* first get bitmap_pad (from XPM) */
|
|
2390 bitmap_pad = ((depth > 16) ? 32 :
|
|
2391 (depth > 8) ? 16 :
|
|
2392 8);
|
|
2393
|
265
|
2394 unwind.ximage = XCreateImage (dpy, vis, depth, ZPixmap, 0, 0, width, height,
|
251
|
2395 bitmap_pad, 0);
|
|
2396
|
|
2397 if (!unwind.ximage)
|
269
|
2398 signal_image_error ("Unable to create X image struct", instantiator);
|
251
|
2399
|
|
2400 /* now that bytes_per_line must have been set properly alloc data */
|
|
2401 unwind.ximage->data =
|
|
2402 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
|
|
2403 }
|
|
2404
|
|
2405 /* Step 6: Read in the data and put into image */
|
|
2406 {
|
|
2407 JSAMPARRAY row_buffer; /* Output row buffer */
|
|
2408 int row_stride; /* physical row width in output buffer */
|
|
2409
|
|
2410 /* We may need to do some setup of our own at this point before reading
|
|
2411 * the data. After jpeg_start_decompress() we have the correct scaled
|
|
2412 * output image dimensions available, as well as the output colormap
|
|
2413 * if we asked for color quantization.
|
|
2414 * In this example, we need to make an output work buffer of the right size.
|
|
2415 */
|
|
2416 /* JSAMPLEs per row in output buffer.
|
|
2417 Since we asked for quantized output, cinfo.output_components
|
|
2418 will always be 1. */
|
|
2419 row_stride = cinfo.output_width * cinfo.output_components;
|
|
2420 /* Make a one-row-high sample array that will go away when done
|
|
2421 with image */
|
|
2422 row_buffer = ((*cinfo.mem->alloc_sarray)
|
|
2423 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
|
|
2424
|
|
2425 /* Here we use the library's state variable cinfo.output_scanline as the
|
|
2426 * loop counter, so that we don't have to keep track ourselves.
|
|
2427 */
|
|
2428 while (cinfo.output_scanline < cinfo.output_height)
|
|
2429 {
|
|
2430 int i;
|
|
2431 int scanline = cinfo.output_scanline;
|
|
2432
|
|
2433 /* jpeg_read_scanlines expects an array of pointers to scanlines.
|
|
2434 * Here the array is only one element long, but you could ask for
|
|
2435 * more than one scanline at a time if that's more convenient.
|
|
2436 */
|
272
|
2437 jpeg_read_scanlines (&cinfo, row_buffer, 1);
|
|
2438
|
|
2439 for (i = 0; i < (int) cinfo.output_width; i++)
|
251
|
2440 XPutPixel (unwind.ximage, i, scanline,
|
|
2441 /* Let's make sure we avoid getting bit like
|
|
2442 what happened for GIF's. It's probably the
|
|
2443 case that JSAMPLE's are unsigned chars as
|
|
2444 opposed to chars, but you never know.
|
|
2445
|
|
2446 (They could even be shorts if the library
|
|
2447 was compiled with 12-bit samples -- ####
|
|
2448 We should deal with this possibility) */
|
|
2449 unwind.pixels[(unsigned char) row_buffer[0][i]]);
|
|
2450 }
|
|
2451 }
|
265
|
2452 #else
|
|
2453 {
|
|
2454 /* Step 4: set parameters for decompression. */
|
|
2455
|
|
2456 /* Now that we're using EImages, use the default of all data in 24bit color.
|
|
2457 The backend routine will take care of any necessary reductions. */
|
|
2458
|
|
2459 /* Step 5: Start decompressor */
|
|
2460 jpeg_start_decompress (&cinfo);
|
|
2461
|
|
2462 /* Step 6: Read in the data and put into EImage format (8bit RGB triples)*/
|
|
2463
|
|
2464 unwind.eimage = (unsigned char*) xmalloc (cinfo.output_width * cinfo.output_height * 3);
|
|
2465 if (!unwind.eimage)
|
269
|
2466 signal_image_error("Unable to allocate enough memory for image", instantiator);
|
265
|
2467
|
|
2468 {
|
|
2469 JSAMPARRAY row_buffer; /* Output row buffer */
|
|
2470 JSAMPLE *jp;
|
|
2471 int row_stride; /* physical row width in output buffer */
|
|
2472 unsigned char *op = unwind.eimage;
|
|
2473
|
|
2474 /* We may need to do some setup of our own at this point before reading
|
|
2475 * the data. After jpeg_start_decompress() we have the correct scaled
|
|
2476 * output image dimensions available
|
|
2477 * We need to make an output work buffer of the right size.
|
|
2478 */
|
|
2479 /* JSAMPLEs per row in output buffer. */
|
|
2480 row_stride = cinfo.output_width * cinfo.output_components;
|
|
2481 /* Make a one-row-high sample array that will go away when done
|
|
2482 with image */
|
|
2483 row_buffer = ((*cinfo.mem->alloc_sarray)
|
|
2484 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
|
|
2485
|
|
2486 /* Here we use the library's state variable cinfo.output_scanline as the
|
|
2487 * loop counter, so that we don't have to keep track ourselves.
|
|
2488 */
|
|
2489 while (cinfo.output_scanline < cinfo.output_height)
|
|
2490 {
|
|
2491 int i;
|
|
2492
|
|
2493 /* jpeg_read_scanlines expects an array of pointers to scanlines.
|
|
2494 * Here the array is only one element long, but you could ask for
|
|
2495 * more than one scanline at a time if that's more convenient.
|
|
2496 */
|
|
2497 (void) jpeg_read_scanlines (&cinfo, row_buffer, 1);
|
|
2498 jp = row_buffer[0];
|
269
|
2499 for (i = 0; i < cinfo.output_width; i++)
|
|
2500 {
|
|
2501 int clr;
|
265
|
2502 #if (BITS_IN_JSAMPLE == 8)
|
269
|
2503 for (clr = 0; clr < 3; clr++)
|
|
2504 *op++ = (unsigned char)*jp++;
|
265
|
2505 #else /* other option is 12 */
|
269
|
2506 for (clr = 0; clr < 3; clr++)
|
|
2507 *op++ = (unsigned char)(*jp++ >> 4);
|
265
|
2508 #endif
|
269
|
2509 }
|
265
|
2510 }
|
269
|
2511 unwind.ximage = convert_EImage_to_XImage (device, cinfo.output_width, cinfo.output_height, unwind.eimage,
|
265
|
2512 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
|
|
2513 if (!unwind.ximage)
|
269
|
2514 signal_image_error("JPEG conversion failed", instantiator);
|
265
|
2515 }
|
|
2516 }
|
|
2517
|
|
2518 #endif
|
251
|
2519 /* Step 6.5: Create the pixmap and set up the image instance */
|
|
2520 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
269
|
2521 cmap, unwind.pixels, unwind.npixels,
|
251
|
2522 instantiator);
|
|
2523
|
|
2524 /* Step 7: Finish decompression */
|
|
2525
|
|
2526 jpeg_finish_decompress (&cinfo);
|
|
2527 /* We can ignore the return value since suspension is not possible
|
|
2528 * with the stdio data source.
|
|
2529 */
|
|
2530
|
|
2531 /* And we're done!
|
|
2532
|
|
2533 Now that we've succeeded, we don't want the pixels
|
|
2534 freed right now. They're kept around in the image instance
|
|
2535 structure until it's destroyed. */
|
|
2536 unwind.npixels = 0;
|
265
|
2537 unwind.pixcount = 0;
|
251
|
2538
|
|
2539 /* This will clean up everything else. */
|
|
2540 unbind_to (speccount, Qnil);
|
|
2541 }
|
|
2542
|
|
2543 #endif /* HAVE_JPEG */
|
|
2544
|
|
2545 #ifdef HAVE_GIF
|
265
|
2546 /* #define USE_TEMP_FILES_FOR_GIF_IMAGES */
|
251
|
2547 /**********************************************************************
|
|
2548 * GIF *
|
|
2549 **********************************************************************/
|
|
2550
|
265
|
2551 #include <gif_lib.h>
|
251
|
2552
|
|
2553 static void
|
|
2554 gif_validate (Lisp_Object instantiator)
|
|
2555 {
|
|
2556 file_or_data_must_be_present (instantiator);
|
|
2557 }
|
|
2558
|
|
2559 static Lisp_Object
|
|
2560 gif_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
2561 {
|
|
2562 return simple_image_type_normalize (inst, console_type, Qgif);
|
|
2563 }
|
|
2564
|
|
2565 static int
|
|
2566 gif_possible_dest_types (void)
|
|
2567 {
|
|
2568 return IMAGE_COLOR_PIXMAP_MASK;
|
|
2569 }
|
|
2570
|
|
2571 /* To survive the otherwise baffling complexity of making sure
|
|
2572 everything gets cleaned up in the presence of an error, we
|
|
2573 use an unwind_protect(). */
|
|
2574
|
|
2575 struct gif_unwind_data
|
|
2576 {
|
|
2577 Display *dpy;
|
|
2578 Colormap cmap;
|
265
|
2579 unsigned char *eimage;
|
251
|
2580 /* Object that holds the decoded data from a GIF file */
|
|
2581 GifFileType *giffile;
|
|
2582 /* Pixels to keep around while the image is active */
|
|
2583 unsigned long *pixels;
|
265
|
2584 int npixels, pixcount;
|
251
|
2585 /* Client-side image structure */
|
|
2586 XImage *ximage;
|
265
|
2587 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
|
251
|
2588 /* Tempfile to remove */
|
|
2589 char tempfile[50];
|
|
2590 int tempfile_needs_to_be_removed;
|
265
|
2591 #endif
|
251
|
2592 };
|
|
2593
|
|
2594 static Lisp_Object
|
|
2595 gif_instantiate_unwind (Lisp_Object unwind_obj)
|
|
2596 {
|
|
2597 struct gif_unwind_data *data =
|
|
2598 (struct gif_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
2599
|
|
2600 free_opaque_ptr (unwind_obj);
|
|
2601 if (data->giffile)
|
265
|
2602 {
|
|
2603 DGifCloseFile (data->giffile);
|
|
2604 GifFree(data->giffile);
|
|
2605 }
|
|
2606 if (data->eimage) xfree(data->eimage);
|
|
2607 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
|
251
|
2608 if (data->tempfile_needs_to_be_removed)
|
|
2609 unlink (data->tempfile);
|
265
|
2610 #endif
|
251
|
2611 if (data->npixels > 0)
|
265
|
2612 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
|
|
2613 if (data->pixcount > 0)
|
|
2614 xfree (data->pixels);
|
251
|
2615 if (data->ximage)
|
|
2616 {
|
|
2617 if (data->ximage->data)
|
|
2618 {
|
|
2619 xfree (data->ximage->data);
|
|
2620 data->ximage->data = 0;
|
|
2621 }
|
|
2622 XDestroyImage (data->ximage);
|
231
|
2623 }
|
251
|
2624
|
|
2625 return Qnil;
|
|
2626 }
|
|
2627
|
265
|
2628 #ifndef USE_TEMP_FILES_FOR_GIF_IMAGES
|
|
2629 typedef struct gif_memory_storage
|
|
2630 {
|
|
2631 Extbyte *bytes; /* The data */
|
|
2632 Extcount len; /* How big is it? */
|
|
2633 int index; /* Where are we? */
|
|
2634 } gif_memory_storage;
|
|
2635
|
269
|
2636 static size_t
|
|
2637 gif_read_from_memory(GifByteType *buf, size_t size, VoidPtr data)
|
265
|
2638 {
|
|
2639 gif_memory_storage *mem = (gif_memory_storage*)data;
|
|
2640
|
|
2641 if (size > (mem->len - mem->index))
|
|
2642 return -1;
|
|
2643 memcpy(buf, mem->bytes + mem->index, size);
|
|
2644 mem->index = mem->index + size;
|
|
2645 return size;
|
|
2646 }
|
|
2647
|
269
|
2648 static int
|
|
2649 gif_memory_close(VoidPtr data)
|
265
|
2650 {
|
|
2651 return 0;
|
|
2652 }
|
|
2653
|
|
2654 #endif
|
|
2655 struct gif_error_struct
|
|
2656 {
|
274
|
2657 CONST char *err_str; /* return the error string */
|
265
|
2658 jmp_buf setjmp_buffer; /* for return to caller */
|
|
2659 };
|
|
2660
|
269
|
2661 static void
|
|
2662 gif_error_func(CONST char *err_str, VoidPtr error_ptr)
|
265
|
2663 {
|
|
2664 struct gif_error_struct *error_data = (struct gif_error_struct*)error_ptr;
|
|
2665
|
|
2666 /* return to setjmp point */
|
|
2667 error_data->err_str = err_str;
|
|
2668 longjmp (error_data->setjmp_buffer, 1);
|
|
2669 }
|
|
2670
|
251
|
2671 static void
|
|
2672 gif_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2673 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2674 int dest_mask, Lisp_Object domain)
|
|
2675 {
|
|
2676 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2677 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2678 Display *dpy;
|
|
2679 Colormap cmap;
|
|
2680 Visual *vis;
|
|
2681 /* It is OK for the unwind data to be local to this function,
|
|
2682 because the unwind-protect is always executed when this
|
|
2683 stack frame is still valid. */
|
|
2684 struct gif_unwind_data unwind;
|
|
2685 int speccount = specpdl_depth ();
|
265
|
2686 #ifndef USE_TEMP_FILES_FOR_GIF_IMAGES
|
|
2687 gif_memory_storage mem_struct;
|
|
2688 struct gif_error_struct gif_err;
|
|
2689 Extbyte *bytes;
|
|
2690 Extcount len;
|
|
2691 #endif
|
251
|
2692 if (!DEVICE_X_P (XDEVICE (device)))
|
|
2693 signal_simple_error ("Not an X device", device);
|
|
2694
|
|
2695 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
2696 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
2697 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
2698
|
272
|
2699 xzero (unwind);
|
251
|
2700 unwind.dpy = dpy;
|
|
2701 unwind.cmap = cmap;
|
|
2702 record_unwind_protect (gif_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
2703
|
|
2704 /* 1. Now decode the data. */
|
|
2705
|
|
2706 {
|
|
2707 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2708
|
|
2709 assert (!NILP (data));
|
|
2710
|
265
|
2711 if (!(unwind.giffile = GifSetup()))
|
269
|
2712 signal_image_error ("Insufficent memory to instantiate GIF image", instantiator);
|
265
|
2713
|
|
2714 /* set up error facilities */
|
269
|
2715 if (setjmp(gif_err.setjmp_buffer))
|
|
2716 {
|
|
2717 /* An error was signaled. No clean up is needed, as unwind handles that
|
|
2718 for us. Just pass the error along. */
|
|
2719 Lisp_Object errstring;
|
|
2720 errstring = build_string (gif_err.err_str);
|
|
2721 signal_image_error_2 ("GIF decoding error", errstring, instantiator);
|
|
2722 }
|
265
|
2723 GifSetErrorFunc(unwind.giffile, (Gif_error_func)gif_error_func, (VoidPtr)&gif_err);
|
|
2724
|
|
2725 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
|
251
|
2726 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
2727 unwind.tempfile_needs_to_be_removed = 1;
|
265
|
2728 DGifOpenFileName (unwind.giffile, unwind.tempfile);
|
|
2729 #else
|
|
2730 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
|
2731 mem_struct.bytes = bytes;
|
|
2732 mem_struct.len = len;
|
|
2733 mem_struct.index = 0;
|
|
2734 GifSetReadFunc(unwind.giffile, gif_read_from_memory, (VoidPtr)&mem_struct);
|
|
2735 GifSetCloseFunc(unwind.giffile, gif_memory_close, (VoidPtr)&mem_struct);
|
|
2736 DGifInitRead(unwind.giffile);
|
|
2737 #endif
|
251
|
2738 /* Then slurp the image into memory, decoding along the way.
|
|
2739 The result is the image in a simple one-byte-per-pixel
|
|
2740 format (#### the GIF routines only support 8-bit GIFs,
|
|
2741 it appears). */
|
265
|
2742 DGifSlurp (unwind.giffile);
|
251
|
2743 }
|
|
2744
|
265
|
2745 #if 0
|
251
|
2746 /* 2. Now allocate the colors for the image. */
|
|
2747 {
|
|
2748 int i;
|
|
2749 ColorMapObject *cmo = unwind.giffile->SColorMap;
|
|
2750 /* Just in case the image contains out-of-range pixels, we go
|
|
2751 ahead and allocate space for all of them. */
|
|
2752 unwind.pixels = xnew_array (unsigned long, 256);
|
265
|
2753 unwind.npixels = 0;
|
251
|
2754
|
|
2755 for (i = 0; i < 256; i++)
|
|
2756 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
|
|
2757
|
|
2758 /* Allocate pixels for the various colors. */
|
|
2759 for (i = 0; i < cmo->ColorCount; i++)
|
|
2760 {
|
265
|
2761 int res;
|
251
|
2762 XColor color;
|
|
2763
|
272
|
2764 color.red = cmo->Colors[i].Red << 8;
|
251
|
2765 color.green = cmo->Colors[i].Green << 8;
|
272
|
2766 color.blue = cmo->Colors[i].Blue << 8;
|
251
|
2767 color.flags = DoRed | DoGreen | DoBlue;
|
|
2768
|
265
|
2769 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
2770 if (res > 0 && res < 3)
|
|
2771 {
|
|
2772 unwind.pixels[unwind.npixels] = color.pixel;
|
|
2773 unwind.npixels++;
|
|
2774 }
|
251
|
2775 }
|
|
2776 }
|
|
2777
|
|
2778 /* 3. Now create the image */
|
|
2779 {
|
|
2780 int height = unwind.giffile->SHeight;
|
|
2781 int width = unwind.giffile->SWidth;
|
|
2782 int depth;
|
|
2783 int bitmap_pad;
|
|
2784 int i, j, row, pass, interlace;
|
|
2785 /* interlaced gifs have rows in this order:
|
|
2786 0, 8, 16, ..., 4, 12, 20, ..., 2, 6, 10, ..., 1, 3, 5, ... */
|
|
2787 static int InterlacedOffset[] = { 0, 4, 2, 1 };
|
|
2788 static int InterlacedJumps[] = { 8, 8, 4, 2 };
|
|
2789
|
|
2790 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
2791
|
|
2792 /* first get bitmap_pad (from XPM) */
|
|
2793 bitmap_pad = ((depth > 16) ? 32 :
|
|
2794 (depth > 8) ? 16 :
|
|
2795 8);
|
|
2796
|
|
2797 unwind.ximage = XCreateImage (dpy, vis,
|
|
2798 depth, ZPixmap, 0, 0, width, height,
|
|
2799 bitmap_pad, 0);
|
|
2800
|
|
2801 if (!unwind.ximage)
|
269
|
2802 signal_image_error ("Unable to create X image struct", instantiator);
|
251
|
2803
|
|
2804 /* now that bytes_per_line must have been set properly alloc data */
|
|
2805 unwind.ximage->data =
|
|
2806 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
|
|
2807
|
|
2808 /* write the data --
|
|
2809 #### XPutPixel() is a client-side-only function but could
|
|
2810 still be slow. Another possibility is to just convert to
|
|
2811 XPM format and use the Xpm routines, which optimize this
|
|
2812 stuff; but it's doubtful that this will be faster in the
|
|
2813 long run, what with all the XPM overhead. If this proves
|
|
2814 to be a bottleneck here, maybe we should just copy the
|
|
2815 optimization routines from XPM (they're in turn mostly
|
|
2816 copied from the Xlib source code). */
|
|
2817
|
|
2818 /* Note: We just use the first image in the file and ignore the rest.
|
|
2819 We check here that that image covers the full "screen" size.
|
|
2820 I don't know whether that's always the case.
|
|
2821 -dkindred@cs.cmu.edu */
|
|
2822 if (unwind.giffile->SavedImages[0].ImageDesc.Height != height
|
|
2823 || unwind.giffile->SavedImages[0].ImageDesc.Width != width
|
|
2824 || unwind.giffile->SavedImages[0].ImageDesc.Left != 0
|
|
2825 || unwind.giffile->SavedImages[0].ImageDesc.Top != 0)
|
269
|
2826 signal_image_error ("First image in GIF file is not full size",
|
251
|
2827 instantiator);
|
|
2828
|
|
2829 interlace = unwind.giffile->SavedImages[0].ImageDesc.Interlace;
|
|
2830 pass = 0;
|
|
2831 row = interlace ? InterlacedOffset[pass] : 0;
|
|
2832 for (i = 0; i < height; i++)
|
|
2833 {
|
|
2834 if (interlace && row >= height)
|
|
2835 row = InterlacedOffset[++pass];
|
|
2836
|
|
2837 for (j = 0; j < width; j++)
|
|
2838 XPutPixel (unwind.ximage, j, row,
|
|
2839 unwind.pixels[(unsigned char)
|
|
2840 /* incorrect signed declaration
|
|
2841 of RasterBits[] */
|
|
2842 (unwind.giffile->SavedImages[0].
|
|
2843 RasterBits[i * width + j])]);
|
|
2844
|
|
2845 row += interlace ? InterlacedJumps[pass] : 1;
|
|
2846 }
|
|
2847 }
|
265
|
2848 #else
|
|
2849 /* 3. Now create the EImage */
|
|
2850 {
|
|
2851 ColorMapObject *cmo = unwind.giffile->SColorMap;
|
|
2852 int height = unwind.giffile->SHeight;
|
|
2853 int width = unwind.giffile->SWidth;
|
|
2854 int i, j, row, pass, interlace;
|
|
2855 unsigned char *eip;
|
|
2856 /* interlaced gifs have rows in this order:
|
|
2857 0, 8, 16, ..., 4, 12, 20, ..., 2, 6, 10, ..., 1, 3, 5, ... */
|
|
2858 static int InterlacedOffset[] = { 0, 4, 2, 1 };
|
|
2859 static int InterlacedJumps[] = { 8, 8, 4, 2 };
|
|
2860
|
|
2861 unwind.eimage = (unsigned char*) xmalloc (width * height * 3);
|
|
2862 if (!unwind.eimage)
|
269
|
2863 signal_image_error("Unable to allocate enough memory for image", instantiator);
|
265
|
2864
|
|
2865 /* write the data in EImage format (8bit RGB triples) */
|
|
2866
|
|
2867 /* Note: We just use the first image in the file and ignore the rest.
|
|
2868 We check here that that image covers the full "screen" size.
|
|
2869 I don't know whether that's always the case.
|
|
2870 -dkindred@cs.cmu.edu */
|
|
2871 if (unwind.giffile->SavedImages[0].ImageDesc.Height != height
|
|
2872 || unwind.giffile->SavedImages[0].ImageDesc.Width != width
|
|
2873 || unwind.giffile->SavedImages[0].ImageDesc.Left != 0
|
|
2874 || unwind.giffile->SavedImages[0].ImageDesc.Top != 0)
|
269
|
2875 signal_image_error ("First image in GIF file is not full size",
|
265
|
2876 instantiator);
|
|
2877
|
|
2878 interlace = unwind.giffile->SavedImages[0].ImageDesc.Interlace;
|
|
2879 pass = 0;
|
|
2880 row = interlace ? InterlacedOffset[pass] : 0;
|
|
2881 eip = unwind.eimage;
|
|
2882 for (i = 0; i < height; i++)
|
|
2883 {
|
|
2884 if (interlace && row >= height)
|
|
2885 row = InterlacedOffset[++pass];
|
|
2886 eip = unwind.eimage + (row * width * 3);
|
269
|
2887 for (j = 0; j < width; j++)
|
|
2888 {
|
|
2889 unsigned char pixel = unwind.giffile->SavedImages[0].RasterBits[(i * width) + j];
|
|
2890 *eip++ = cmo->Colors[pixel].Red;
|
|
2891 *eip++ = cmo->Colors[pixel].Green;
|
|
2892 *eip++ = cmo->Colors[pixel].Blue;
|
|
2893 }
|
265
|
2894 row += interlace ? InterlacedJumps[pass] : 1;
|
|
2895 }
|
269
|
2896 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
|
265
|
2897 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
|
|
2898 if (!unwind.ximage)
|
269
|
2899 signal_image_error("GIF conversion failed", instantiator);
|
265
|
2900 }
|
|
2901 #endif
|
251
|
2902 /* 4. Now create the pixmap and set up the image instance */
|
|
2903 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
269
|
2904 cmap, unwind.pixels, unwind.npixels,
|
251
|
2905 instantiator);
|
|
2906 /* Now that we've succeeded, we don't want the pixels
|
|
2907 freed right now. They're kept around in the image instance
|
|
2908 structure until it's destroyed. */
|
|
2909 unwind.npixels = 0;
|
265
|
2910 unwind.pixcount = 0;
|
251
|
2911 unbind_to (speccount, Qnil);
|
|
2912 }
|
|
2913
|
|
2914 #endif /* HAVE_GIF */
|
|
2915
|
|
2916
|
|
2917 #ifdef HAVE_PNG
|
|
2918 /* #define USE_TEMP_FILES_FOR_PNG_IMAGES 1 */
|
|
2919
|
|
2920 /**********************************************************************
|
|
2921 * PNG *
|
|
2922 **********************************************************************/
|
|
2923 static void
|
|
2924 png_validate (Lisp_Object instantiator)
|
|
2925 {
|
|
2926 file_or_data_must_be_present (instantiator);
|
|
2927 }
|
|
2928
|
|
2929 static Lisp_Object
|
|
2930 png_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
2931 {
|
|
2932 return simple_image_type_normalize (inst, console_type, Qpng);
|
|
2933 }
|
|
2934
|
|
2935 static int
|
|
2936 png_possible_dest_types (void)
|
|
2937 {
|
|
2938 return IMAGE_COLOR_PIXMAP_MASK;
|
|
2939 }
|
|
2940
|
265
|
2941 #ifndef USE_TEMP_FILES_FOR_PNG_IMAGES
|
251
|
2942 struct png_memory_storage
|
|
2943 {
|
272
|
2944 CONST Extbyte *bytes; /* The data */
|
251
|
2945 Extcount len; /* How big is it? */
|
|
2946 int index; /* Where are we? */
|
|
2947 };
|
|
2948
|
269
|
2949 static void
|
|
2950 png_read_from_memory(png_structp png_ptr, png_bytep data,
|
|
2951 png_size_t length)
|
251
|
2952 {
|
|
2953 struct png_memory_storage *tbr =
|
|
2954 (struct png_memory_storage *) png_get_io_ptr (png_ptr);
|
|
2955
|
|
2956 if (length > (tbr->len - tbr->index))
|
|
2957 png_error (png_ptr, (png_const_charp) "Read Error");
|
269
|
2958 memcpy (data,tbr->bytes + tbr->index,length);
|
251
|
2959 tbr->index = tbr->index + length;
|
|
2960 }
|
265
|
2961 #endif /* !USE_TEMP_FILES_FOR_PNG_IMAGES */
|
|
2962
|
|
2963 struct png_error_struct
|
|
2964 {
|
|
2965 CONST char *err_str;
|
|
2966 jmp_buf setjmp_buffer; /* for return to caller */
|
|
2967 };
|
|
2968
|
|
2969 /* jh 98/03/12 - #### AARRRGH! libpng includes jmp_buf inside its own
|
|
2970 structure, and there are cases where the size can be different from
|
|
2971 between inside the libarary, and inside the code! To do an end run
|
|
2972 around this, use our own error functions, and don't rely on things
|
|
2973 passed in the png_ptr to them. This is an ugly hack and must
|
|
2974 go away when the lisp engine is threaded! */
|
|
2975 static struct png_error_struct png_err_stct;
|
|
2976
|
269
|
2977 static void
|
272
|
2978 png_error_func (png_structp png_ptr, png_const_charp msg)
|
265
|
2979 {
|
272
|
2980 png_err_stct.err_str = msg;
|
265
|
2981 longjmp (png_err_stct.setjmp_buffer, 1);
|
|
2982 }
|
|
2983
|
269
|
2984 static void
|
272
|
2985 png_warning_func (png_structp png_ptr, png_const_charp msg)
|
265
|
2986 {
|
272
|
2987 warn_when_safe (Qpng, Qinfo, "%s", msg);
|
265
|
2988 }
|
251
|
2989
|
|
2990 struct png_unwind_data
|
|
2991 {
|
|
2992 Display *dpy;
|
|
2993 Colormap cmap;
|
|
2994 FILE *instream;
|
265
|
2995 unsigned char *eimage;
|
|
2996 png_structp png_ptr;
|
|
2997 png_infop info_ptr;
|
251
|
2998 unsigned long *pixels;
|
265
|
2999 int npixels, pixcount;
|
251
|
3000 XImage *ximage;
|
265
|
3001 #ifdef USE_TEMP_FILES_FOR_PNG_IMAGESS
|
251
|
3002 char tempfile[50];
|
|
3003 int tempfile_needs_to_be_removed;
|
265
|
3004 #endif
|
251
|
3005 };
|
|
3006
|
|
3007 static Lisp_Object
|
|
3008 png_instantiate_unwind (Lisp_Object unwind_obj)
|
|
3009 {
|
|
3010 struct png_unwind_data *data =
|
|
3011 (struct png_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
3012
|
|
3013 free_opaque_ptr (unwind_obj);
|
|
3014 if (data->png_ptr)
|
265
|
3015 png_destroy_read_struct (&(data->png_ptr), &(data->info_ptr), (png_infopp)NULL);
|
251
|
3016 if (data->instream)
|
|
3017 fclose (data->instream);
|
|
3018 if (data->npixels > 0)
|
265
|
3019 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
|
|
3020 if (data->pixcount > 0)
|
|
3021 xfree (data->pixels);
|
|
3022
|
|
3023 if (data->eimage)
|
|
3024 xfree (data->eimage);
|
251
|
3025 if (data->ximage)
|
|
3026 {
|
|
3027 if (data->ximage->data)
|
|
3028 {
|
|
3029 xfree (data->ximage->data);
|
|
3030 data->ximage->data = 0;
|
|
3031 }
|
|
3032 XDestroyImage (data->ximage);
|
|
3033 }
|
265
|
3034 #ifdef USE_TEMP_FILES_FOR_PNG_IMAGES
|
|
3035 if (data->tempfile_needs_to_be_removed)
|
|
3036 unlink (data->tempfile);
|
|
3037 #endif
|
251
|
3038 return Qnil;
|
|
3039 }
|
|
3040
|
|
3041 static void
|
|
3042 png_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3043 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
3044 int dest_mask, Lisp_Object domain)
|
|
3045 {
|
|
3046 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
3047 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
3048 Display *dpy;
|
|
3049 Colormap cmap;
|
|
3050 Visual *vis;
|
|
3051 struct png_unwind_data unwind;
|
|
3052 int speccount = specpdl_depth ();
|
|
3053
|
|
3054 /* PNG variables */
|
265
|
3055 png_structp png_ptr;
|
|
3056 png_infop info_ptr;
|
251
|
3057
|
|
3058 if (!DEVICE_X_P (XDEVICE (device)))
|
|
3059 signal_simple_error ("Not an X device", device);
|
|
3060
|
|
3061 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
3062 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
3063 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
3064
|
265
|
3065 /* Initialize all PNG structures */
|
269
|
3066 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, (void*)&png_err_stct,
|
|
3067 png_error_func, png_warning_func);
|
265
|
3068 if (!png_ptr)
|
269
|
3069 signal_image_error ("Error obtaining memory for png_read", instantiator);
|
|
3070 info_ptr = png_create_info_struct (png_ptr);
|
265
|
3071 if (!info_ptr)
|
|
3072 {
|
269
|
3073 png_destroy_read_struct (&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
|
|
3074 signal_image_error ("Error obtaining memory for png_read", instantiator);
|
265
|
3075 }
|
|
3076
|
272
|
3077 xzero (unwind);
|
251
|
3078 unwind.png_ptr = png_ptr;
|
|
3079 unwind.info_ptr = info_ptr;
|
|
3080 unwind.dpy = dpy;
|
|
3081 unwind.cmap = cmap;
|
|
3082
|
|
3083 record_unwind_protect (png_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
3084
|
|
3085 /* This code is a mixture of stuff from Ben's GIF/JPEG stuff from
|
|
3086 this file, example.c from the libpng 0.81 distribution, and the
|
|
3087 pngtopnm sources. -WMP-
|
|
3088 */
|
265
|
3089 /* It has been further modified to handle the API changes for 0.96,
|
|
3090 and is no longer usable for previous versions. jh
|
|
3091 */
|
221
|
3092
|
251
|
3093 /* Set the jmp_buf reurn context for png_error ... if this returns !0, then
|
|
3094 we ran into a problem somewhere, and need to clean up after ourselves. */
|
265
|
3095 if (setjmp (png_err_stct.setjmp_buffer))
|
251
|
3096 {
|
265
|
3097 /* Something blew up: just display the error (cleanup happens in the unwind) */
|
269
|
3098 signal_image_error_2 ("Error decoding PNG",
|
265
|
3099 build_string(png_err_stct.err_str),
|
|
3100 instantiator);
|
251
|
3101 }
|
|
3102
|
|
3103 /* Initialize the IO layer and read in header information */
|
|
3104 {
|
|
3105 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
272
|
3106 CONST Extbyte *bytes;
|
251
|
3107 Extcount len;
|
|
3108 struct png_memory_storage tbr; /* Data to be read */
|
|
3109
|
|
3110 assert (!NILP (data));
|
|
3111
|
|
3112 /* #### This is a definite problem under Mule due to the amount of
|
265
|
3113 stack data it might allocate. Need to think about using Lstreams */
|
251
|
3114 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
|
3115 tbr.bytes = bytes;
|
|
3116 tbr.len = len;
|
|
3117 tbr.index = 0;
|
269
|
3118 png_set_read_fn (png_ptr,(void *) &tbr, png_read_from_memory);
|
221
|
3119 }
|
251
|
3120
|
|
3121 png_read_info (png_ptr, info_ptr);
|
|
3122
|
265
|
3123 #if 0
|
251
|
3124 /* set up the transformations you want. Note that these are
|
|
3125 all optional. Only call them if you want them */
|
|
3126 /* tell libpng to strip 16 bit depth files down to 8 bits */
|
|
3127 if (info_ptr->bit_depth == 16)
|
|
3128 png_set_strip_16 (png_ptr);
|
|
3129 if (info_ptr->bit_depth < 8)
|
|
3130 png_set_packing (png_ptr);
|
|
3131 /* ##### Perhaps some way to specify the screen gamma should be in here? */
|
|
3132
|
221
|
3133 {
|
251
|
3134 int height = info_ptr->height;
|
|
3135 int width = info_ptr->width;
|
|
3136 int depth = info_ptr->bit_depth;
|
|
3137 int linesize = max (info_ptr->bit_depth >> 3, 1) * width;
|
|
3138 int bitmap_pad;
|
|
3139 int y;
|
|
3140 XColor color;
|
|
3141 png_byte *png_pixels;
|
|
3142 png_byte **row_pointers;
|
|
3143 png_color static_color_cube[216];
|
|
3144
|
|
3145 /* Wow, allocate all the memory. Truly, exciting. */
|
265
|
3146 unwind.pixcount = 32;
|
|
3147 unwind.pixels = xnew_array (unsigned long, unwind.pixcount);
|
251
|
3148 png_pixels = xnew_array (png_byte, linesize * height);
|
|
3149 row_pointers = xnew_array (png_byte *, height);
|
|
3150
|
|
3151 for (y = 0; y < height; y++)
|
|
3152 row_pointers[y] = png_pixels + (linesize * y);
|
|
3153
|
|
3154 /* #### This is where we should handle transparency, but I am unsure of
|
|
3155 how exactly to get that information right now, in a safe manner. */
|
|
3156 #if 0
|
|
3157 {
|
|
3158 png_color_16 current_background;
|
|
3159
|
|
3160 /* Some appropriate magic should go here to get the current
|
|
3161 buffers (device?) background color and convert it to a
|
|
3162 png_color_16 struct */
|
|
3163 if (info_ptr->valid & PNG_INFO_bKGD)
|
|
3164 png_set_background (png_ptr, &(info_ptr->background), PNG_GAMMA_FILE,
|
|
3165 1, 1.0);
|
221
|
3166 else
|
251
|
3167 png_set_background (png_ptr, ¤t_background, PNG_GAMMA_SCREEN,
|
|
3168 0, 1.0);
|
|
3169 }
|
|
3170 #endif
|
|
3171
|
265
|
3172 if (((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
|
|
3173 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)) &&
|
|
3174 (vis->class == PseudoColor))
|
251
|
3175 {
|
|
3176 if (!(info_ptr->valid & PNG_INFO_PLTE))
|
|
3177 {
|
|
3178 for (y = 0; y < 216; y++)
|
|
3179 {
|
272
|
3180 static_color_cube[y].red = (png_byte) ((y % 6) * 255.0 / 5);
|
|
3181 static_color_cube[y].green = (png_byte) (((y / 6) % 6) * 255.0 / 5);
|
|
3182 static_color_cube[y].blue = (png_byte) ((y / 36) * 255.0 / 5);
|
251
|
3183 }
|
|
3184 png_set_dither (png_ptr, static_color_cube, 216, 216, NULL, 1);
|
|
3185 }
|
|
3186 else
|
|
3187 {
|
|
3188 png_set_dither (png_ptr, info_ptr->palette, info_ptr->num_palette,
|
|
3189 info_ptr->num_palette, info_ptr->hist, 1);
|
|
3190 }
|
|
3191 }
|
|
3192
|
|
3193 png_read_image (png_ptr, row_pointers);
|
|
3194 png_read_end (png_ptr, info_ptr);
|
|
3195
|
|
3196 /* Ok, now we go and allocate all the colors */
|
|
3197 if (info_ptr->valid & PNG_INFO_PLTE)
|
|
3198 {
|
265
|
3199 unwind.npixels = 0;
|
|
3200 for (y = 0; y < info_ptr->num_palette; y++)
|
251
|
3201 {
|
265
|
3202 int res;
|
272
|
3203 color.red = info_ptr->palette[y].red << 8;
|
251
|
3204 color.green = info_ptr->palette[y].green << 8;
|
272
|
3205 color.blue = info_ptr->palette[y].blue << 8;
|
251
|
3206 color.flags = DoRed | DoGreen | DoBlue;
|
265
|
3207 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
3208 if (res > 0 && res < 3)
|
|
3209 {
|
|
3210 DO_REALLOC(unwind.pixels, unwind.pixcount, unwind.npixels+1, unsigned long);
|
|
3211 unwind.pixels[unwind.npixels] = color.pixel;
|
|
3212 unwind.npixels++;
|
|
3213 }
|
251
|
3214 }
|
|
3215 }
|
|
3216 else
|
|
3217 {
|
265
|
3218 unwind.npixels = 0;
|
251
|
3219 for (y = 0; y < 216; y++)
|
|
3220 {
|
265
|
3221 int res;
|
272
|
3222 color.red = static_color_cube[y].red << 8;
|
251
|
3223 color.green = static_color_cube[y].green << 8;
|
272
|
3224 color.blue = static_color_cube[y].blue << 8;
|
251
|
3225 color.flags = DoRed|DoGreen|DoBlue;
|
265
|
3226 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
3227 if (res > 0 && res < 3)
|
|
3228 {
|
|
3229 unwind.pixels[unwind.npixels] = color.pixel;
|
|
3230 unwind.npixels++;
|
|
3231 }
|
251
|
3232 }
|
|
3233 }
|
|
3234
|
|
3235 #ifdef PNG_SHOW_COMMENTS
|
|
3236 /* ####
|
|
3237 * I turn this off by default now, because the !%^@#!% comments
|
|
3238 * show up every time the image is instantiated, which can get
|
|
3239 * really really annoying. There should be some way to pass this
|
|
3240 * type of data down into the glyph code, where you can get to it
|
|
3241 * from lisp anyway. - WMP
|
|
3242 */
|
|
3243 {
|
|
3244 int i;
|
|
3245
|
|
3246 for (i = 0 ; i < info_ptr->num_text ; i++)
|
215
|
3247 {
|
251
|
3248 /* How paranoid do I have to be about no trailing NULLs, and
|
|
3249 using (int)info_ptr->text[i].text_length, and strncpy and a temp
|
|
3250 string somewhere? */
|
|
3251
|
|
3252 warn_when_safe (Qpng, Qinfo, "%s - %s",
|
|
3253 info_ptr->text[i].key,
|
|
3254 info_ptr->text[i].text);
|
221
|
3255 }
|
|
3256 }
|
251
|
3257 #endif
|
|
3258
|
|
3259 /* Now create the image */
|
|
3260
|
|
3261 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
3262
|
|
3263 /* first get bitmap_pad (from XPM) */
|
|
3264 bitmap_pad = ((depth > 16) ? 32 :
|
|
3265 (depth > 8) ? 16 :
|
|
3266 8);
|
|
3267
|
|
3268 unwind.ximage = XCreateImage (dpy, vis,
|
|
3269 depth, ZPixmap, 0, 0, width, height,
|
|
3270 bitmap_pad, 0);
|
|
3271
|
|
3272 if (!unwind.ximage)
|
269
|
3273 signal_image_error ("Unable to create X image struct",
|
251
|
3274 instantiator);
|
|
3275
|
|
3276 /* now that bytes_per_line must have been set properly alloc data */
|
|
3277 unwind.ximage->data = (char *) xmalloc (unwind.ximage->bytes_per_line *
|
|
3278 height);
|
|
3279
|
|
3280 {
|
|
3281 int i, j;
|
|
3282 for (i = 0; i < height; i++)
|
|
3283 for (j = 0; j < width; j++)
|
|
3284 XPutPixel (unwind.ximage, j, i,
|
|
3285 unwind.pixels[png_pixels[i * width + j]]);
|
|
3286 }
|
|
3287
|
|
3288 xfree (row_pointers);
|
|
3289 xfree (png_pixels);
|
221
|
3290 }
|
265
|
3291 #else
|
|
3292 {
|
|
3293 int height = info_ptr->height;
|
|
3294 int width = info_ptr->width;
|
|
3295 int y;
|
|
3296 unsigned char **row_pointers;
|
|
3297
|
|
3298 /* Wow, allocate all the memory. Truly, exciting. */
|
|
3299 unwind.eimage = xnew_array_and_zero (unsigned char, width * height * 3);
|
|
3300 /* libpng expects that the image buffer passed in contains a
|
|
3301 picture to draw on top of if the png has any transparencies.
|
|
3302 This could be a good place to pass that in... */
|
|
3303
|
|
3304 row_pointers = xnew_array (png_byte *, height);
|
|
3305
|
|
3306 for (y = 0; y < height; y++)
|
|
3307 row_pointers[y] = unwind.eimage + (width * 3 * y);
|
|
3308
|
|
3309 /* Now that we're using EImage, ask for 8bit RGB triples for any type
|
|
3310 of image*/
|
|
3311 /* convert palatte images to full RGB */
|
|
3312 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
|
269
|
3313 png_set_expand (png_ptr);
|
265
|
3314 /* send grayscale images to RGB too */
|
|
3315 if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY ||
|
|
3316 info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
269
|
3317 png_set_gray_to_rgb (png_ptr);
|
265
|
3318 /* we can't handle alpha values */
|
|
3319 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
|
269
|
3320 png_set_strip_alpha (png_ptr);
|
265
|
3321 /* rip out any transparancy layers/colors */
|
269
|
3322 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
|
|
3323 {
|
|
3324 png_set_expand (png_ptr);
|
|
3325 png_set_strip_alpha (png_ptr);
|
|
3326 }
|
265
|
3327 /* tell libpng to strip 16 bit depth files down to 8 bits */
|
|
3328 if (info_ptr->bit_depth == 16)
|
|
3329 png_set_strip_16 (png_ptr);
|
|
3330 /* if the image is < 8 bits, pad it out */
|
269
|
3331 if (info_ptr->bit_depth < 8)
|
|
3332 {
|
|
3333 if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY)
|
|
3334 png_set_expand (png_ptr);
|
|
3335 else
|
|
3336 png_set_packing (png_ptr);
|
|
3337 }
|
265
|
3338
|
|
3339 #if 1 /* tests? or permanent? */
|
|
3340 {
|
|
3341 /* if the png specifies a background chunk, go ahead and
|
|
3342 use it */
|
|
3343 png_color_16 my_background, *image_background;
|
|
3344
|
|
3345 /* ### how do I get the background of the current frame? */
|
272
|
3346 my_background.red = 0x7fff;
|
265
|
3347 my_background.green = 0x7fff;
|
272
|
3348 my_background.blue = 0x7fff;
|
265
|
3349
|
269
|
3350 if (png_get_bKGD (png_ptr, info_ptr, &image_background))
|
|
3351 png_set_background (png_ptr, image_background,
|
|
3352 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
|
265
|
3353 else
|
269
|
3354 png_set_background (png_ptr, &my_background,
|
|
3355 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
|
265
|
3356 }
|
|
3357 #endif
|
|
3358 png_read_image (png_ptr, row_pointers);
|
|
3359 png_read_end (png_ptr, info_ptr);
|
|
3360
|
|
3361 #ifdef PNG_SHOW_COMMENTS
|
|
3362 /* ####
|
|
3363 * I turn this off by default now, because the !%^@#!% comments
|
|
3364 * show up every time the image is instantiated, which can get
|
|
3365 * really really annoying. There should be some way to pass this
|
|
3366 * type of data down into the glyph code, where you can get to it
|
|
3367 * from lisp anyway. - WMP
|
|
3368 */
|
|
3369 {
|
|
3370 int i;
|
|
3371
|
|
3372 for (i = 0 ; i < info_ptr->num_text ; i++)
|
|
3373 {
|
|
3374 /* How paranoid do I have to be about no trailing NULLs, and
|
|
3375 using (int)info_ptr->text[i].text_length, and strncpy and a temp
|
|
3376 string somewhere? */
|
|
3377
|
|
3378 warn_when_safe (Qpng, Qinfo, "%s - %s",
|
|
3379 info_ptr->text[i].key,
|
|
3380 info_ptr->text[i].text);
|
|
3381 }
|
|
3382 }
|
|
3383 #endif
|
|
3384
|
|
3385 xfree (row_pointers);
|
269
|
3386 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
|
265
|
3387 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
|
|
3388 if (!unwind.ximage)
|
269
|
3389 signal_image_error ("PNG conversion failed", instantiator);
|
265
|
3390 }
|
|
3391 #endif
|
221
|
3392
|
|
3393 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
269
|
3394 cmap, unwind.pixels, unwind.npixels,
|
221
|
3395 instantiator);
|
|
3396
|
251
|
3397 /* This will clean up everything else. */
|
221
|
3398 unwind.npixels = 0;
|
265
|
3399 unwind.pixcount = 0;
|
221
|
3400 unbind_to (speccount, Qnil);
|
207
|
3401 }
|
|
3402
|
251
|
3403 #endif /* HAVE_PNG */
|
|
3404
|
|
3405
|
|
3406 #ifdef HAVE_TIFF
|
265
|
3407 #include "tiffio.h"
|
251
|
3408
|
|
3409 /**********************************************************************
|
|
3410 * TIFF *
|
|
3411 **********************************************************************/
|
|
3412 static void
|
|
3413 tiff_validate (Lisp_Object instantiator)
|
|
3414 {
|
|
3415 file_or_data_must_be_present (instantiator);
|
|
3416 }
|
|
3417
|
|
3418 static Lisp_Object
|
|
3419 tiff_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
3420 {
|
265
|
3421 return simple_image_type_normalize (inst, console_type, Qtiff);
|
251
|
3422 }
|
|
3423
|
|
3424 static int
|
|
3425 tiff_possible_dest_types (void)
|
|
3426 {
|
|
3427 return IMAGE_COLOR_PIXMAP_MASK;
|
|
3428 }
|
|
3429
|
265
|
3430 struct tiff_unwind_data
|
|
3431 {
|
|
3432 Display *dpy;
|
|
3433 Colormap cmap;
|
|
3434 unsigned char *eimage;
|
|
3435 /* Object that holds the decoded data from a TIFF file */
|
|
3436 TIFF *tiff;
|
|
3437 /* Pixels to keep around while the image is active */
|
|
3438 unsigned long *pixels;
|
|
3439 int npixels,pixcount;
|
|
3440 /* Client-side image structure */
|
|
3441 XImage *ximage;
|
|
3442 };
|
|
3443
|
|
3444 static Lisp_Object
|
|
3445 tiff_instantiate_unwind (Lisp_Object unwind_obj)
|
|
3446 {
|
|
3447 struct tiff_unwind_data *data =
|
|
3448 (struct tiff_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
3449
|
|
3450 free_opaque_ptr (unwind_obj);
|
|
3451 if (data->tiff)
|
|
3452 {
|
|
3453 TIFFClose(data->tiff);
|
|
3454 }
|
|
3455 if (data->eimage)
|
269
|
3456 xfree (data->eimage);
|
265
|
3457 if (data->npixels > 0)
|
|
3458 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
|
|
3459 if (data->pixcount)
|
|
3460 xfree (data->pixels);
|
|
3461 if (data->ximage)
|
|
3462 {
|
|
3463 if (data->ximage->data)
|
|
3464 {
|
|
3465 xfree (data->ximage->data);
|
|
3466 data->ximage->data = 0;
|
|
3467 }
|
|
3468 XDestroyImage (data->ximage);
|
|
3469 }
|
|
3470
|
|
3471 return Qnil;
|
|
3472 }
|
|
3473
|
|
3474 typedef struct tiff_memory_storage
|
|
3475 {
|
|
3476 Extbyte *bytes; /* The data */
|
|
3477 Extcount len; /* How big is it? */
|
|
3478 int index; /* Where are we? */
|
|
3479 } tiff_memory_storage;
|
|
3480
|
269
|
3481 static size_t
|
|
3482 tiff_memory_read(thandle_t data, tdata_t buf, tsize_t size)
|
265
|
3483 {
|
|
3484 tiff_memory_storage *mem = (tiff_memory_storage*)data;
|
|
3485
|
|
3486 if (size > (mem->len - mem->index))
|
272
|
3487 return (size_t) -1;
|
265
|
3488 memcpy(buf, mem->bytes + mem->index, size);
|
|
3489 mem->index = mem->index + size;
|
|
3490 return size;
|
|
3491 }
|
|
3492
|
|
3493 static size_t tiff_memory_write(thandle_t data, tdata_t buf, tsize_t size)
|
|
3494 {
|
|
3495 abort();
|
274
|
3496 return 0; /* Shut up warnings. */
|
265
|
3497 }
|
|
3498
|
|
3499 static toff_t tiff_memory_seek(thandle_t data, toff_t off, int whence)
|
|
3500 {
|
|
3501 tiff_memory_storage *mem = (tiff_memory_storage*)data;
|
|
3502 int newidx;
|
|
3503 switch(whence) {
|
|
3504 case SEEK_SET:
|
|
3505 newidx = off;
|
|
3506 break;
|
|
3507 case SEEK_END:
|
|
3508 newidx = mem->len + off;
|
|
3509 break;
|
|
3510 case SEEK_CUR:
|
|
3511 newidx = mem->index + off;
|
|
3512 break;
|
|
3513 default:
|
|
3514 fprintf(stderr,"Eh? invalid seek mode in tiff_memory_seek\n");
|
|
3515 return -1;
|
|
3516 }
|
|
3517
|
|
3518 if ((newidx > mem->len) || (newidx < 0))
|
|
3519 return -1;
|
|
3520
|
|
3521 mem->index = newidx;
|
|
3522 return newidx;
|
|
3523 }
|
|
3524
|
269
|
3525 static int
|
|
3526 tiff_memory_close(thandle_t data)
|
265
|
3527 {
|
|
3528 return 0;
|
|
3529 }
|
|
3530
|
269
|
3531 static int
|
|
3532 tiff_map_noop(thandle_t data, tdata_t* pbase, toff_t* psize)
|
265
|
3533 {
|
|
3534 return 0;
|
|
3535 }
|
|
3536
|
269
|
3537 static void
|
|
3538 tiff_unmap_noop(thandle_t data, tdata_t pbase, toff_t psize)
|
265
|
3539 {
|
|
3540 return;
|
|
3541 }
|
|
3542
|
269
|
3543 static toff_t
|
|
3544 tiff_memory_size(thandle_t data)
|
265
|
3545 {
|
|
3546 tiff_memory_storage *mem = (tiff_memory_storage*)data;
|
|
3547 return mem->len;
|
|
3548 }
|
|
3549
|
|
3550 struct tiff_error_struct
|
|
3551 {
|
|
3552 #if HAVE_VSNPRINTF
|
|
3553 char err_str[256];
|
|
3554 #else
|
|
3555 char err_str[1024]; /* return the error string */
|
|
3556 #endif
|
|
3557 jmp_buf setjmp_buffer; /* for return to caller */
|
|
3558 };
|
|
3559
|
|
3560 /* jh 98/03/12 - ###This struct for passing data to the error functions
|
|
3561 is an ugly hack caused by the fact that libtiff (as of v3.4) doesn't
|
|
3562 have any place to store error func data. This should be rectified
|
|
3563 before XEmacs gets threads! */
|
|
3564 static struct tiff_error_struct tiff_err_data;
|
|
3565
|
269
|
3566 static void
|
|
3567 tiff_error_func(CONST char *module, CONST char *fmt, ...)
|
265
|
3568 {
|
|
3569 va_list vargs;
|
|
3570
|
|
3571 va_start (vargs, fmt);
|
|
3572 #if HAVE_VSNPRINTF
|
269
|
3573 vsnprintf (tiff_err_data.err_str, 255, fmt, vargs);
|
265
|
3574 #else
|
|
3575 /* pray this doesn't overflow... */
|
269
|
3576 vsprintf (tiff_err_data.err_str, fmt, vargs);
|
265
|
3577 #endif
|
269
|
3578 va_end (vargs);
|
265
|
3579 /* return to setjmp point */
|
|
3580 longjmp (tiff_err_data.setjmp_buffer, 1);
|
|
3581 }
|
|
3582
|
269
|
3583 static void
|
|
3584 tiff_warning_func(CONST char *module, CONST char *fmt, ...)
|
265
|
3585 {
|
|
3586 va_list vargs;
|
|
3587 #if HAVE_VSNPRINTF
|
|
3588 char warn_str[256];
|
|
3589 #else
|
|
3590 char warn_str[1024];
|
|
3591 #endif
|
|
3592
|
|
3593 va_start (vargs, fmt);
|
|
3594 #if HAVE_VSNPRINTF
|
269
|
3595 vsnprintf (warn_str, 255, fmt, vargs);
|
265
|
3596 #else
|
269
|
3597 vsprintf (warn_str, fmt, vargs);
|
265
|
3598 #endif
|
269
|
3599 va_end (vargs);
|
265
|
3600 warn_when_safe (Qtiff, Qinfo, "%s - %s",
|
|
3601 module, warn_str);
|
|
3602 }
|
|
3603
|
251
|
3604 static void
|
|
3605 tiff_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3606 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
3607 int dest_mask, Lisp_Object domain)
|
|
3608 {
|
265
|
3609 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
3610 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
3611 Colormap cmap;
|
|
3612 Display *dpy;
|
|
3613 tiff_memory_storage mem_struct;
|
|
3614 /* It is OK for the unwind data to be local to this function,
|
|
3615 because the unwind-protect is always executed when this
|
|
3616 stack frame is still valid. */
|
|
3617 struct tiff_unwind_data unwind;
|
|
3618 int speccount = specpdl_depth ();
|
|
3619
|
|
3620 if (!DEVICE_X_P (XDEVICE (device)))
|
|
3621 signal_simple_error ("Not an X device", device);
|
|
3622
|
|
3623 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
3624 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
3625
|
272
|
3626 xzero (unwind);
|
265
|
3627 unwind.dpy = dpy;
|
|
3628 unwind.cmap = cmap;
|
|
3629 record_unwind_protect (tiff_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
3630
|
|
3631 /* set up error facilities */
|
269
|
3632 if (setjmp (tiff_err_data.setjmp_buffer))
|
|
3633 {
|
|
3634 /* An error was signaled. No clean up is needed, as unwind handles that
|
|
3635 for us. Just pass the error along. */
|
|
3636 signal_image_error_2 ("TIFF decoding error",
|
|
3637 build_string(tiff_err_data.err_str),
|
|
3638 instantiator);
|
|
3639 }
|
|
3640 TIFFSetErrorHandler ((TIFFErrorHandler)tiff_error_func);
|
|
3641 TIFFSetWarningHandler ((TIFFErrorHandler)tiff_warning_func);
|
265
|
3642 {
|
|
3643 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3644 Extbyte *bytes;
|
|
3645 Extcount len;
|
|
3646
|
|
3647 uint32 width, height;
|
|
3648 uint32 *raster;
|
|
3649 unsigned char *ep;
|
|
3650
|
|
3651 assert (!NILP (data));
|
|
3652
|
|
3653 /* #### This is a definite problem under Mule due to the amount of
|
|
3654 stack data it might allocate. Think about Lstreams... */
|
|
3655 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
|
3656 mem_struct.bytes = bytes;
|
|
3657 mem_struct.len = len;
|
|
3658 mem_struct.index = 0;
|
|
3659
|
269
|
3660 unwind.tiff = TIFFClientOpen ("memfile", "r", &mem_struct,
|
|
3661 (TIFFReadWriteProc)tiff_memory_read,
|
|
3662 (TIFFReadWriteProc)tiff_memory_write,
|
|
3663 tiff_memory_seek, tiff_memory_close, tiff_memory_size,
|
|
3664 tiff_map_noop, tiff_unmap_noop);
|
265
|
3665 if (!unwind.tiff)
|
269
|
3666 signal_image_error ("Insufficent memory to instantiate TIFF image", instantiator);
|
|
3667
|
|
3668 TIFFGetField (unwind.tiff, TIFFTAG_IMAGEWIDTH, &width);
|
|
3669 TIFFGetField (unwind.tiff, TIFFTAG_IMAGELENGTH, &height);
|
272
|
3670 unwind.eimage = (unsigned char *) xmalloc (width * height * 3);
|
265
|
3671
|
|
3672 /* ### This is little more than proof-of-concept/function testing.
|
|
3673 It needs to be reimplimented via scanline reads for both memory
|
|
3674 compactness. */
|
269
|
3675 raster = (uint32*) _TIFFmalloc (width * height * sizeof (uint32));
|
|
3676 if (raster != NULL)
|
|
3677 {
|
|
3678 int i,j;
|
|
3679 uint32 *rp;
|
|
3680 ep = unwind.eimage;
|
|
3681 rp = raster;
|
|
3682 if (TIFFReadRGBAImage (unwind.tiff, width, height, raster, 0))
|
|
3683 {
|
|
3684 for (i = height - 1; i >= 0; i--)
|
|
3685 {
|
|
3686 /* This is to get around weirdness in the libtiff library where properly
|
|
3687 made TIFFs will come out upside down. libtiff bug or jhod-brainlock? */
|
|
3688 rp = raster + (i * width);
|
|
3689 for (j = 0; j < width; j++)
|
|
3690 {
|
|
3691 *ep++ = (unsigned char)TIFFGetR(*rp);
|
|
3692 *ep++ = (unsigned char)TIFFGetG(*rp);
|
|
3693 *ep++ = (unsigned char)TIFFGetB(*rp);
|
|
3694 rp++;
|
|
3695 }
|
|
3696 }
|
265
|
3697 }
|
269
|
3698 _TIFFfree (raster);
|
|
3699 } else
|
|
3700 signal_image_error ("Unable to allocate memory for TIFFReadRGBA", instantiator);
|
|
3701
|
|
3702 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
|
265
|
3703 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
|
|
3704 if (!unwind.ximage)
|
269
|
3705 signal_image_error ("TIFF conversion failed", instantiator);
|
265
|
3706 }
|
|
3707 /* Now create the pixmap and set up the image instance */
|
|
3708 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
269
|
3709 cmap, unwind.pixels, unwind.npixels,
|
265
|
3710 instantiator);
|
|
3711 /* Now that we've succeeded, we don't want the pixels
|
|
3712 freed right now. They're kept around in the image instance
|
|
3713 structure until it's destroyed. */
|
|
3714 unwind.npixels = 0;
|
|
3715 unwind.pixcount = 0;
|
|
3716 unbind_to (speccount, Qnil);
|
251
|
3717 }
|
|
3718
|
|
3719 #endif /* HAVE_TIFF */
|
207
|
3720
|
|
3721
|
0
|
3722 #ifdef HAVE_XFACE
|
|
3723
|
|
3724 /**********************************************************************
|
|
3725 * X-Face *
|
|
3726 **********************************************************************/
|
|
3727
|
|
3728 static void
|
|
3729 xface_validate (Lisp_Object instantiator)
|
|
3730 {
|
|
3731 file_or_data_must_be_present (instantiator);
|
|
3732 }
|
|
3733
|
|
3734 static Lisp_Object
|
|
3735 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
3736 {
|
116
|
3737 /* This funcation can call lisp */
|
0
|
3738 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
3739 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3740 Lisp_Object alist = Qnil;
|
185
|
3741
|
0
|
3742 GCPRO3 (file, mask_file, alist);
|
|
3743
|
|
3744 /* Now, convert any file data into inline data for both the regular
|
|
3745 data and the mask data. At the end of this, `data' will contain
|
|
3746 the inline data (if any) or Qnil, and `file' will contain
|
|
3747 the name this data was derived from (if known) or Qnil.
|
|
3748 Likewise for `mask_file' and `mask_data'.
|
|
3749
|
|
3750 Note that if we cannot generate any regular inline data, we
|
|
3751 skip out. */
|
|
3752
|
278
|
3753 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
3754 console_type);
|
0
|
3755 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
278
|
3756 Q_mask_data, console_type);
|
0
|
3757
|
|
3758 if (CONSP (file)) /* failure locating filename */
|
|
3759 signal_double_file_error ("Opening bitmap file",
|
|
3760 "no such file or directory",
|
|
3761 Fcar (file));
|
|
3762
|
|
3763 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
3764 RETURN_UNGCPRO (inst);
|
|
3765
|
|
3766 alist = tagged_vector_to_alist (inst);
|
|
3767
|
|
3768 {
|
|
3769 Lisp_Object data = make_string_from_file (file);
|
|
3770 alist = remassq_no_quit (Q_file, alist);
|
|
3771 /* there can't be a :data at this point. */
|
|
3772 alist = Fcons (Fcons (Q_file, file),
|
|
3773 Fcons (Fcons (Q_data, data), alist));
|
|
3774 }
|
|
3775
|
|
3776 alist = xbm_mask_file_munging (alist, file, mask_file);
|
|
3777
|
|
3778 {
|
|
3779 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
3780 free_alist (alist);
|
|
3781 RETURN_UNGCPRO (result);
|
|
3782 }
|
|
3783 }
|
|
3784
|
|
3785 static int
|
74
|
3786 xface_possible_dest_types (void)
|
0
|
3787 {
|
74
|
3788 return
|
|
3789 IMAGE_MONO_PIXMAP_MASK |
|
|
3790 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
3791 IMAGE_POINTER_MASK;
|
|
3792 }
|
|
3793
|
|
3794 #if defined(EXTERN)
|
|
3795 /* This is about to get redefined! */
|
|
3796 #undef EXTERN
|
|
3797 #endif
|
|
3798 /* We have to define SYSV32 so that compface.h includes string.h
|
|
3799 instead of strings.h. */
|
|
3800 #define SYSV32
|
185
|
3801 #ifdef __cplusplus
|
|
3802 extern "C" {
|
|
3803 #endif
|
0
|
3804 #include <compface.h>
|
185
|
3805 #ifdef __cplusplus
|
|
3806 }
|
|
3807 #endif
|
0
|
3808 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
3809 to jmp_buf we end up with a conflicting type error with the
|
|
3810 definition in compface.h */
|
|
3811 extern jmp_buf comp_env;
|
|
3812 #undef SYSV32
|
|
3813
|
|
3814 static void
|
|
3815 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3816 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
3817 int dest_mask, Lisp_Object domain)
|
0
|
3818 {
|
|
3819 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3820 int i, stattis;
|
|
3821 char *p, *bits, *bp;
|
16
|
3822 CONST char * volatile emsg = 0;
|
|
3823 CONST char * volatile dstring;
|
0
|
3824
|
|
3825 assert (!NILP (data));
|
|
3826
|
|
3827 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
|
|
3828
|
|
3829 if ((p = strchr (dstring, ':')))
|
|
3830 {
|
|
3831 dstring = p + 1;
|
|
3832 }
|
|
3833
|
|
3834 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
3835 if (!(stattis = setjmp (comp_env)))
|
|
3836 {
|
|
3837 UnCompAll ((char *) dstring);
|
|
3838 UnGenFace ();
|
|
3839 }
|
|
3840
|
|
3841 switch (stattis)
|
|
3842 {
|
|
3843 case -2:
|
|
3844 emsg = "uncompface: internal error";
|
|
3845 break;
|
|
3846 case -1:
|
|
3847 emsg = "uncompface: insufficient or invalid data";
|
|
3848 break;
|
|
3849 case 1:
|
|
3850 emsg = "uncompface: excess data ignored";
|
|
3851 break;
|
|
3852 }
|
|
3853
|
|
3854 if (emsg)
|
|
3855 signal_simple_error_2 (emsg, data, Qimage);
|
|
3856
|
|
3857 bp = bits = (char *) alloca (PIXELS / 8);
|
|
3858
|
|
3859 /* the compface library exports char F[], which uses a single byte per
|
|
3860 pixel to represent a 48x48 bitmap. Yuck. */
|
|
3861 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
3862 {
|
|
3863 int n, b;
|
|
3864 /* reverse the bit order of each byte... */
|
|
3865 for (b = n = 0; b < 8; ++b)
|
|
3866 {
|
|
3867 n |= ((*p++) << b);
|
|
3868 }
|
|
3869 *bp++ = (char) n;
|
|
3870 }
|
|
3871
|
|
3872 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
3873 pointer_bg, dest_mask, 48, 48, bits);
|
|
3874 }
|
|
3875
|
|
3876 #endif /* HAVE_XFACE */
|
|
3877
|
|
3878
|
|
3879 /**********************************************************************
|
122
|
3880 * Autodetect *
|
0
|
3881 **********************************************************************/
|
|
3882
|
|
3883 static void
|
122
|
3884 autodetect_validate (Lisp_Object instantiator)
|
0
|
3885 {
|
|
3886 data_must_be_present (instantiator);
|
|
3887 }
|
|
3888
|
|
3889 static Lisp_Object
|
122
|
3890 autodetect_normalize (Lisp_Object instantiator,
|
120
|
3891 Lisp_Object console_type)
|
0
|
3892 {
|
|
3893 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
3894 Lisp_Object filename = Qnil;
|
|
3895 Lisp_Object data = Qnil;
|
|
3896 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3897 Lisp_Object alist = Qnil;
|
|
3898
|
|
3899 GCPRO3 (filename, data, alist);
|
|
3900
|
|
3901 if (NILP (file)) /* no conversion necessary */
|
|
3902 RETURN_UNGCPRO (instantiator);
|
|
3903
|
|
3904 alist = tagged_vector_to_alist (instantiator);
|
|
3905
|
|
3906 filename = locate_pixmap_file (file);
|
|
3907 if (!NILP (filename))
|
|
3908 {
|
|
3909 int xhot, yhot;
|
|
3910 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
3911 called by pixmap_to_lisp_data, don't return an error value
|
|
3912 if the given file is not a valid XPM file. Instead, they
|
|
3913 just seg fault. It is definitely caused by passing a
|
|
3914 bitmap. To try and avoid this we check for bitmaps first. */
|
185
|
3915
|
0
|
3916 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
3917
|
|
3918 if (!EQ (data, Qt))
|
|
3919 {
|
|
3920 alist = remassq_no_quit (Q_data, alist);
|
|
3921 alist = Fcons (Fcons (Q_file, filename),
|
|
3922 Fcons (Fcons (Q_data, data), alist));
|
|
3923 if (xhot != -1)
|
|
3924 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
3925 alist);
|
|
3926 if (yhot != -1)
|
|
3927 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
3928 alist);
|
|
3929
|
|
3930 alist = xbm_mask_file_munging (alist, filename, Qnil);
|
|
3931
|
|
3932 {
|
|
3933 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
3934 free_alist (alist);
|
|
3935 RETURN_UNGCPRO (result);
|
|
3936 }
|
|
3937 }
|
|
3938
|
|
3939 #ifdef HAVE_XPM
|
|
3940 data = pixmap_to_lisp_data (filename, 1);
|
|
3941
|
|
3942 if (!EQ (data, Qt))
|
|
3943 {
|
|
3944 alist = remassq_no_quit (Q_data, alist);
|
|
3945 alist = Fcons (Fcons (Q_file, filename),
|
|
3946 Fcons (Fcons (Q_data, data), alist));
|
|
3947 alist = Fcons (Fcons (Q_color_symbols,
|
|
3948 evaluate_xpm_color_symbols ()),
|
|
3949 alist);
|
|
3950 {
|
|
3951 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
3952 free_alist (alist);
|
|
3953 RETURN_UNGCPRO (result);
|
|
3954 }
|
|
3955 }
|
|
3956 #endif
|
|
3957 }
|
|
3958
|
|
3959 /* If we couldn't convert it, just put it back as it is.
|
|
3960 We might try to further frob it later as a cursor-font
|
|
3961 specification. (We can't do that now because we don't know
|
|
3962 what dest-types it's going to be instantiated into.) */
|
|
3963 {
|
122
|
3964 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
0
|
3965 free_alist (alist);
|
|
3966 RETURN_UNGCPRO (result);
|
|
3967 }
|
|
3968 }
|
|
3969
|
|
3970 static int
|
122
|
3971 autodetect_possible_dest_types (void)
|
0
|
3972 {
|
74
|
3973 return
|
|
3974 IMAGE_MONO_PIXMAP_MASK |
|
|
3975 IMAGE_COLOR_PIXMAP_MASK |
|
|
3976 IMAGE_POINTER_MASK |
|
|
3977 IMAGE_TEXT_MASK;
|
0
|
3978 }
|
|
3979
|
|
3980 static void
|
122
|
3981 autodetect_instantiate (Lisp_Object image_instance,
|
120
|
3982 Lisp_Object instantiator,
|
|
3983 Lisp_Object pointer_fg,
|
|
3984 Lisp_Object pointer_bg,
|
124
|
3985 int dest_mask, Lisp_Object domain)
|
0
|
3986 {
|
|
3987 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3988 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3989 Lisp_Object alist = Qnil;
|
|
3990 Lisp_Object result = Qnil;
|
|
3991 int is_cursor_font = 0;
|
|
3992
|
|
3993 GCPRO3 (data, alist, result);
|
|
3994
|
|
3995 alist = tagged_vector_to_alist (instantiator);
|
|
3996 if (dest_mask & IMAGE_POINTER_MASK)
|
|
3997 {
|
|
3998 CONST char *name_ext;
|
|
3999 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
4000 if (XmuCursorNameToIndex (name_ext) != -1)
|
|
4001 {
|
|
4002 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
4003 is_cursor_font = 1;
|
|
4004 }
|
|
4005 }
|
|
4006
|
|
4007 if (!is_cursor_font)
|
|
4008 result = alist_to_tagged_vector (Qstring, alist);
|
|
4009 free_alist (alist);
|
|
4010
|
|
4011 if (is_cursor_font)
|
|
4012 cursor_font_instantiate (image_instance, result, pointer_fg,
|
124
|
4013 pointer_bg, dest_mask, domain);
|
0
|
4014 else
|
|
4015 string_instantiate (image_instance, result, pointer_fg,
|
124
|
4016 pointer_bg, dest_mask, domain);
|
0
|
4017
|
|
4018 UNGCPRO;
|
|
4019 }
|
|
4020
|
|
4021
|
|
4022 /**********************************************************************
|
|
4023 * Font *
|
|
4024 **********************************************************************/
|
|
4025
|
|
4026 static void
|
|
4027 font_validate (Lisp_Object instantiator)
|
|
4028 {
|
|
4029 data_must_be_present (instantiator);
|
|
4030 }
|
|
4031
|
|
4032 /* XmuCvtStringToCursor is bogus in the following ways:
|
|
4033
|
|
4034 - When it can't convert the given string to a real cursor, it will
|
|
4035 sometimes return a "success" value, after triggering a BadPixmap
|
|
4036 error. It then gives you a cursor that will itself generate BadCursor
|
|
4037 errors. So we install this error handler to catch/notice the X error
|
|
4038 and take that as meaning "couldn't convert."
|
|
4039
|
|
4040 - When you tell it to find a cursor file that doesn't exist, it prints
|
|
4041 an error message on stderr. You can't make it not do that.
|
|
4042
|
|
4043 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
|
|
4044 objects, or XPM files, or $XBMLANGPATH.
|
|
4045 */
|
|
4046
|
|
4047 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
|
|
4048
|
|
4049 static int XLoadFont_got_error;
|
|
4050
|
|
4051 static int
|
|
4052 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
|
|
4053 {
|
|
4054 XLoadFont_got_error = 1;
|
|
4055 return 0;
|
|
4056 }
|
|
4057
|
|
4058 static Font
|
|
4059 safe_XLoadFont (Display *dpy, char *name)
|
|
4060 {
|
|
4061 Font font;
|
|
4062 int (*old_handler) (Display *, XErrorEvent *);
|
|
4063 XLoadFont_got_error = 0;
|
|
4064 XSync (dpy, 0);
|
|
4065 old_handler = XSetErrorHandler (XLoadFont_error_handler);
|
|
4066 font = XLoadFont (dpy, name);
|
|
4067 XSync (dpy, 0);
|
|
4068 XSetErrorHandler (old_handler);
|
|
4069 if (XLoadFont_got_error) return 0;
|
|
4070 return font;
|
|
4071 }
|
|
4072
|
|
4073 static int
|
74
|
4074 font_possible_dest_types (void)
|
0
|
4075 {
|
|
4076 return IMAGE_POINTER_MASK;
|
|
4077 }
|
|
4078
|
|
4079 static void
|
|
4080 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
4081 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
4082 int dest_mask, Lisp_Object domain)
|
0
|
4083 {
|
|
4084 /* This function can GC */
|
|
4085 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
4086 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
4087 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
4088 Display *dpy;
|
|
4089 XColor fg, bg;
|
|
4090 Font source, mask;
|
|
4091 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
4092 int source_char, mask_char;
|
|
4093 int count;
|
|
4094 Lisp_Object foreground, background;
|
|
4095
|
|
4096 if (!DEVICE_X_P (XDEVICE (device)))
|
|
4097 signal_simple_error ("Not an X device", device);
|
|
4098
|
|
4099 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
4100
|
|
4101 if (!STRINGP (data) ||
|
14
|
4102 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
0
|
4103 signal_simple_error ("Invalid font-glyph instantiator",
|
|
4104 instantiator);
|
|
4105
|
|
4106 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
4107 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
4108
|
|
4109 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
4110 if (NILP (foreground))
|
|
4111 foreground = pointer_fg;
|
|
4112 background = find_keyword_in_vector (instantiator, Q_background);
|
|
4113 if (NILP (background))
|
|
4114 background = pointer_bg;
|
|
4115
|
|
4116 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
4117
|
14
|
4118 count = sscanf ((char *) XSTRING_DATA (data),
|
0
|
4119 "FONT %s %d %s %d %c",
|
|
4120 source_name, &source_char,
|
|
4121 mask_name, &mask_char, &dummy);
|
|
4122 /* Allow "%s %d %d" as well... */
|
|
4123 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
4124 count = 4, mask_name[0] = 0;
|
|
4125
|
|
4126 if (count != 2 && count != 4)
|
|
4127 signal_simple_error ("invalid cursor specification", data);
|
|
4128 source = safe_XLoadFont (dpy, source_name);
|
|
4129 if (! source)
|
|
4130 signal_simple_error_2 ("couldn't load font",
|
|
4131 build_string (source_name),
|
|
4132 data);
|
|
4133 if (count == 2)
|
|
4134 mask = 0;
|
|
4135 else if (!mask_name[0])
|
|
4136 mask = source;
|
|
4137 else
|
|
4138 {
|
|
4139 mask = safe_XLoadFont (dpy, mask_name);
|
|
4140 if (!mask)
|
|
4141 /* continuable */
|
|
4142 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
|
|
4143 build_string (mask_name), data));
|
|
4144 }
|
|
4145 if (!mask)
|
|
4146 mask_char = 0;
|
|
4147
|
|
4148 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
4149
|
|
4150 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
4151 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
4152 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
4153 &fg, &bg);
|
|
4154 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
4155 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
4156 XUnloadFont (dpy, source);
|
|
4157 if (mask && mask != source) XUnloadFont (dpy, mask);
|
|
4158 }
|
|
4159
|
|
4160
|
|
4161 /**********************************************************************
|
|
4162 * Cursor-Font *
|
|
4163 **********************************************************************/
|
|
4164
|
|
4165 static void
|
|
4166 cursor_font_validate (Lisp_Object instantiator)
|
|
4167 {
|
|
4168 data_must_be_present (instantiator);
|
|
4169 }
|
|
4170
|
|
4171 static int
|
74
|
4172 cursor_font_possible_dest_types (void)
|
0
|
4173 {
|
|
4174 return IMAGE_POINTER_MASK;
|
|
4175 }
|
|
4176
|
|
4177 static void
|
|
4178 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
4179 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
4180 int dest_mask, Lisp_Object domain)
|
0
|
4181 {
|
|
4182 /* This function can GC */
|
|
4183 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
4184 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
4185 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
4186 Display *dpy;
|
|
4187 int i;
|
|
4188 CONST char *name_ext;
|
|
4189 Lisp_Object foreground, background;
|
|
4190
|
|
4191 if (!DEVICE_X_P (XDEVICE (device)))
|
|
4192 signal_simple_error ("Not an X device", device);
|
|
4193
|
|
4194 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
4195
|
|
4196 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
4197 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
4198
|
|
4199 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
4200 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
|
|
4201 signal_simple_error ("Unrecognized cursor-font name", data);
|
|
4202
|
|
4203 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
4204 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
|
|
4205 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
4206 if (NILP (foreground))
|
|
4207 foreground = pointer_fg;
|
|
4208 background = find_keyword_in_vector (instantiator, Q_background);
|
|
4209 if (NILP (background))
|
|
4210 background = pointer_bg;
|
|
4211 maybe_recolor_cursor (image_instance, foreground, background);
|
|
4212 }
|
|
4213
|
|
4214 static int
|
|
4215 x_colorize_image_instance (Lisp_Object image_instance,
|
|
4216 Lisp_Object foreground, Lisp_Object background)
|
|
4217 {
|
|
4218 struct Lisp_Image_Instance *p;
|
|
4219
|
|
4220 p = XIMAGE_INSTANCE (image_instance);
|
|
4221
|
|
4222 switch (IMAGE_INSTANCE_TYPE (p))
|
|
4223 {
|
|
4224 case IMAGE_MONO_PIXMAP:
|
|
4225 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
4226 /* Make sure there aren't two pointers to the same mask, causing
|
|
4227 it to get freed twice. */
|
|
4228 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
4229 break;
|
|
4230
|
|
4231 default:
|
|
4232 return 0;
|
|
4233 }
|
|
4234
|
|
4235 {
|
|
4236 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
219
|
4237 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
4238 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
4239 Pixmap new = XCreatePixmap (dpy, draw,
|
0
|
4240 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
4241 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
|
|
4242 XColor color;
|
|
4243 XGCValues gcv;
|
|
4244 GC gc;
|
|
4245 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
|
|
4246 gcv.foreground = color.pixel;
|
|
4247 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
|
|
4248 gcv.background = color.pixel;
|
|
4249 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
|
|
4250 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
|
|
4251 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
4252 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
4253 0, 0, 1);
|
|
4254 XFreeGC (dpy, gc);
|
|
4255 IMAGE_INSTANCE_X_PIXMAP (p) = new;
|
|
4256 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
|
|
4257 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
4258 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
4259 return 1;
|
|
4260 }
|
|
4261 }
|
|
4262
|
|
4263
|
114
|
4264 #if HAVE_SUBWINDOWS
|
0
|
4265 /************************************************************************/
|
|
4266 /* subwindows */
|
|
4267 /************************************************************************/
|
|
4268
|
|
4269 Lisp_Object Qsubwindowp;
|
|
4270
|
|
4271 static Lisp_Object
|
|
4272 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
4273 {
|
|
4274 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
4275 return sw->frame;
|
|
4276 }
|
|
4277
|
|
4278 static void
|
|
4279 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
4280 {
|
|
4281 char buf[100];
|
|
4282 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
4283 struct frame *frm = XFRAME (sw->frame);
|
|
4284
|
|
4285 if (print_readably)
|
|
4286 error ("printing unreadable object #<subwindow 0x%x>",
|
|
4287 sw->header.uid);
|
|
4288
|
|
4289 write_c_string ("#<subwindow", printcharfun);
|
|
4290 sprintf (buf, " %dx%d", sw->width, sw->height);
|
|
4291 write_c_string (buf, printcharfun);
|
|
4292
|
|
4293 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
4294 are specific to a particular frame so we want to print in their
|
|
4295 description what that frame is. */
|
185
|
4296
|
0
|
4297 write_c_string (" on #<", printcharfun);
|
|
4298 if (!FRAME_LIVE_P (frm))
|
|
4299 write_c_string ("dead", printcharfun);
|
|
4300 else if (FRAME_TTY_P (frm))
|
|
4301 write_c_string ("tty", printcharfun);
|
|
4302 else if (FRAME_X_P (frm))
|
|
4303 write_c_string ("x", printcharfun);
|
|
4304 else
|
|
4305 write_c_string ("UNKNOWN", printcharfun);
|
|
4306 write_c_string ("-frame ", printcharfun);
|
|
4307 print_internal (frm->name, printcharfun, 1);
|
|
4308 sprintf (buf, " 0x%x>", frm->header.uid);
|
|
4309 write_c_string (buf, printcharfun);
|
|
4310
|
|
4311 sprintf (buf, ") 0x%x>", sw->header.uid);
|
|
4312 write_c_string (buf, printcharfun);
|
|
4313 }
|
|
4314
|
|
4315 static void
|
|
4316 finalize_subwindow (void *header, int for_disksave)
|
|
4317 {
|
|
4318 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
|
|
4319 if (for_disksave) finalose (sw);
|
|
4320 if (sw->subwindow)
|
|
4321 {
|
|
4322 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
|
|
4323 sw->subwindow = 0;
|
|
4324 }
|
|
4325 }
|
|
4326
|
|
4327 /* subwindows are equal iff they have the same window XID */
|
|
4328 static int
|
|
4329 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
4330 {
|
|
4331 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
|
|
4332 }
|
|
4333
|
|
4334 static unsigned long
|
|
4335 subwindow_hash (Lisp_Object obj, int depth)
|
|
4336 {
|
|
4337 return XSUBWINDOW (obj)->subwindow;
|
|
4338 }
|
|
4339
|
272
|
4340 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
|
|
4341 mark_subwindow, print_subwindow,
|
|
4342 finalize_subwindow, subwindow_equal,
|
|
4343 subwindow_hash, struct Lisp_Subwindow);
|
|
4344
|
0
|
4345 /* #### PROBLEM: The display routines assume that the glyph is only
|
|
4346 being displayed in one buffer. If it is in two different buffers
|
|
4347 which are both being displayed simultaneously you will lose big time.
|
|
4348 This can be dealt with in the new redisplay. */
|
|
4349
|
70
|
4350 /* #### These are completely un-re-implemented in 19.14. Get it done
|
|
4351 for 19.15. */
|
0
|
4352
|
20
|
4353 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
|
0
|
4354 Creates a new `subwindow' object of size WIDTH x HEIGHT.
|
|
4355 The default is a window of size 1x1, which is also the minimum allowed
|
|
4356 window size. Subwindows are per-frame. A buffer being shown in two
|
|
4357 different frames will only display a subwindow glyph in the frame in
|
|
4358 which it was actually created. If two windows on the same frame are
|
|
4359 displaying the buffer then the most recently used window will actually
|
|
4360 display the window. If the frame is not specified, the selected frame
|
|
4361 is used.
|
|
4362
|
|
4363 Subwindows are not currently implemented.
|
20
|
4364 */
|
|
4365 (width, height, frame))
|
0
|
4366 {
|
|
4367 Display *dpy;
|
|
4368 Screen *xs;
|
|
4369 Window pw;
|
|
4370 struct frame *f;
|
|
4371 unsigned int iw, ih;
|
|
4372 XSetWindowAttributes xswa;
|
|
4373 Mask valueMask = 0;
|
|
4374
|
140
|
4375 error ("subwindows are not functional in 20.2; they may be again someday");
|
0
|
4376
|
|
4377 f = decode_x_frame (frame);
|
|
4378
|
|
4379 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
|
|
4380 dpy = DisplayOfScreen (xs);
|
|
4381 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
|
|
4382
|
|
4383 if (NILP (width))
|
|
4384 iw = 1;
|
|
4385 else
|
|
4386 {
|
|
4387 CHECK_INT (width);
|
|
4388 iw = XINT (width);
|
|
4389 if (iw < 1) iw = 1;
|
|
4390 }
|
|
4391 if (NILP (height))
|
|
4392 ih = 1;
|
|
4393 else
|
|
4394 {
|
|
4395 CHECK_INT (height);
|
|
4396 ih = XINT (height);
|
|
4397 if (ih < 1) ih = 1;
|
|
4398 }
|
|
4399
|
|
4400 {
|
185
|
4401 struct Lisp_Subwindow *sw =
|
|
4402 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
|
0
|
4403 Lisp_Object val;
|
|
4404 sw->frame = frame;
|
|
4405 sw->xscreen = xs;
|
|
4406 sw->parent_window = pw;
|
|
4407 sw->height = ih;
|
|
4408 sw->width = iw;
|
|
4409
|
|
4410 xswa.backing_store = Always;
|
|
4411 valueMask |= CWBackingStore;
|
|
4412
|
|
4413 xswa.colormap = DefaultColormapOfScreen (xs);
|
|
4414 valueMask |= CWColormap;
|
|
4415
|
|
4416 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
|
|
4417 InputOutput, CopyFromParent, valueMask,
|
|
4418 &xswa);
|
|
4419
|
|
4420 XSETSUBWINDOW (val, sw);
|
|
4421 return val;
|
|
4422 }
|
|
4423 }
|
|
4424
|
|
4425 /* #### Should this function exist? */
|
20
|
4426 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
|
0
|
4427 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
|
|
4428 Subwindows are not currently implemented.
|
20
|
4429 */
|
|
4430 (subwindow, property, data))
|
0
|
4431 {
|
|
4432 Atom property_atom;
|
|
4433 struct Lisp_Subwindow *sw;
|
|
4434 Display *dpy;
|
|
4435
|
|
4436 CHECK_SUBWINDOW (subwindow);
|
|
4437 CHECK_STRING (property);
|
|
4438 CHECK_STRING (data);
|
|
4439
|
|
4440 sw = XSUBWINDOW (subwindow);
|
|
4441 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
|
|
4442 (FRAME_DEVICE (XFRAME (sw->frame))));
|
|
4443
|
16
|
4444 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
|
0
|
4445 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
|
16
|
4446 PropModeReplace,
|
|
4447 XSTRING_DATA (data),
|
14
|
4448 XSTRING_LENGTH (data));
|
0
|
4449
|
272
|
4450 return property;
|
0
|
4451 }
|
|
4452
|
20
|
4453 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
0
|
4454 Return non-nil if OBJECT is a subwindow.
|
|
4455 Subwindows are not currently implemented.
|
20
|
4456 */
|
|
4457 (object))
|
0
|
4458 {
|
272
|
4459 return SUBWINDOWP (object) ? Qt : Qnil;
|
0
|
4460 }
|
|
4461
|
20
|
4462 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
|
0
|
4463 Width of SUBWINDOW.
|
|
4464 Subwindows are not currently implemented.
|
20
|
4465 */
|
|
4466 (subwindow))
|
0
|
4467 {
|
|
4468 CHECK_SUBWINDOW (subwindow);
|
272
|
4469 return make_int (XSUBWINDOW (subwindow)->width);
|
0
|
4470 }
|
|
4471
|
20
|
4472 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
|
0
|
4473 Height of SUBWINDOW.
|
|
4474 Subwindows are not currently implemented.
|
20
|
4475 */
|
|
4476 (subwindow))
|
0
|
4477 {
|
|
4478 CHECK_SUBWINDOW (subwindow);
|
272
|
4479 return make_int (XSUBWINDOW (subwindow)->height);
|
0
|
4480 }
|
|
4481
|
20
|
4482 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
|
0
|
4483 Return the xid of SUBWINDOW as a number.
|
|
4484 Subwindows are not currently implemented.
|
20
|
4485 */
|
|
4486 (subwindow))
|
0
|
4487 {
|
|
4488 CHECK_SUBWINDOW (subwindow);
|
272
|
4489 return make_int (XSUBWINDOW (subwindow)->subwindow);
|
0
|
4490 }
|
|
4491
|
20
|
4492 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
0
|
4493 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
4494 If a value is nil that parameter is not changed.
|
|
4495 Subwindows are not currently implemented.
|
20
|
4496 */
|
|
4497 (subwindow, width, height))
|
0
|
4498 {
|
|
4499 int neww, newh;
|
|
4500 struct Lisp_Subwindow *sw;
|
|
4501
|
|
4502 CHECK_SUBWINDOW (subwindow);
|
|
4503 sw = XSUBWINDOW (subwindow);
|
|
4504
|
|
4505 if (NILP (width))
|
|
4506 neww = sw->width;
|
|
4507 else
|
|
4508 neww = XINT (width);
|
|
4509
|
|
4510 if (NILP (height))
|
|
4511 newh = sw->height;
|
|
4512 else
|
|
4513 newh = XINT (height);
|
|
4514
|
|
4515 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
|
|
4516
|
|
4517 sw->height = newh;
|
|
4518 sw->width = neww;
|
|
4519
|
|
4520 return subwindow;
|
|
4521 }
|
|
4522
|
20
|
4523 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
0
|
4524 Generate a Map event for SUBWINDOW.
|
|
4525 Subwindows are not currently implemented.
|
20
|
4526 */
|
|
4527 (subwindow))
|
0
|
4528 {
|
|
4529 CHECK_SUBWINDOW (subwindow);
|
|
4530
|
|
4531 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
|
|
4532 XSUBWINDOW (subwindow)->subwindow);
|
|
4533
|
|
4534 return subwindow;
|
|
4535 }
|
114
|
4536 #endif
|
0
|
4537
|
|
4538 /************************************************************************/
|
|
4539 /* initialization */
|
|
4540 /************************************************************************/
|
|
4541
|
|
4542 void
|
|
4543 syms_of_glyphs_x (void)
|
|
4544 {
|
114
|
4545 #if HAVE_SUBWINDOWS
|
0
|
4546 defsymbol (&Qsubwindowp, "subwindowp");
|
|
4547
|
20
|
4548 DEFSUBR (Fmake_subwindow);
|
|
4549 DEFSUBR (Fchange_subwindow_property);
|
|
4550 DEFSUBR (Fsubwindowp);
|
|
4551 DEFSUBR (Fsubwindow_width);
|
|
4552 DEFSUBR (Fsubwindow_height);
|
|
4553 DEFSUBR (Fsubwindow_xid);
|
|
4554 DEFSUBR (Fresize_subwindow);
|
|
4555 DEFSUBR (Fforce_subwindow_map);
|
114
|
4556 #endif
|
0
|
4557
|
|
4558 defkeyword (&Q_mask_file, ":mask-file");
|
|
4559 defkeyword (&Q_mask_data, ":mask-data");
|
|
4560 defkeyword (&Q_hotspot_x, ":hotspot-x");
|
|
4561 defkeyword (&Q_hotspot_y, ":hotspot-y");
|
|
4562 defkeyword (&Q_foreground, ":foreground");
|
|
4563 defkeyword (&Q_background, ":background");
|
|
4564 }
|
|
4565
|
|
4566 void
|
|
4567 console_type_create_glyphs_x (void)
|
|
4568 {
|
|
4569 /* image methods */
|
|
4570
|
|
4571 CONSOLE_HAS_METHOD (x, print_image_instance);
|
|
4572 CONSOLE_HAS_METHOD (x, finalize_image_instance);
|
|
4573 CONSOLE_HAS_METHOD (x, image_instance_equal);
|
|
4574 CONSOLE_HAS_METHOD (x, image_instance_hash);
|
|
4575 CONSOLE_HAS_METHOD (x, colorize_image_instance);
|
278
|
4576 CONSOLE_HAS_METHOD (x, init_image_instance_from_eimage);
|
|
4577 CONSOLE_HAS_METHOD (x, locate_pixmap_file);
|
0
|
4578 }
|
|
4579
|
|
4580 void
|
|
4581 image_instantiator_format_create_glyphs_x (void)
|
|
4582 {
|
|
4583 /* image-instantiator types */
|
|
4584
|
|
4585 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
4586
|
|
4587 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
4588 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
4589 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
4590 IIFORMAT_HAS_METHOD (xbm, instantiate);
|
|
4591
|
|
4592 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
4593 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
4594 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
4595 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
4596 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
4597 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
4598 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
4599 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
4600
|
|
4601 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
4602
|
|
4603 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
4604 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
4605 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
4606
|
|
4607 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
4608 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
4609 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
4610
|
|
4611 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
4612
|
|
4613 IIFORMAT_HAS_METHOD (font, validate);
|
|
4614 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
4615 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
4616
|
|
4617 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
4618 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
4619 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
4620
|
251
|
4621 #ifdef HAVE_JPEG
|
|
4622 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (jpeg, "jpeg");
|
|
4623
|
|
4624 IIFORMAT_HAS_METHOD (jpeg, validate);
|
|
4625 IIFORMAT_HAS_METHOD (jpeg, normalize);
|
|
4626 IIFORMAT_HAS_METHOD (jpeg, possible_dest_types);
|
|
4627 IIFORMAT_HAS_METHOD (jpeg, instantiate);
|
|
4628
|
|
4629 IIFORMAT_VALID_KEYWORD (jpeg, Q_data, check_valid_string);
|
|
4630 IIFORMAT_VALID_KEYWORD (jpeg, Q_file, check_valid_string);
|
|
4631 #endif
|
|
4632
|
|
4633 #ifdef HAVE_GIF
|
|
4634 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gif, "gif");
|
|
4635
|
|
4636 IIFORMAT_HAS_METHOD (gif, validate);
|
|
4637 IIFORMAT_HAS_METHOD (gif, normalize);
|
|
4638 IIFORMAT_HAS_METHOD (gif, possible_dest_types);
|
|
4639 IIFORMAT_HAS_METHOD (gif, instantiate);
|
|
4640
|
|
4641 IIFORMAT_VALID_KEYWORD (gif, Q_data, check_valid_string);
|
|
4642 IIFORMAT_VALID_KEYWORD (gif, Q_file, check_valid_string);
|
|
4643 #endif
|
|
4644
|
|
4645 #ifdef HAVE_PNG
|
|
4646 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (png, "png");
|
|
4647
|
|
4648 IIFORMAT_HAS_METHOD (png, validate);
|
|
4649 IIFORMAT_HAS_METHOD (png, normalize);
|
|
4650 IIFORMAT_HAS_METHOD (png, possible_dest_types);
|
|
4651 IIFORMAT_HAS_METHOD (png, instantiate);
|
|
4652
|
|
4653 IIFORMAT_VALID_KEYWORD (png, Q_data, check_valid_string);
|
|
4654 IIFORMAT_VALID_KEYWORD (png, Q_file, check_valid_string);
|
|
4655 #endif
|
|
4656
|
|
4657 #ifdef HAVE_TIFF
|
221
|
4658 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (tiff, "tiff");
|
251
|
4659
|
|
4660 IIFORMAT_HAS_METHOD (tiff, validate);
|
|
4661 IIFORMAT_HAS_METHOD (tiff, normalize);
|
|
4662 IIFORMAT_HAS_METHOD (tiff, possible_dest_types);
|
|
4663 IIFORMAT_HAS_METHOD (tiff, instantiate);
|
|
4664
|
221
|
4665 IIFORMAT_VALID_KEYWORD (tiff, Q_data, check_valid_string);
|
|
4666 IIFORMAT_VALID_KEYWORD (tiff, Q_file, check_valid_string);
|
0
|
4667 #endif
|
|
4668
|
|
4669 #ifdef HAVE_XFACE
|
|
4670 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
4671
|
|
4672 IIFORMAT_HAS_METHOD (xface, validate);
|
|
4673 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
4674 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
4675 IIFORMAT_HAS_METHOD (xface, instantiate);
|
|
4676
|
|
4677 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
4678 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
4679 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
4680 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
4681 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
4682 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
185
|
4683 #endif
|
0
|
4684
|
122
|
4685 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
|
|
4686 "autodetect");
|
|
4687
|
|
4688 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
4689 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
4690 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
4691 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
4692
|
|
4693 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
0
|
4694 }
|
|
4695
|
|
4696 void
|
|
4697 vars_of_glyphs_x (void)
|
|
4698 {
|
251
|
4699 #ifdef HAVE_JPEG
|
|
4700 Fprovide (Qjpeg);
|
|
4701 #endif
|
|
4702
|
|
4703 #ifdef HAVE_GIF
|
|
4704 Fprovide (Qgif);
|
|
4705 #endif
|
|
4706
|
|
4707 #ifdef HAVE_PNG
|
|
4708 Fprovide (Qpng);
|
|
4709 #endif
|
|
4710
|
|
4711 #ifdef HAVE_TIFF
|
|
4712 Fprovide (Qtiff);
|
|
4713 #endif
|
|
4714
|
0
|
4715 #ifdef HAVE_XFACE
|
|
4716 Fprovide (Qxface);
|
185
|
4717 #endif
|
0
|
4718
|
|
4719 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
|
|
4720 A list of the directories in which X bitmap files may be found.
|
185
|
4721 If nil, this is initialized from the "*bitmapFilePath" resource.
|
0
|
4722 This is used by the `make-image-instance' function (however, note that if
|
|
4723 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
4724 */ );
|
|
4725 Vx_bitmap_file_path = Qnil;
|
|
4726 }
|
|
4727
|
|
4728 void
|
|
4729 complex_vars_of_glyphs_x (void)
|
|
4730 {
|
|
4731 #define BUILD_GLYPH_INST(variable, name) \
|
|
4732 Fadd_spec_to_specifier \
|
|
4733 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
4734 vector3 (Qxbm, Q_data, \
|
|
4735 list3 (make_int (name##_width), \
|
|
4736 make_int (name##_height), \
|
|
4737 make_ext_string (name##_bits, \
|
|
4738 sizeof (name##_bits), \
|
|
4739 FORMAT_BINARY))), \
|
|
4740 Qglobal, Qx, Qnil)
|
|
4741
|
|
4742 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
4743 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
4744 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
74
|
4745 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
0
|
4746
|
|
4747 #undef BUILD_GLYPH_INST
|
|
4748 }
|