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