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