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