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