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