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,
|
70
|
113 int dest_mask);
|
0
|
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 */
|
56
|
207 break;
|
0
|
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 */
|
56
|
226 return 0;
|
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 */
|
80
|
279 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
280 (XSTRING_BYTE (name, 0) == '.' &&
|
|
281 (XSTRING_BYTE (name, 1) == '/' ||
|
|
282 (XSTRING_BYTE (name, 1) == '.' &&
|
|
283 (XSTRING_BYTE (name, 2) == '/')))))
|
0
|
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';
|
14
|
303 subs[0].substitution = (char *) XSTRING_DATA (name);
|
0
|
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
|
74
|
987 xbm_possible_dest_types (void)
|
0
|
988 {
|
74
|
989 return
|
|
990 IMAGE_MONO_PIXMAP_MASK |
|
|
991 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
992 IMAGE_POINTER_MASK;
|
|
993 }
|
|
994
|
|
995 static void
|
|
996 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
997 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
998 int dest_mask, int width, int height,
|
|
999 /* Note that data is in ext-format! */
|
|
1000 CONST char *bits)
|
|
1001 {
|
|
1002 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
|
|
1003 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
|
|
1004 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1005 Pixmap mask = 0;
|
|
1006 CONST char *gcc_may_you_rot_in_hell;
|
|
1007
|
|
1008 if (!NILP (mask_data))
|
|
1009 {
|
|
1010 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
|
|
1011 gcc_may_you_rot_in_hell);
|
|
1012 mask =
|
|
1013 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
|
|
1014 XINT (XCAR (mask_data)),
|
|
1015 XINT (XCAR (XCDR (mask_data))),
|
|
1016 (CONST unsigned char *)
|
|
1017 gcc_may_you_rot_in_hell);
|
|
1018 }
|
|
1019
|
|
1020 init_image_instance_from_xbm_inline (ii, width, height, bits,
|
|
1021 instantiator, pointer_fg, pointer_bg,
|
|
1022 dest_mask, mask, mask_file);
|
|
1023 }
|
|
1024
|
|
1025 /* Instantiate method for XBM's. */
|
|
1026
|
|
1027 static void
|
|
1028 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1029 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
1030 int dest_mask)
|
0
|
1031 {
|
|
1032 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1033 CONST char *gcc_go_home;
|
|
1034
|
|
1035 assert (!NILP (data));
|
|
1036
|
|
1037 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
|
|
1038 gcc_go_home);
|
|
1039
|
|
1040 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1041 pointer_bg, dest_mask, XINT (XCAR (data)),
|
|
1042 XINT (XCAR (XCDR (data))), gcc_go_home);
|
|
1043 }
|
|
1044
|
|
1045
|
|
1046 #ifdef HAVE_JPEG
|
|
1047
|
|
1048 /**********************************************************************
|
|
1049 * JPEG *
|
|
1050 **********************************************************************/
|
|
1051
|
|
1052 #include "jpeglib.h"
|
|
1053 #include "jerror.h"
|
|
1054
|
74
|
1055 /* The in-core jpeg code doesn't work, so I'm avoiding it for now. -sb */
|
|
1056 #define USE_TEMP_FILES_FOR_JPEG_IMAGES 1
|
98
|
1057 #define USE_TEMP_FILES_FOR_PNG_IMAGES 1
|
74
|
1058
|
0
|
1059 static void
|
|
1060 jpeg_validate (Lisp_Object instantiator)
|
|
1061 {
|
|
1062 file_or_data_must_be_present (instantiator);
|
|
1063 }
|
|
1064
|
|
1065 static Lisp_Object
|
|
1066 jpeg_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1067 {
|
|
1068 return simple_image_type_normalize (inst, console_type, Qjpeg);
|
|
1069 }
|
|
1070
|
|
1071 static int
|
74
|
1072 jpeg_possible_dest_types (void)
|
0
|
1073 {
|
|
1074 return IMAGE_COLOR_PIXMAP_MASK;
|
|
1075 }
|
|
1076
|
|
1077 /* To survive the otherwise baffling complexity of making sure
|
|
1078 everything gets cleaned up in the presence of an error, we
|
|
1079 use an unwind_protect(). */
|
|
1080
|
|
1081 struct jpeg_unwind_data
|
|
1082 {
|
|
1083 Display *dpy;
|
|
1084 /* Stream that we need to close */
|
|
1085 FILE *instream;
|
|
1086 /* Object that holds state info for JPEG decoding */
|
|
1087 struct jpeg_decompress_struct *cinfo_ptr;
|
|
1088 /* Pixels to keep around while the image is active */
|
|
1089 unsigned long *pixels;
|
|
1090 int npixels;
|
|
1091 /* Client-side image structure */
|
|
1092 XImage *ximage;
|
|
1093 /* Tempfile to remove */
|
|
1094 char tempfile[50];
|
|
1095 int tempfile_needs_to_be_removed;
|
|
1096 };
|
|
1097
|
|
1098 static Lisp_Object
|
|
1099 jpeg_instantiate_unwind (Lisp_Object unwind_obj)
|
|
1100 {
|
|
1101 struct jpeg_unwind_data *data =
|
|
1102 (struct jpeg_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
1103
|
|
1104 free_opaque_ptr (unwind_obj);
|
|
1105 if (data->cinfo_ptr)
|
|
1106 jpeg_destroy_decompress (data->cinfo_ptr);
|
|
1107
|
|
1108 if (data->instream)
|
|
1109 fclose (data->instream);
|
|
1110
|
|
1111 if (data->tempfile_needs_to_be_removed)
|
|
1112 unlink (data->tempfile);
|
|
1113
|
|
1114 if (data->npixels > 0)
|
|
1115 {
|
|
1116 Screen *scr = DefaultScreenOfDisplay (data->dpy);
|
|
1117 Colormap cmap = DefaultColormapOfScreen (scr);
|
|
1118 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
|
|
1119 xfree (data->pixels);
|
|
1120 }
|
|
1121
|
|
1122 if (data->ximage)
|
|
1123 {
|
|
1124 if (data->ximage->data)
|
|
1125 {
|
|
1126 xfree (data->ximage->data);
|
|
1127 data->ximage->data = 0;
|
|
1128 }
|
|
1129 XDestroyImage (data->ximage);
|
|
1130 }
|
|
1131
|
|
1132 return Qnil;
|
|
1133 }
|
|
1134
|
|
1135 /*
|
|
1136 * ERROR HANDLING:
|
|
1137 *
|
|
1138 * The JPEG library's standard error handler (jerror.c) is divided into
|
|
1139 * several "methods" which you can override individually. This lets you
|
|
1140 * adjust the behavior without duplicating a lot of code, which you might
|
|
1141 * have to update with each future release.
|
|
1142 *
|
|
1143 * Our example here shows how to override the "error_exit" method so that
|
|
1144 * control is returned to the library's caller when a fatal error occurs,
|
|
1145 * rather than calling exit() as the standard error_exit method does.
|
|
1146 *
|
|
1147 * We use C's setjmp/longjmp facility to return control. This means that the
|
|
1148 * routine which calls the JPEG library must first execute a setjmp() call to
|
|
1149 * establish the return point. We want the replacement error_exit to do a
|
|
1150 * longjmp(). But we need to make the setjmp buffer accessible to the
|
|
1151 * error_exit routine. To do this, we make a private extension of the
|
|
1152 * standard JPEG error handler object. (If we were using C++, we'd say we
|
|
1153 * were making a subclass of the regular error handler.)
|
|
1154 *
|
|
1155 * Here's the extended error handler struct:
|
|
1156 */
|
|
1157
|
|
1158 struct my_jpeg_error_mgr
|
|
1159 {
|
|
1160 struct jpeg_error_mgr pub; /* "public" fields */
|
|
1161 jmp_buf setjmp_buffer; /* for return to caller */
|
|
1162 };
|
|
1163
|
|
1164 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
1165 METHODDEF(void)
|
|
1166 #else
|
|
1167 METHODDEF void
|
|
1168 #endif
|
|
1169 our_init_source (j_decompress_ptr cinfo) {
|
|
1170 }
|
|
1171
|
|
1172 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
1173 METHODDEF(boolean)
|
|
1174 #else
|
|
1175 METHODDEF boolean
|
|
1176 #endif
|
|
1177 our_fill_input_buffer (j_decompress_ptr cinfo) {
|
70
|
1178 ERREXIT(cinfo,JERR_INPUT_EOF);
|
|
1179 return FALSE;
|
0
|
1180 }
|
|
1181
|
|
1182 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
1183 METHODDEF(void)
|
|
1184 #else
|
|
1185 METHODDEF void
|
|
1186 #endif
|
|
1187 our_skip_input_data (j_decompress_ptr cinfo, long num_bytes) {
|
|
1188 }
|
|
1189
|
|
1190 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
1191 METHODDEF(void)
|
|
1192 #else
|
|
1193 METHODDEF void
|
|
1194 #endif
|
|
1195 our_term_source (j_decompress_ptr cinfo) {
|
|
1196 }
|
|
1197
|
|
1198 typedef struct {
|
|
1199 struct jpeg_source_mgr pub;
|
|
1200 } our_jpeg_source_mgr;
|
|
1201
|
|
1202 static void jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data,
|
|
1203 unsigned int len)
|
|
1204 {
|
|
1205 struct jpeg_source_mgr *src = NULL;
|
|
1206
|
|
1207 if (cinfo->src == NULL) { /* first time for this JPEG object? */
|
|
1208 cinfo->src = (struct jpeg_source_mgr *)
|
|
1209 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
|
|
1210 sizeof(our_jpeg_source_mgr));
|
|
1211 src = (struct jpeg_source_mgr *) cinfo->src;
|
|
1212 src->next_input_byte = data;
|
|
1213 }
|
|
1214 src = (struct jpeg_source_mgr *) cinfo->src;
|
|
1215 src->init_source = our_init_source;
|
|
1216 src->fill_input_buffer = our_fill_input_buffer;
|
|
1217 src->skip_input_data = our_skip_input_data;
|
|
1218 src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
|
|
1219 src->term_source = our_term_source;
|
|
1220 src->bytes_in_buffer = len;
|
|
1221 src->next_input_byte = data;
|
|
1222 }
|
|
1223
|
|
1224 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
|
|
1225 METHODDEF(void)
|
|
1226 #else
|
|
1227 METHODDEF void
|
|
1228 #endif
|
|
1229 my_jpeg_error_exit (j_common_ptr cinfo)
|
|
1230 {
|
|
1231 /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
|
|
1232 struct my_jpeg_error_mgr *myerr = (struct my_jpeg_error_mgr *) cinfo->err;
|
|
1233
|
|
1234 /* Return control to the setjmp point */
|
|
1235 longjmp (myerr->setjmp_buffer, 1);
|
|
1236 }
|
|
1237
|
|
1238 /* The code in this routine is based on example.c from the JPEG library
|
|
1239 source code and from gif_instantiate() */
|
|
1240 static void
|
|
1241 jpeg_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1242 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
1243 int dest_mask)
|
0
|
1244 {
|
|
1245 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1246 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1247 Display *dpy;
|
|
1248 Screen *scr;
|
|
1249 /* It is OK for the unwind data to be local to this function,
|
|
1250 because the unwind-protect is always executed when this
|
|
1251 stack frame is still valid. */
|
|
1252 struct jpeg_unwind_data unwind;
|
|
1253 int speccount = specpdl_depth ();
|
|
1254
|
|
1255 /* This struct contains the JPEG decompression parameters and pointers to
|
|
1256 * working space (which is allocated as needed by the JPEG library).
|
|
1257 */
|
|
1258 struct jpeg_decompress_struct cinfo;
|
|
1259 /* We use our private extension JPEG error handler.
|
|
1260 * Note that this struct must live as long as the main JPEG parameter
|
|
1261 * struct, to avoid dangling-pointer problems.
|
|
1262 */
|
|
1263 struct my_jpeg_error_mgr jerr;
|
|
1264
|
|
1265 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1266 signal_simple_error ("Not an X device", device);
|
|
1267
|
|
1268 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1269 scr = DefaultScreenOfDisplay (dpy);
|
|
1270
|
|
1271 /* Step -1: First record our unwind-protect, which will clean up after
|
|
1272 any exit, normal or not */
|
|
1273
|
|
1274 memset (&unwind, 0, sizeof (unwind));
|
|
1275 unwind.dpy = dpy;
|
|
1276 record_unwind_protect (jpeg_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
1277
|
74
|
1278 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
|
0
|
1279 /* Step 0: Write out to a temp file.
|
|
1280
|
|
1281 The JPEG routines require you to read from a file unless
|
|
1282 you provide your own special input handlers, which I don't
|
|
1283 feel like doing. */
|
|
1284 {
|
|
1285 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1286
|
|
1287 assert (!NILP (data));
|
|
1288
|
|
1289 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
1290 unwind.tempfile_needs_to_be_removed = 1;
|
|
1291
|
|
1292 /* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
|
|
1293 * requires it in order to read binary files.
|
|
1294 */
|
|
1295
|
|
1296 if ((unwind.instream = fopen (unwind.tempfile, "r")) == NULL)
|
|
1297 report_file_error ("Opening JPEG temp file",
|
|
1298 list1 (build_string (unwind.tempfile)));
|
|
1299 }
|
|
1300 #endif
|
|
1301
|
|
1302 /* Step 1: allocate and initialize JPEG decompression object */
|
|
1303
|
|
1304 /* We set up the normal JPEG error routines, then override error_exit. */
|
|
1305 cinfo.err = jpeg_std_error (&jerr.pub);
|
|
1306 jerr.pub.error_exit = my_jpeg_error_exit;
|
|
1307
|
|
1308 /* Establish the setjmp return context for my_error_exit to use. */
|
|
1309 if (setjmp (jerr.setjmp_buffer))
|
|
1310 {
|
|
1311 /* If we get here, the JPEG code has signaled an error.
|
|
1312 * We need to clean up the JPEG object, close the input file, and return.
|
|
1313 */
|
|
1314
|
|
1315 {
|
|
1316 Lisp_Object errstring;
|
|
1317 char buffer[JMSG_LENGTH_MAX];
|
|
1318
|
|
1319 /* Create the message */
|
|
1320 (*cinfo.err->format_message) ((j_common_ptr) &cinfo, buffer);
|
|
1321 errstring = build_string (buffer);
|
|
1322
|
|
1323 signal_simple_error_2 ("JPEG decoding error",
|
|
1324 errstring, instantiator);
|
|
1325 }
|
|
1326 }
|
|
1327
|
|
1328 /* Now we can initialize the JPEG decompression object. */
|
|
1329 jpeg_create_decompress (&cinfo);
|
|
1330 unwind.cinfo_ptr = &cinfo;
|
|
1331
|
|
1332 /* Step 2: specify data source (eg, a file) */
|
|
1333
|
74
|
1334 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
|
0
|
1335 jpeg_stdio_src (&cinfo, unwind.instream);
|
|
1336 #else
|
|
1337 {
|
|
1338 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1339 Extbyte *bytes;
|
|
1340 Extcount len;
|
|
1341
|
|
1342 /* #### This is a definite problem under Mule due to the amount of
|
|
1343 stack data it might allocate. Need to be able to convert and
|
|
1344 write out to a file. */
|
|
1345 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
|
1346 jpeg_memory_src (&cinfo, bytes, len);
|
|
1347 }
|
|
1348 #endif
|
|
1349
|
|
1350 /* Step 3: read file parameters with jpeg_read_header() */
|
|
1351
|
|
1352 (void) jpeg_read_header (&cinfo, TRUE);
|
|
1353 /* We can ignore the return value from jpeg_read_header since
|
|
1354 * (a) suspension is not possible with the stdio data source, and
|
|
1355 * (b) we passed TRUE to reject a tables-only JPEG file as an error.
|
|
1356 * See libjpeg.doc for more info.
|
|
1357 */
|
|
1358
|
|
1359 /* Step 4: set parameters for decompression. */
|
|
1360
|
|
1361 /* We request that the JPEG file be automatically quantized into
|
|
1362 8-bit color in case it's not already (many JPEGs are stored in
|
|
1363 24-bit color). "Two-pass quantize" means that the colormap
|
|
1364 is determined on-the-fly for this particular image rather than
|
|
1365 quantizing to a supplied colormap. We can get away with this
|
|
1366 because we then use allocate_nearest_color().
|
|
1367
|
|
1368 #### Note of course that this is not the most color-effective
|
|
1369 way of doing things -- we could quantize an image that has
|
|
1370 lots of very similar colors, and eat up the colormap with these
|
|
1371 (useless to other images) colors. Unfortunately I don't think
|
|
1372 there's any "general" way of maximizing the overall image
|
|
1373 quality of lots of images, given that we don't know the
|
|
1374 colors of the images until we come across each one. Best we
|
|
1375 could do would be various sorts of heuristics, which I don't
|
|
1376 feel like dealing with now. A better scheme would be the
|
|
1377 way things are done under MS Windows, where the colormap is
|
|
1378 dynamically adjusted for various applications; but that kind
|
|
1379 of thing would have to be provided by X, which it isn't. */
|
|
1380
|
|
1381 cinfo.quantize_colors = TRUE;
|
|
1382 cinfo.two_pass_quantize = TRUE;
|
|
1383 cinfo.colormap = NULL;
|
|
1384
|
|
1385 /* Step 5: Start decompressor */
|
|
1386
|
|
1387 (void) jpeg_start_decompress (&cinfo);
|
|
1388 /* We can ignore the return value since suspension is not possible
|
|
1389 * with the stdio data source.
|
|
1390 */
|
|
1391
|
|
1392 /* At this point we know the size of the image and the colormap. */
|
|
1393
|
|
1394 /* Step 5.33: Allocate the colors */
|
|
1395 {
|
|
1396 int i;
|
|
1397
|
|
1398 /* Just in case the image contains out-of-range pixels, we go
|
|
1399 ahead and allocate space for all of them. */
|
|
1400 unwind.pixels = (unsigned long *) xmalloc (256 * sizeof (unsigned long));
|
|
1401 unwind.npixels = cinfo.actual_number_of_colors;
|
|
1402
|
|
1403 for (i = 0; i < 256; i++)
|
|
1404 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
|
|
1405
|
|
1406 /* Allocate pixels for the various colors. */
|
|
1407 for (i = 0; i < unwind.npixels; i++)
|
|
1408 {
|
|
1409 XColor color;
|
|
1410 int ri, gi, bi;
|
|
1411
|
|
1412 ri = 0;
|
|
1413 gi = cinfo.out_color_components > 1 ? 1 : 0;
|
|
1414 bi = cinfo.out_color_components > 2 ? 2 : 0;
|
|
1415
|
|
1416 /* Ok... apparently, an entry of cinfo.colormap can be NULL if
|
|
1417 there are no bits of that color in the image. How incredibly
|
|
1418 gross. Wouldn't it be nice to have exceptions!? */
|
|
1419 color.red = cinfo.colormap[ri] ? cinfo.colormap[ri][i] << 8 : 0;
|
|
1420 color.green = cinfo.colormap[gi] ? cinfo.colormap[gi][i] << 8 : 0;
|
|
1421 color.blue = cinfo.colormap[bi] ? cinfo.colormap[bi][i] << 8 : 0;
|
|
1422 color.flags = DoRed | DoGreen | DoBlue;
|
|
1423
|
|
1424 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr), &color);
|
|
1425 unwind.pixels[i] = color.pixel;
|
|
1426 }
|
|
1427 }
|
|
1428
|
|
1429 /* Step 5.66: Create the image */
|
|
1430 {
|
|
1431 int height = cinfo.output_height;
|
|
1432 int width = cinfo.output_width;
|
|
1433 int depth;
|
|
1434 int bitmap_pad;
|
|
1435
|
|
1436 depth = DefaultDepthOfScreen (scr);
|
|
1437
|
|
1438 /* first get bitmap_pad (from XPM) */
|
|
1439 if (depth > 16)
|
|
1440 bitmap_pad = 32;
|
|
1441 else if (depth > 8)
|
|
1442 bitmap_pad = 16;
|
|
1443 else
|
|
1444 bitmap_pad = 8;
|
|
1445
|
|
1446 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
|
|
1447 depth, ZPixmap, 0, 0, width, height,
|
|
1448 bitmap_pad, 0);
|
|
1449
|
|
1450 if (!unwind.ximage)
|
|
1451 signal_simple_error ("Unable to create X image struct", instantiator);
|
|
1452
|
|
1453 /* now that bytes_per_line must have been set properly alloc data */
|
|
1454 unwind.ximage->data =
|
|
1455 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
|
|
1456 }
|
|
1457
|
|
1458 /* Step 6: Read in the data and put into image */
|
|
1459 {
|
|
1460 JSAMPARRAY row_buffer; /* Output row buffer */
|
|
1461 int row_stride; /* physical row width in output buffer */
|
|
1462
|
|
1463 /* We may need to do some setup of our own at this point before reading
|
|
1464 * the data. After jpeg_start_decompress() we have the correct scaled
|
|
1465 * output image dimensions available, as well as the output colormap
|
|
1466 * if we asked for color quantization.
|
|
1467 * In this example, we need to make an output work buffer of the right size.
|
|
1468 */
|
|
1469 /* JSAMPLEs per row in output buffer.
|
|
1470 Since we asked for quantized output, cinfo.output_components
|
|
1471 will always be 1. */
|
|
1472 row_stride = cinfo.output_width * cinfo.output_components;
|
|
1473 /* Make a one-row-high sample array that will go away when done
|
|
1474 with image */
|
|
1475 row_buffer = ((*cinfo.mem->alloc_sarray)
|
|
1476 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
|
|
1477
|
|
1478 /* Here we use the library's state variable cinfo.output_scanline as the
|
|
1479 * loop counter, so that we don't have to keep track ourselves.
|
|
1480 */
|
|
1481 while (cinfo.output_scanline < cinfo.output_height)
|
|
1482 {
|
|
1483 int i;
|
|
1484 int scanline = cinfo.output_scanline;
|
|
1485
|
|
1486 /* jpeg_read_scanlines expects an array of pointers to scanlines.
|
|
1487 * Here the array is only one element long, but you could ask for
|
|
1488 * more than one scanline at a time if that's more convenient.
|
|
1489 */
|
|
1490 (void) jpeg_read_scanlines (&cinfo, row_buffer, 1);
|
|
1491
|
|
1492 for (i = 0; i < cinfo.output_width; i++)
|
|
1493 XPutPixel (unwind.ximage, i, scanline,
|
|
1494 /* Let's make sure we avoid getting bit like
|
|
1495 what happened for GIF's. It's probably the
|
|
1496 case that JSAMPLE's are unsigned chars as
|
|
1497 opposed to chars, but you never know.
|
|
1498
|
|
1499 (They could even be shorts if the library
|
|
1500 was compiled with 12-bit samples -- ####
|
|
1501 We should deal with this possibility) */
|
|
1502 unwind.pixels[(unsigned char) row_buffer[0][i]]);
|
|
1503 }
|
|
1504 }
|
|
1505
|
|
1506 /* Step 6.5: Create the pixmap and set up the image instance */
|
|
1507 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
|
1508 unwind.pixels, unwind.npixels,
|
|
1509 instantiator);
|
|
1510
|
|
1511 /* Step 7: Finish decompression */
|
|
1512
|
|
1513 (void) jpeg_finish_decompress (&cinfo);
|
|
1514 /* We can ignore the return value since suspension is not possible
|
|
1515 * with the stdio data source.
|
|
1516 */
|
|
1517
|
|
1518 /* And we're done!
|
|
1519
|
|
1520 Now that we've succeeded, we don't want the pixels
|
|
1521 freed right now. They're kept around in the image instance
|
|
1522 structure until it's destroyed. */
|
|
1523 unwind.npixels = 0;
|
|
1524
|
|
1525 /* This will clean up everything else. */
|
|
1526 unbind_to (speccount, Qnil);
|
|
1527 }
|
|
1528
|
|
1529 #endif /* HAVE_JPEG */
|
|
1530
|
|
1531
|
|
1532 #ifdef HAVE_GIF
|
|
1533
|
|
1534 /**********************************************************************
|
|
1535 * GIF *
|
|
1536 **********************************************************************/
|
|
1537
|
|
1538 #include "gif_lib.h" /* This is in our own source tree */
|
|
1539
|
|
1540 static void
|
|
1541 gif_validate (Lisp_Object instantiator)
|
|
1542 {
|
|
1543 file_or_data_must_be_present (instantiator);
|
|
1544 }
|
|
1545
|
|
1546 static Lisp_Object
|
|
1547 gif_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1548 {
|
|
1549 return simple_image_type_normalize (inst, console_type, Qgif);
|
|
1550 }
|
|
1551
|
|
1552 static int
|
74
|
1553 gif_possible_dest_types (void)
|
0
|
1554 {
|
|
1555 return IMAGE_COLOR_PIXMAP_MASK;
|
|
1556 }
|
|
1557
|
|
1558 /* To survive the otherwise baffling complexity of making sure
|
|
1559 everything gets cleaned up in the presence of an error, we
|
|
1560 use an unwind_protect(). */
|
|
1561
|
|
1562 struct gif_unwind_data
|
|
1563 {
|
|
1564 Display *dpy;
|
|
1565 /* Object that holds the decoded data from a GIF file */
|
|
1566 GifFileType *giffile;
|
|
1567 /* Pixels to keep around while the image is active */
|
|
1568 unsigned long *pixels;
|
|
1569 int npixels;
|
|
1570 /* Client-side image structure */
|
|
1571 XImage *ximage;
|
|
1572 /* Tempfile to remove */
|
|
1573 char tempfile[50];
|
|
1574 int tempfile_needs_to_be_removed;
|
|
1575 };
|
|
1576
|
|
1577 static Lisp_Object
|
|
1578 gif_instantiate_unwind (Lisp_Object unwind_obj)
|
|
1579 {
|
|
1580 struct gif_unwind_data *data =
|
|
1581 (struct gif_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
1582
|
|
1583 free_opaque_ptr (unwind_obj);
|
|
1584 if (data->giffile)
|
|
1585 DGifCloseFile (data->giffile);
|
|
1586 if (data->tempfile_needs_to_be_removed)
|
|
1587 unlink (data->tempfile);
|
|
1588 if (data->npixels > 0)
|
|
1589 {
|
|
1590 Screen *scr = DefaultScreenOfDisplay (data->dpy);
|
|
1591 Colormap cmap = DefaultColormapOfScreen (scr);
|
|
1592 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
|
|
1593 xfree (data->pixels);
|
|
1594 }
|
|
1595 if (data->ximage)
|
|
1596 {
|
|
1597 if (data->ximage->data)
|
|
1598 {
|
|
1599 xfree (data->ximage->data);
|
|
1600 data->ximage->data = 0;
|
|
1601 }
|
|
1602 XDestroyImage (data->ximage);
|
|
1603 }
|
|
1604
|
|
1605 return Qnil;
|
|
1606 }
|
|
1607
|
|
1608 /* We provide our own version of DGifSlurp() because the standardly
|
|
1609 provided one doesn't handle interlaced GIFs. This is based on
|
|
1610 code in gif2x11.c. */
|
|
1611
|
|
1612 /* Return value is GIF_ERROR, GIF_OK, or -1.
|
|
1613 #### We are using "forbidden" knowledge that neither of these
|
|
1614 constants is -1. */
|
|
1615
|
|
1616 static int
|
|
1617 our_own_dgif_slurp_from_gif2x11_c (GifFileType *GifFile)
|
|
1618 {
|
|
1619 int i, j, Row, Col, Width, Height;
|
|
1620 int ExtCode, Count;
|
|
1621 GifRecordType RecordType;
|
|
1622 GifByteType *Extension;
|
|
1623 SavedImage *sp = NULL;
|
|
1624 static int InterlacedOffset[] = { 0, 4, 2, 1 };
|
|
1625 static int InterlacedJumps[] = { 8, 8, 4, 2 };
|
|
1626
|
|
1627 GifPixelType *ScreenBuffer =
|
|
1628 (GifPixelType *) xmalloc (GifFile->SHeight * GifFile->SWidth *
|
|
1629 sizeof (GifPixelType));
|
|
1630 GifFile->SavedImages = (SavedImage *) xmalloc (sizeof(SavedImage));
|
|
1631
|
|
1632 for (i = 0; i < GifFile->SHeight * GifFile->SWidth; i++)
|
|
1633 ScreenBuffer[i] = GifFile->SBackGroundColor;
|
|
1634
|
|
1635 /* Scan the content of the GIF file and load the image(s) in: */
|
|
1636 do
|
|
1637 {
|
|
1638 if (DGifGetRecordType (GifFile, &RecordType) == GIF_ERROR)
|
|
1639 return GIF_ERROR;
|
|
1640
|
|
1641 switch (RecordType)
|
|
1642 {
|
|
1643 case IMAGE_DESC_RECORD_TYPE:
|
|
1644 if (DGifGetImageDesc (GifFile) == GIF_ERROR)
|
|
1645 return GIF_ERROR;
|
|
1646
|
|
1647 sp = &GifFile->SavedImages[GifFile->ImageCount-1];
|
|
1648 Row = GifFile->Image.Top; /* Image Position relative to Screen. */
|
|
1649 Col = GifFile->Image.Left;
|
|
1650 Width = GifFile->Image.Width;
|
|
1651 Height = GifFile->Image.Height;
|
|
1652 if (GifFile->Image.Left + GifFile->Image.Width > GifFile->SWidth ||
|
|
1653 GifFile->Image.Top + GifFile->Image.Height > GifFile->SHeight)
|
|
1654 return -1;
|
|
1655
|
|
1656 sp->RasterBits = (GifPixelType*) xmalloc(Width * Height *
|
|
1657 sizeof (GifPixelType));
|
|
1658
|
|
1659 if (GifFile->Image.Interlace)
|
|
1660 {
|
|
1661 /* Need to perform 4 passes on the images: */
|
|
1662 for (Count = i = 0; i < 4; i++)
|
|
1663 for (j = Row + InterlacedOffset[i]; j < Row + Height;
|
|
1664 j += InterlacedJumps[i])
|
|
1665 {
|
|
1666 if (DGifGetLine (GifFile, &sp->RasterBits[j * Width + Col],
|
|
1667 Width) == GIF_ERROR)
|
|
1668 return GIF_ERROR;
|
|
1669 }
|
|
1670 }
|
|
1671 else
|
|
1672 {
|
|
1673 for (i = 0; i < Height; i++)
|
|
1674 {
|
|
1675 if (DGifGetLine (GifFile,
|
|
1676 &sp->RasterBits[(Row++) * Width + Col],
|
|
1677 Width) == GIF_ERROR)
|
|
1678 return GIF_ERROR;
|
|
1679 }
|
|
1680 }
|
|
1681 break;
|
|
1682
|
|
1683 case EXTENSION_RECORD_TYPE:
|
|
1684 /* Skip any extension blocks in file: */
|
|
1685 if (DGifGetExtension (GifFile, &ExtCode, &Extension) == GIF_ERROR)
|
|
1686 return GIF_ERROR;
|
|
1687
|
|
1688 while (Extension != NULL)
|
|
1689 {
|
|
1690 if (DGifGetExtensionNext (GifFile, &Extension) == GIF_ERROR)
|
|
1691 return GIF_ERROR;
|
|
1692 }
|
|
1693 break;
|
|
1694
|
|
1695 case TERMINATE_RECORD_TYPE:
|
|
1696 break;
|
|
1697
|
|
1698 default: /* Should be traps by DGifGetRecordType. */
|
|
1699 break;
|
|
1700 }
|
|
1701 }
|
|
1702 while (RecordType != TERMINATE_RECORD_TYPE);
|
|
1703
|
|
1704 return GIF_OK;
|
|
1705 }
|
|
1706
|
|
1707 static void
|
|
1708 gif_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1709 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
1710 int dest_mask)
|
0
|
1711 {
|
|
1712 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1713 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1714 Display *dpy;
|
|
1715 Screen *scr;
|
|
1716 /* It is OK for the unwind data to be local to this function,
|
|
1717 because the unwind-protect is always executed when this
|
|
1718 stack frame is still valid. */
|
|
1719 struct gif_unwind_data unwind;
|
|
1720 int speccount = specpdl_depth ();
|
|
1721
|
|
1722 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1723 signal_simple_error ("Not an X device", device);
|
|
1724
|
|
1725 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1726 scr = DefaultScreenOfDisplay (dpy);
|
|
1727
|
|
1728 memset (&unwind, 0, sizeof (unwind));
|
|
1729 unwind.dpy = dpy;
|
|
1730 record_unwind_protect (gif_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
1731
|
|
1732 /* 1. Now decode the data. */
|
|
1733
|
|
1734 /* #### The GIF routines currently require that you read from a file,
|
|
1735 so write out to a temp file. We should change this. */
|
|
1736 {
|
|
1737 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1738
|
|
1739 assert (!NILP (data));
|
|
1740
|
|
1741 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
1742 unwind.tempfile_needs_to_be_removed = 1;
|
|
1743
|
|
1744 /* Then slurp the image into memory, decoding along the way.
|
|
1745 The result is the image in a simple one-byte-per-pixel
|
|
1746 format (#### the GIF routines only support 8-bit GIFs,
|
|
1747 it appears). */
|
|
1748 unwind.giffile = DGifOpenFileName (unwind.tempfile);
|
|
1749 if (unwind.giffile == NULL)
|
|
1750 {
|
|
1751 gif_decode_error:
|
|
1752 signal_simple_error ("Unable to decode GIF",
|
|
1753 build_string (EmacsPrintGifError ()));
|
|
1754 }
|
70
|
1755 #if 1
|
0
|
1756 if (our_own_dgif_slurp_from_gif2x11_c(unwind.giffile) != GIF_OK)
|
|
1757 #else
|
70
|
1758 /* DGifSlurp() doesn't handle interlaced files. */
|
0
|
1759 if (DGifSlurp (unwind.giffile) != GIF_OK)
|
|
1760 #endif
|
|
1761 goto gif_decode_error;
|
|
1762 }
|
|
1763
|
|
1764 /* 2. Now allocate the colors for the image. */
|
|
1765 {
|
|
1766 int i;
|
|
1767 ColorMapObject *cmap = unwind.giffile->SColorMap;
|
|
1768 /* Just in case the image contains out-of-range pixels, we go
|
|
1769 ahead and allocate space for all of them. */
|
|
1770 unwind.pixels = (unsigned long *) xmalloc (256 * sizeof (unsigned long));
|
|
1771 unwind.npixels = cmap->ColorCount;
|
|
1772
|
|
1773 for (i = 0; i < 256; i++)
|
|
1774 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
|
|
1775
|
|
1776 /* Allocate pixels for the various colors. */
|
|
1777 for (i = 0; i < cmap->ColorCount; i++)
|
|
1778 {
|
|
1779 XColor color;
|
|
1780
|
|
1781 color.red = cmap->Colors[i].Red << 8;
|
|
1782 color.green = cmap->Colors[i].Green << 8;
|
|
1783 color.blue = cmap->Colors[i].Blue << 8;
|
|
1784 color.flags = DoRed | DoGreen | DoBlue;
|
|
1785
|
|
1786 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr), &color);
|
|
1787 unwind.pixels[i] = color.pixel;
|
|
1788 }
|
|
1789 }
|
|
1790
|
|
1791 /* 3. Now create the image */
|
|
1792 {
|
|
1793 int height = unwind.giffile->SHeight;
|
|
1794 int width = unwind.giffile->SWidth;
|
|
1795 int depth;
|
|
1796 int bitmap_pad;
|
70
|
1797 int i, j;
|
0
|
1798
|
|
1799 depth = DefaultDepthOfScreen (scr);
|
|
1800
|
|
1801 /* first get bitmap_pad (from XPM) */
|
|
1802 if (depth > 16)
|
|
1803 bitmap_pad = 32;
|
|
1804 else if (depth > 8)
|
|
1805 bitmap_pad = 16;
|
|
1806 else
|
|
1807 bitmap_pad = 8;
|
|
1808
|
|
1809 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
|
|
1810 depth, ZPixmap, 0, 0, width, height,
|
|
1811 bitmap_pad, 0);
|
|
1812
|
|
1813 if (!unwind.ximage)
|
|
1814 signal_simple_error ("Unable to create X image struct", instantiator);
|
|
1815
|
|
1816 /* now that bytes_per_line must have been set properly alloc data */
|
|
1817 unwind.ximage->data =
|
|
1818 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
|
|
1819
|
|
1820 /* write the data --
|
|
1821 #### XPutPixel() is a client-side-only function but could
|
|
1822 still be slow. Another possibility is to just convert to
|
|
1823 XPM format and use the Xpm routines, which optimize this
|
|
1824 stuff; but it's doubtful that this will be faster in the
|
|
1825 long run, what with all the XPM overhead. If this proves
|
|
1826 to be a bottleneck here, maybe we should just copy the
|
|
1827 optimization routines from XPM (they're in turn mostly
|
|
1828 copied from the Xlib source code). */
|
|
1829
|
|
1830 for (i = 0; i < height; i++)
|
70
|
1831 for (j = 0; j < width; j++)
|
|
1832 XPutPixel (unwind.ximage, j, i,
|
|
1833 unwind.pixels[(unsigned char)
|
|
1834 /* incorrect signed declaration
|
|
1835 of RasterBits[] */
|
|
1836 (unwind.giffile->SavedImages->
|
|
1837 RasterBits[i * width + j])]);
|
0
|
1838 }
|
|
1839
|
|
1840 /* 4. Now create the pixmap and set up the image instance */
|
|
1841 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
|
1842 unwind.pixels, unwind.npixels,
|
|
1843 instantiator);
|
|
1844 /* Now that we've succeeded, we don't want the pixels
|
|
1845 freed right now. They're kept around in the image instance
|
|
1846 structure until it's destroyed. */
|
|
1847 unwind.npixels = 0;
|
|
1848 unbind_to (speccount, Qnil);
|
|
1849 }
|
|
1850
|
|
1851 #endif /* HAVE_GIF */
|
|
1852
|
|
1853
|
|
1854 #ifdef HAVE_PNG
|
|
1855
|
70
|
1856 #include <png.h>
|
|
1857
|
0
|
1858 /**********************************************************************
|
|
1859 * PNG *
|
|
1860 **********************************************************************/
|
|
1861 static void
|
|
1862 png_validate (Lisp_Object instantiator)
|
|
1863 {
|
|
1864 file_or_data_must_be_present (instantiator);
|
|
1865 }
|
|
1866
|
|
1867 static Lisp_Object
|
|
1868 png_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1869 {
|
|
1870 return simple_image_type_normalize (inst, console_type, Qpng);
|
|
1871 }
|
|
1872
|
|
1873 static int
|
74
|
1874 png_possible_dest_types (void)
|
0
|
1875 {
|
|
1876 return IMAGE_COLOR_PIXMAP_MASK;
|
|
1877 }
|
|
1878
|
98
|
1879 #if !defined (USE_TEMP_FILES_FOR_PNG_IMAGES) && (PNG_LIBPNG_VER >= 87)
|
0
|
1880 struct png_memory_storage
|
|
1881 {
|
|
1882 Extbyte *bytes; /* The data */
|
|
1883 Extcount len; /* How big is it? */
|
|
1884 int index; /* Where are we? */
|
|
1885 };
|
|
1886
|
|
1887 static void png_read_from_memory(png_structp png_ptr, png_bytep data,
|
|
1888 png_uint_32 length)
|
|
1889 {
|
|
1890 struct png_memory_storage *tbr =
|
|
1891 (struct png_memory_storage *) png_get_io_ptr (png_ptr);
|
|
1892
|
|
1893 if (length > (tbr->len - tbr->index))
|
2
|
1894 png_error (png_ptr, (png_const_charp) "Read Error");
|
0
|
1895 memcpy(data,tbr->bytes + tbr->index,length);
|
|
1896 tbr->index = tbr->index + length;
|
|
1897 }
|
98
|
1898 #endif /* !USE_TEMP_FILES_FOR_PNG_IMAGESS || PNG_LIBPNG_VER >= 87 */
|
0
|
1899
|
|
1900 struct png_unwind_data
|
|
1901 {
|
|
1902 Display *dpy;
|
|
1903 FILE *instream;
|
|
1904 png_struct *png_ptr;
|
|
1905 png_info *info_ptr;
|
|
1906 unsigned long *pixels;
|
|
1907 int npixels;
|
|
1908 XImage *ximage;
|
|
1909 char tempfile[50];
|
|
1910 int tempfile_needs_to_be_removed;
|
|
1911 };
|
|
1912
|
|
1913 static Lisp_Object
|
|
1914 png_instantiate_unwind (Lisp_Object unwind_obj)
|
|
1915 {
|
|
1916 struct png_unwind_data *data =
|
|
1917 (struct png_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
1918
|
|
1919 free_opaque_ptr (unwind_obj);
|
|
1920 if (data->png_ptr)
|
|
1921 png_read_destroy (data->png_ptr, data->info_ptr, (png_info *) NULL);
|
|
1922 if (data->instream)
|
|
1923 fclose (data->instream);
|
|
1924 if (data->tempfile_needs_to_be_removed)
|
|
1925 unlink (data->tempfile);
|
|
1926 if (data->npixels > 0)
|
|
1927 {
|
|
1928 Screen *scr = DefaultScreenOfDisplay (data->dpy);
|
|
1929 Colormap cmap = DefaultColormapOfScreen (scr);
|
|
1930 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
|
|
1931 xfree (data->pixels);
|
|
1932 }
|
|
1933
|
|
1934 if (data->ximage)
|
|
1935 {
|
|
1936 if (data->ximage->data)
|
|
1937 {
|
|
1938 xfree (data->ximage->data);
|
|
1939 data->ximage->data = 0;
|
|
1940 }
|
|
1941 XDestroyImage (data->ximage);
|
|
1942 }
|
|
1943
|
|
1944 return Qnil;
|
|
1945 }
|
|
1946
|
2
|
1947 /* This doesn't appear to be used. */
|
|
1948 #if 0
|
0
|
1949 #define get_png_val(p) _get_png_val (&(p), info_ptr.bit_depth)
|
|
1950 png_uint_16
|
|
1951 _get_png_val (png_byte **pp, int bit_depth)
|
|
1952 {
|
|
1953 png_uint_16 c = 0;
|
|
1954
|
|
1955 if (bit_depth == 16) {
|
|
1956 c = (*((*pp)++)) << 8;
|
|
1957 }
|
|
1958 c |= (*((*pp)++));
|
|
1959
|
|
1960 return c;
|
|
1961 }
|
2
|
1962 #endif
|
0
|
1963
|
|
1964 static void
|
|
1965 png_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1966 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
1967 int dest_mask)
|
0
|
1968 {
|
|
1969 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1970 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1971 Display *dpy;
|
|
1972 Screen *scr;
|
|
1973 struct png_unwind_data unwind;
|
|
1974 int speccount = specpdl_depth ();
|
|
1975
|
|
1976 /* PNG variables */
|
|
1977 png_struct *png_ptr;
|
|
1978 png_info *info_ptr;
|
|
1979
|
|
1980 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1981 signal_simple_error ("Not an X device", device);
|
|
1982
|
|
1983 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1984 scr = DefaultScreenOfDisplay (dpy);
|
|
1985
|
|
1986 png_ptr = (png_struct *) xmalloc (sizeof (png_struct));
|
|
1987 info_ptr = (png_info *) xmalloc (sizeof (png_info));
|
|
1988
|
|
1989 memset (&unwind, 0, sizeof (unwind));
|
|
1990 unwind.png_ptr = png_ptr;
|
|
1991 unwind.info_ptr = info_ptr;
|
|
1992 unwind.dpy = dpy;
|
|
1993
|
|
1994 record_unwind_protect (png_instantiate_unwind, make_opaque_ptr (&unwind));
|
|
1995
|
|
1996 /* This code is a mixture of stuff from Ben's GIF/JPEG stuff from
|
|
1997 this file, example.c from the libpng 0.81 distribution, and the
|
|
1998 pngtopnm sources. -WMP-
|
|
1999 */
|
98
|
2000 #if defined (USE_TEMP_FILES_FOR_PNG_IMAGES) || (PNG_LIBPNG_VER < 87)
|
0
|
2001 /* Write out to a temp file - we really should take the time to
|
|
2002 write appropriate memory bound IO stuff, but I am just trying
|
|
2003 to get the stupid thing working right now.
|
|
2004 */
|
|
2005 {
|
|
2006 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2007
|
|
2008 assert (!NILP (data));
|
|
2009
|
|
2010 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
2011 unwind.tempfile_needs_to_be_removed = 1;
|
|
2012
|
|
2013 if ((unwind.instream = fopen (unwind.tempfile, "rb")) == NULL)
|
|
2014 report_file_error ("Opening PNG temp file",
|
|
2015 list1 (build_string (unwind.tempfile)));
|
|
2016 }
|
|
2017 #else
|
|
2018 /* Nothing */
|
|
2019 #endif
|
|
2020
|
|
2021 /* Set the jmp_buf reurn context for png_error ... if this returns !0, then
|
|
2022 we ran into a problem somewhere, and need to clean up after ourselves. */
|
|
2023 if (setjmp (png_ptr->jmpbuf))
|
|
2024 {
|
|
2025 /* Am I doing enough here? I think so, since most things happen
|
|
2026 in png_unwind */
|
|
2027 png_read_destroy (png_ptr, info_ptr, (png_info *) NULL);
|
|
2028 signal_simple_error ("Error decoding PNG", instantiator);
|
|
2029 }
|
|
2030
|
|
2031 /* Initialize all PNG structures */
|
|
2032 png_info_init (info_ptr);
|
|
2033 png_read_init (png_ptr);
|
|
2034
|
|
2035 /* Initialize the IO layer and read in header information */
|
98
|
2036 #if defined (USE_TEMP_FILES_FOR_PNG_IMAGES) || (PNG_LIBPNG_VER < 87)
|
0
|
2037 png_init_io (png_ptr, unwind.instream);
|
|
2038 #else
|
|
2039 {
|
|
2040 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2041 Extbyte *bytes;
|
|
2042 Extcount len;
|
|
2043 struct png_memory_storage tbr; /* Data to be read */
|
|
2044
|
|
2045 assert (!NILP (data));
|
|
2046
|
|
2047 /* #### This is a definite problem under Mule due to the amount of
|
|
2048 stack data it might allocate. Need to be able to convert and
|
|
2049 write out to a file. */
|
|
2050 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
|
|
2051 tbr.bytes = bytes;
|
|
2052 tbr.len = len;
|
|
2053 tbr.index = 0;
|
|
2054 png_set_read_fn(png_ptr,(void *) &tbr, png_read_from_memory);
|
|
2055 }
|
|
2056 #endif
|
|
2057
|
|
2058 png_read_info (png_ptr, info_ptr);
|
|
2059
|
|
2060 /* set up the transformations you want. Note that these are
|
|
2061 all optional. Only call them if you want them */
|
|
2062 /* tell libpng to strip 16 bit depth files down to 8 bits */
|
|
2063 if (info_ptr->bit_depth == 16)
|
|
2064 png_set_strip_16 (png_ptr);
|
|
2065 if (info_ptr->bit_depth < 8)
|
|
2066 png_set_packing (png_ptr);
|
|
2067 /* ##### Perhaps some way to specify the screen gamma should be in here? */
|
|
2068
|
|
2069 {
|
|
2070 int height = info_ptr->height;
|
|
2071 int width = info_ptr->width;
|
|
2072 int depth = info_ptr->bit_depth;
|
|
2073 int linesize = max (info_ptr->bit_depth >> 3, 1) * width;
|
|
2074 int bitmap_pad;
|
|
2075 int y;
|
|
2076 XColor color;
|
|
2077 png_byte *png_pixels;
|
|
2078 png_byte **row_pointers;
|
|
2079 png_color static_color_cube[216];
|
|
2080
|
|
2081 /* Wow, allocate all the memory. Truly, exciting. */
|
|
2082 unwind.pixels = (unsigned long *) xmalloc (256 * sizeof (unsigned long));
|
|
2083 png_pixels = (png_byte *) xmalloc (linesize * height * sizeof (png_byte*));
|
|
2084 row_pointers = (png_byte **) xmalloc (height * sizeof (png_byte *));
|
|
2085
|
|
2086 for (y = 0; y < 256; y++)
|
|
2087 unwind.pixels[y] = 0;
|
|
2088 for (y = 0; y < height; y++)
|
|
2089 row_pointers[y] = png_pixels + (linesize * y);
|
|
2090
|
|
2091 /* #### This is where we should handle transparency, but I am unsure of
|
|
2092 how exactly to get that information right now, in a safe manner. */
|
|
2093 #if 0
|
|
2094 {
|
|
2095 png_color_16 current_background;
|
|
2096
|
|
2097 /* Some appropriate magic should go here to get the current
|
|
2098 buffers (device?) background color and convert it to a
|
|
2099 png_color_16 struct */
|
|
2100 if (info_ptr->valid & PNG_INFO_bKGD)
|
|
2101 png_set_background (png_ptr, &(info_ptr->background), PNG_GAMMA_FILE,
|
|
2102 1, 1.0);
|
|
2103 else
|
|
2104 png_set_background (png_ptr, ¤t_background, PNG_GAMMA_SCREEN,
|
|
2105 0, 1.0);
|
|
2106 }
|
|
2107 #endif
|
|
2108
|
|
2109 if ((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
|
|
2110 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA))
|
|
2111 {
|
|
2112 if (!(info_ptr->valid & PNG_INFO_PLTE))
|
|
2113 {
|
|
2114 for (y = 0; y < 216; y++)
|
|
2115 {
|
|
2116 static_color_cube[y].red = (y % 6) * 255.0 / 5;
|
|
2117 static_color_cube[y].green = ((y / 6) % 6) * 255.0 / 5;
|
|
2118 static_color_cube[y].blue = (y / 36) * 255.0 / 5;
|
|
2119 }
|
|
2120 png_set_dither (png_ptr, static_color_cube, 216, 216, NULL, 1);
|
|
2121 }
|
|
2122 else
|
|
2123 {
|
|
2124 png_set_dither (png_ptr, info_ptr->palette, info_ptr->num_palette,
|
|
2125 info_ptr->num_palette, info_ptr->hist, 1);
|
|
2126 }
|
|
2127 }
|
|
2128
|
|
2129 png_read_image (png_ptr, row_pointers);
|
|
2130 png_read_end (png_ptr, info_ptr);
|
|
2131
|
|
2132 /* Ok, now we go and allocate all the colors */
|
|
2133 if (info_ptr->valid & PNG_INFO_PLTE)
|
|
2134 {
|
|
2135 unwind.npixels = info_ptr->num_palette;
|
|
2136 for (y = 0; y < unwind.npixels; y++)
|
|
2137 {
|
|
2138 color.red = info_ptr->palette[y].red << 8;
|
|
2139 color.green = info_ptr->palette[y].green << 8;
|
|
2140 color.blue = info_ptr->palette[y].blue << 8;
|
|
2141 color.flags = DoRed | DoGreen | DoBlue;
|
|
2142 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr),
|
|
2143 &color);
|
|
2144 unwind.pixels[y] = color.pixel;
|
|
2145 }
|
|
2146 }
|
|
2147 else
|
|
2148 {
|
|
2149 unwind.npixels = 216;
|
|
2150 for (y = 0; y < 216; y++)
|
|
2151 {
|
|
2152 color.red = static_color_cube[y].red << 8;
|
|
2153 color.green = static_color_cube[y].green << 8;
|
|
2154 color.blue = static_color_cube[y].blue << 8;
|
|
2155 color.flags = DoRed|DoGreen|DoBlue;
|
|
2156 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr),
|
|
2157 &color);
|
|
2158 unwind.pixels[y] = color.pixel;
|
|
2159 }
|
|
2160 }
|
|
2161
|
|
2162 #ifdef PNG_SHOW_COMMENTS
|
|
2163 /* ####
|
|
2164 * I turn this off by default now, because the !%^@#!% comments
|
|
2165 * show up every time the image is instantiated, which can get
|
|
2166 * really really annoying. There should be some way to pass this
|
|
2167 * type of data down into the glyph code, where you can get to it
|
|
2168 * from lisp anyway. - WMP
|
|
2169 */
|
|
2170 {
|
|
2171 int i;
|
|
2172
|
|
2173 for (i = 0 ; i < info_ptr->num_text ; i++)
|
|
2174 {
|
|
2175 /* How paranoid do I have to be about no trailing NULLs, and
|
|
2176 using (int)info_ptr->text[i].text_length, and strncpy and a temp
|
|
2177 string somewhere? */
|
|
2178
|
|
2179 warn_when_safe (Qpng, Qinfo, "%s - %s",
|
|
2180 info_ptr->text[i].key,
|
|
2181 info_ptr->text[i].text);
|
|
2182 }
|
|
2183 }
|
|
2184 #endif
|
|
2185
|
|
2186 /* Now create the image */
|
|
2187
|
|
2188 depth = DefaultDepthOfScreen (scr);
|
|
2189
|
|
2190 /* first get bitmap_pad (from XPM) */
|
|
2191 if (depth > 16)
|
|
2192 bitmap_pad = 32;
|
|
2193 else if (depth > 8)
|
|
2194 bitmap_pad = 16;
|
|
2195 else
|
|
2196 bitmap_pad = 8;
|
|
2197
|
|
2198 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
|
|
2199 depth, ZPixmap, 0, 0, width, height,
|
|
2200 bitmap_pad, 0);
|
|
2201
|
|
2202 if (!unwind.ximage)
|
|
2203 signal_simple_error ("Unable to create X image struct",
|
|
2204 instantiator);
|
|
2205
|
|
2206 /* now that bytes_per_line must have been set properly alloc data */
|
|
2207 unwind.ximage->data = (char *) xmalloc (unwind.ximage->bytes_per_line *
|
|
2208 height);
|
|
2209
|
|
2210 {
|
|
2211 int i, j;
|
|
2212 for (i = 0; i < height; i++)
|
|
2213 for (j = 0; j < width; j++)
|
|
2214 XPutPixel (unwind.ximage, j, i,
|
|
2215 unwind.pixels[png_pixels[i * width + j]]);
|
|
2216 }
|
|
2217
|
|
2218 xfree (row_pointers);
|
|
2219 xfree (png_pixels);
|
|
2220 }
|
|
2221
|
|
2222 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
|
2223 unwind.pixels, unwind.npixels,
|
|
2224 instantiator);
|
|
2225
|
|
2226 /* This will clean up everything else. */
|
|
2227 unwind.npixels = 0;
|
|
2228 unbind_to (speccount, Qnil);
|
|
2229 }
|
|
2230
|
|
2231 #endif /* HAVE_PNG */
|
|
2232
|
|
2233
|
|
2234 #ifdef HAVE_TIFF
|
|
2235
|
|
2236 /**********************************************************************
|
|
2237 * TIFF *
|
|
2238 **********************************************************************/
|
|
2239 static void
|
|
2240 tiff_validate (Lisp_Object instantiator)
|
|
2241 {
|
|
2242 file_or_data_must_be_present (instantiator);
|
|
2243 }
|
|
2244
|
|
2245 static Lisp_Object
|
|
2246 tiff_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
2247 {
|
|
2248 signal_simple_error ("No TIFF support yet", inst);
|
|
2249 return Qnil;
|
|
2250 }
|
|
2251
|
|
2252 static int
|
82
|
2253 tiff_possible_dest_types (void)
|
0
|
2254 {
|
|
2255 return IMAGE_COLOR_PIXMAP_MASK;
|
|
2256 }
|
|
2257
|
|
2258 static void
|
|
2259 tiff_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2260 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
2261 int dest_mask)
|
0
|
2262 {
|
|
2263 abort ();
|
|
2264 }
|
|
2265
|
|
2266 #endif /* HAVE_TIFF */
|
|
2267
|
|
2268
|
|
2269 #ifdef HAVE_XPM
|
|
2270
|
|
2271 /**********************************************************************
|
|
2272 * XPM *
|
|
2273 **********************************************************************/
|
|
2274
|
|
2275 static void
|
|
2276 check_valid_xpm_color_symbols (Lisp_Object data)
|
|
2277 {
|
|
2278 Lisp_Object rest;
|
|
2279
|
|
2280 for (rest = data; !NILP (rest); rest = XCDR (rest))
|
|
2281 {
|
|
2282 if (!CONSP (rest) ||
|
|
2283 !CONSP (XCAR (rest)) ||
|
|
2284 !STRINGP (XCAR (XCAR (rest))) ||
|
|
2285 (!STRINGP (XCDR (XCAR (rest))) &&
|
|
2286 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
|
|
2287 signal_simple_error ("Invalid color symbol alist", data);
|
|
2288 }
|
|
2289 }
|
|
2290
|
|
2291 static void
|
|
2292 xpm_validate (Lisp_Object instantiator)
|
|
2293 {
|
|
2294 file_or_data_must_be_present (instantiator);
|
|
2295 }
|
|
2296
|
|
2297 static Lisp_Object
|
|
2298 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
2299 {
|
|
2300 char **data;
|
|
2301 int result;
|
|
2302
|
14
|
2303 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
|
0
|
2304
|
|
2305 if (result == XpmSuccess)
|
|
2306 {
|
|
2307 Lisp_Object retval = Qnil;
|
|
2308 struct buffer *old_buffer = current_buffer;
|
|
2309 Lisp_Object temp_buffer =
|
|
2310 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
2311 int elt;
|
|
2312 int height, width, ncolors;
|
|
2313 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2314 int speccount = specpdl_depth ();
|
|
2315
|
|
2316 GCPRO3 (name, retval, temp_buffer);
|
|
2317
|
|
2318 specbind (Qinhibit_quit, Qt);
|
|
2319 set_buffer_internal (XBUFFER (temp_buffer));
|
|
2320 Ferase_buffer (Fcurrent_buffer ());
|
|
2321
|
|
2322 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
2323 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
2324
|
|
2325 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
2326 for (elt = 0; elt <= width + ncolors; elt++)
|
|
2327 {
|
|
2328 buffer_insert_c_string (current_buffer, "\"");
|
|
2329 buffer_insert_c_string (current_buffer, data[elt]);
|
|
2330
|
|
2331 if (elt < width + ncolors)
|
|
2332 buffer_insert_c_string (current_buffer, "\",\r");
|
|
2333 else
|
|
2334 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
2335 }
|
|
2336
|
|
2337 retval = Fbuffer_substring (Qnil, Qnil, Fcurrent_buffer ());
|
|
2338 XpmFree (data);
|
|
2339
|
|
2340 set_buffer_internal (old_buffer);
|
|
2341 unbind_to (speccount, Qnil);
|
|
2342
|
|
2343 RETURN_UNGCPRO (retval);
|
|
2344 }
|
|
2345
|
|
2346 switch (result)
|
|
2347 {
|
|
2348 case XpmFileInvalid:
|
|
2349 {
|
|
2350 if (ok_if_data_invalid)
|
|
2351 return Qt;
|
|
2352 signal_simple_error ("invalid XPM data in file", name);
|
|
2353 }
|
|
2354 case XpmNoMemory:
|
|
2355 {
|
|
2356 signal_double_file_error ("Reading pixmap file",
|
|
2357 "out of memory", name);
|
|
2358 }
|
|
2359 case XpmOpenFailed:
|
|
2360 {
|
|
2361 /* should never happen? */
|
|
2362 signal_double_file_error ("Opening pixmap file",
|
|
2363 "no such file or directory", name);
|
|
2364 }
|
|
2365 default:
|
|
2366 {
|
|
2367 signal_double_file_error_2 ("Parsing pixmap file",
|
|
2368 "unknown error code",
|
|
2369 make_int (result), name);
|
|
2370 break;
|
|
2371 }
|
|
2372 }
|
|
2373
|
|
2374 return Qnil; /* not reached */
|
|
2375 }
|
|
2376
|
|
2377 Lisp_Object Vxpm_color_symbols;
|
|
2378
|
|
2379 static Lisp_Object
|
|
2380 evaluate_xpm_color_symbols (void)
|
|
2381 {
|
|
2382 Lisp_Object rest, results = Qnil;
|
|
2383 struct gcpro gcpro1, gcpro2;
|
|
2384
|
|
2385 GCPRO2 (rest, results);
|
|
2386 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
|
|
2387 {
|
|
2388 Lisp_Object name, value, cons;
|
|
2389
|
|
2390 CHECK_CONS (rest);
|
|
2391 cons = XCAR (rest);
|
|
2392 CHECK_CONS (cons);
|
|
2393 name = XCAR (cons);
|
|
2394 CHECK_STRING (name);
|
|
2395 value = XCDR (cons);
|
|
2396 CHECK_CONS (value);
|
|
2397 value = XCAR (value);
|
|
2398 value = Feval (value);
|
|
2399 if (NILP (value))
|
|
2400 continue;
|
|
2401 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
|
|
2402 signal_simple_error
|
|
2403 ("Result from xpm-color-symbols eval must be nil, string, or color",
|
|
2404 value);
|
|
2405 results = Fcons (Fcons (name, value), results);
|
|
2406 }
|
|
2407 UNGCPRO; /* no more evaluation */
|
|
2408 return results;
|
|
2409 }
|
|
2410
|
|
2411 static Lisp_Object
|
|
2412 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
2413 {
|
|
2414 Lisp_Object file = Qnil;
|
|
2415 Lisp_Object color_symbols;
|
|
2416 struct gcpro gcpro1, gcpro2;
|
|
2417 Lisp_Object alist = Qnil;
|
|
2418
|
|
2419 GCPRO2 (file, alist);
|
|
2420
|
|
2421 /* Now, convert any file data into inline data. At the end of this,
|
|
2422 `data' will contain the inline data (if any) or Qnil, and
|
|
2423 `file' will contain the name this data was derived from (if
|
|
2424 known) or Qnil.
|
|
2425
|
|
2426 Note that if we cannot generate any regular inline data, we
|
|
2427 skip out. */
|
|
2428
|
|
2429 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
2430
|
|
2431 if (CONSP (file)) /* failure locating filename */
|
|
2432 signal_double_file_error ("Opening pixmap file",
|
|
2433 "no such file or directory",
|
|
2434 Fcar (file));
|
|
2435
|
|
2436 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
2437 Qunbound);
|
|
2438
|
|
2439 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
2440 /* no conversion necessary */
|
|
2441 RETURN_UNGCPRO (inst);
|
|
2442
|
|
2443 alist = tagged_vector_to_alist (inst);
|
|
2444
|
|
2445 if (!NILP (file))
|
|
2446 {
|
|
2447 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
2448 alist = remassq_no_quit (Q_file, alist);
|
|
2449 /* there can't be a :data at this point. */
|
|
2450 alist = Fcons (Fcons (Q_file, file),
|
|
2451 Fcons (Fcons (Q_data, data), alist));
|
|
2452 }
|
|
2453
|
|
2454 if (UNBOUNDP (color_symbols))
|
|
2455 {
|
|
2456 color_symbols = evaluate_xpm_color_symbols ();
|
|
2457 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
2458 alist);
|
|
2459 }
|
|
2460
|
|
2461 {
|
|
2462 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
2463 free_alist (alist);
|
|
2464 RETURN_UNGCPRO (result);
|
|
2465 }
|
|
2466 }
|
|
2467
|
|
2468 static int
|
74
|
2469 xpm_possible_dest_types (void)
|
0
|
2470 {
|
74
|
2471 return
|
|
2472 IMAGE_MONO_PIXMAP_MASK |
|
|
2473 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
2474 IMAGE_POINTER_MASK;
|
|
2475 }
|
|
2476
|
|
2477 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
|
|
2478 There was no version number in xpm.h before 3.3, but this should do.
|
|
2479 */
|
|
2480 #if (XpmVersion >= 3) || defined(XpmExactColors)
|
|
2481 # define XPM_DOES_BUFFERS
|
|
2482 #endif
|
|
2483
|
|
2484 #ifndef XPM_DOES_BUFFERS
|
|
2485 Your version of XPM is too old. You cannot compile with it.
|
|
2486 Upgrade to version 3.2g or better or compile with --with-xpm=no.
|
|
2487 #endif /* !XPM_DOES_BUFFERS */
|
|
2488
|
|
2489 static XpmColorSymbol *
|
|
2490 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
|
|
2491 Lisp_Object color_symbol_alist)
|
|
2492 {
|
|
2493 /* This function can GC */
|
|
2494 Screen *xs = LISP_DEVICE_TO_X_SCREEN (device);
|
|
2495 Display *dpy = DisplayOfScreen (xs);
|
|
2496 Colormap cmap = DefaultColormapOfScreen (xs);
|
|
2497 XColor color;
|
|
2498 Lisp_Object rest;
|
|
2499 Lisp_Object results = Qnil;
|
|
2500 int i;
|
|
2501 XpmColorSymbol *symbols;
|
|
2502 struct gcpro gcpro1, gcpro2;
|
|
2503
|
|
2504 GCPRO2 (results, device);
|
|
2505
|
|
2506 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
2507 error happens we don't lose any malloc()ed data, or more importantly,
|
|
2508 leave any pixels allocated in the server. */
|
|
2509 i = 0;
|
|
2510 LIST_LOOP (rest, color_symbol_alist)
|
|
2511 {
|
|
2512 Lisp_Object cons = XCAR (rest);
|
|
2513 Lisp_Object name = XCAR (cons);
|
|
2514 Lisp_Object value = XCDR (cons);
|
|
2515 if (NILP (value))
|
|
2516 continue;
|
|
2517 if (STRINGP (value))
|
|
2518 value =
|
|
2519 Fmake_color_instance
|
|
2520 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
2521 else
|
|
2522 {
|
|
2523 assert (COLOR_SPECIFIERP (value));
|
100
|
2524 value = Fspecifier_instance (value, Qnil, Qnil, Qnil);
|
0
|
2525 }
|
|
2526 if (NILP (value))
|
|
2527 continue;
|
|
2528 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
2529 i++;
|
|
2530 }
|
|
2531 UNGCPRO; /* no more evaluation */
|
|
2532
|
|
2533 if (i == 0) return 0;
|
|
2534
|
|
2535 symbols = (XpmColorSymbol *) xmalloc (i * sizeof (XpmColorSymbol));
|
|
2536 xpmattrs->valuemask |= XpmColorSymbols;
|
|
2537 xpmattrs->colorsymbols = symbols;
|
|
2538 xpmattrs->numsymbols = i;
|
|
2539
|
|
2540 while (--i >= 0)
|
|
2541 {
|
|
2542 Lisp_Object cons = XCAR (results);
|
|
2543 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
2544 /* Duplicate the pixel value so that we still have a lock on it if
|
|
2545 the pixel we were passed is later freed. */
|
|
2546 if (! XAllocColor (dpy, cmap, &color))
|
|
2547 abort (); /* it must be allocable since we're just duplicating it */
|
|
2548
|
14
|
2549 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
|
0
|
2550 symbols [i].pixel = color.pixel;
|
|
2551 symbols [i].value = 0;
|
|
2552 free_cons (XCONS (cons));
|
|
2553 cons = results;
|
|
2554 results = XCDR (results);
|
|
2555 free_cons (XCONS (cons));
|
|
2556 }
|
|
2557 return symbols;
|
|
2558 }
|
|
2559
|
|
2560 static void
|
|
2561 xpm_free (XpmAttributes *xpmattrs)
|
|
2562 {
|
|
2563 /* Could conceivably lose if XpmXXX returned an error without first
|
|
2564 initializing this structure, if we didn't know that initializing it
|
|
2565 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
|
|
2566 multiple times, since it zeros slots as it frees them...) */
|
|
2567 XpmFreeAttributes (xpmattrs);
|
|
2568 }
|
|
2569
|
|
2570 static void
|
|
2571 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2572 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
2573 int dest_mask)
|
0
|
2574 {
|
|
2575 /* This function can GC */
|
|
2576 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2577 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2578 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2579 Display *dpy;
|
|
2580 Screen *xs;
|
|
2581 Pixmap pixmap;
|
|
2582 Pixmap mask = 0;
|
|
2583 XpmAttributes xpmattrs;
|
|
2584 int result;
|
|
2585 XpmColorSymbol *color_symbols;
|
|
2586 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
2587 Q_color_symbols);
|
|
2588 enum image_instance_type type;
|
|
2589 int force_mono;
|
|
2590 unsigned int w, h;
|
|
2591
|
|
2592 if (!DEVICE_X_P (XDEVICE (device)))
|
|
2593 signal_simple_error ("Not an X device", device);
|
|
2594
|
|
2595 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
2596 xs = DefaultScreenOfDisplay (dpy);
|
|
2597
|
|
2598 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
2599 type = IMAGE_COLOR_PIXMAP;
|
|
2600 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
2601 type = IMAGE_MONO_PIXMAP;
|
|
2602 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
2603 type = IMAGE_POINTER;
|
|
2604 else
|
|
2605 incompatible_image_types (instantiator, dest_mask,
|
|
2606 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
2607 | IMAGE_POINTER_MASK);
|
|
2608 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
2609
|
|
2610 x_initialize_pixmap_image_instance (ii, type);
|
|
2611
|
|
2612 assert (!NILP (data));
|
|
2613
|
|
2614 retry:
|
|
2615
|
|
2616 memset (&xpmattrs, 0, sizeof (xpmattrs)); /* want XpmInitAttributes() */
|
|
2617 xpmattrs.valuemask = XpmReturnPixels;
|
|
2618 if (force_mono)
|
|
2619 {
|
|
2620 /* Without this, we get a 1-bit version of the color image, which
|
|
2621 isn't quite right. With this, we get the mono image, which might
|
|
2622 be very different looking. */
|
|
2623 xpmattrs.valuemask |= XpmColorKey;
|
|
2624 xpmattrs.color_key = XPM_MONO;
|
|
2625 xpmattrs.depth = 1;
|
|
2626 xpmattrs.valuemask |= XpmDepth;
|
|
2627 }
|
|
2628 else
|
|
2629 {
|
|
2630 xpmattrs.closeness = 65535;
|
|
2631 xpmattrs.valuemask |= XpmCloseness;
|
|
2632 }
|
|
2633
|
70
|
2634 color_symbols = extract_xpm_color_names (&xpmattrs, device,
|
0
|
2635 color_symbol_alist);
|
|
2636
|
|
2637 result = XpmCreatePixmapFromBuffer (dpy,
|
|
2638 RootWindowOfScreen (xs),
|
14
|
2639 (char *) XSTRING_DATA (data),
|
0
|
2640 &pixmap, &mask, &xpmattrs);
|
|
2641
|
|
2642 if (color_symbols)
|
|
2643 {
|
|
2644 xfree (color_symbols);
|
|
2645 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
|
|
2646 xpmattrs.numsymbols = 0;
|
|
2647 }
|
|
2648
|
|
2649 switch (result)
|
|
2650 {
|
|
2651 case XpmSuccess:
|
|
2652 break;
|
|
2653 case XpmFileInvalid:
|
|
2654 {
|
|
2655 xpm_free (&xpmattrs);
|
|
2656 signal_simple_error ("invalid XPM data", data);
|
|
2657 }
|
|
2658 case XpmColorFailed:
|
|
2659 case XpmColorError:
|
|
2660 {
|
|
2661 xpm_free (&xpmattrs);
|
|
2662 if (force_mono)
|
|
2663 {
|
|
2664 /* second time; blow out. */
|
|
2665 signal_double_file_error ("Reading pixmap data",
|
|
2666 "color allocation failed",
|
|
2667 data);
|
|
2668 }
|
|
2669 else
|
|
2670 {
|
|
2671 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
|
|
2672 {
|
|
2673 /* second time; blow out. */
|
|
2674 signal_double_file_error ("Reading pixmap data",
|
|
2675 "color allocation failed",
|
|
2676 data);
|
|
2677 }
|
|
2678 force_mono = 1;
|
|
2679 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
|
|
2680 goto retry;
|
|
2681 }
|
|
2682 }
|
|
2683 case XpmNoMemory:
|
|
2684 {
|
|
2685 xpm_free (&xpmattrs);
|
|
2686 signal_double_file_error ("Parsing pixmap data",
|
|
2687 "out of memory", data);
|
|
2688 }
|
|
2689 default:
|
|
2690 {
|
|
2691 xpm_free (&xpmattrs);
|
|
2692 signal_double_file_error_2 ("Parsing pixmap data",
|
|
2693 "unknown error code",
|
|
2694 make_int (result), data);
|
|
2695 }
|
|
2696 }
|
|
2697
|
|
2698 w = xpmattrs.width;
|
|
2699 h = xpmattrs.height;
|
|
2700
|
|
2701 {
|
|
2702 int npixels = xpmattrs.npixels;
|
|
2703 Pixel *pixels = 0;
|
|
2704
|
|
2705 if (npixels != 0)
|
|
2706 {
|
|
2707 pixels = xmalloc (npixels * sizeof (Pixel));
|
|
2708 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
|
|
2709 }
|
|
2710 else
|
|
2711 pixels = 0;
|
|
2712
|
|
2713 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
2714 IMAGE_INSTANCE_X_MASK (ii) = mask;
|
|
2715 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
2716 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
2717 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
2718 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
2719 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
2720 find_keyword_in_vector (instantiator, Q_file);
|
|
2721 }
|
|
2722
|
|
2723 switch (type)
|
|
2724 {
|
|
2725 case IMAGE_MONO_PIXMAP:
|
|
2726 break;
|
|
2727
|
|
2728 case IMAGE_COLOR_PIXMAP:
|
|
2729 {
|
|
2730 /* XpmReadFileToPixmap() doesn't return the depth (bogus!) so
|
|
2731 we need to get it ourself. (No, xpmattrs.depth is not it;
|
|
2732 that's an input slot, not output.) We could just assume
|
|
2733 that it has the same depth as the root window, but some
|
|
2734 devices allow more than one depth, so that isn't
|
|
2735 necessarily correct (I guess?) */
|
|
2736 Window root;
|
|
2737 int x, y;
|
|
2738 unsigned int w2, h2, bw;
|
|
2739
|
|
2740 unsigned int d;
|
|
2741
|
|
2742 if (!XGetGeometry (dpy, pixmap, &root, &x, &y, &w2, &h2, &bw, &d))
|
|
2743 abort ();
|
|
2744 if (w != w2 || h != h2)
|
|
2745 abort ();
|
|
2746
|
|
2747 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
2748 }
|
|
2749 break;
|
|
2750
|
|
2751 case IMAGE_POINTER:
|
|
2752 {
|
|
2753 int npixels = xpmattrs.npixels;
|
|
2754 Pixel *pixels = xpmattrs.pixels;
|
|
2755 XColor fg, bg;
|
|
2756 int i;
|
|
2757 int xhot = 0, yhot = 0;
|
|
2758
|
|
2759 if (xpmattrs.valuemask & XpmHotspot)
|
|
2760 {
|
|
2761 xhot = xpmattrs.x_hotspot;
|
|
2762 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
|
|
2763 }
|
|
2764 if (xpmattrs.valuemask & XpmHotspot)
|
|
2765 {
|
|
2766 yhot = xpmattrs.y_hotspot;
|
|
2767 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
|
|
2768 }
|
|
2769 check_pointer_sizes (xs, w, h, instantiator);
|
|
2770
|
|
2771 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
2772 XPM file), then use those as the default colors for the cursor we
|
|
2773 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
2774 */
|
|
2775 if (npixels >= 2)
|
|
2776 {
|
|
2777 /* With an XBM file, it's obvious which bit is foreground
|
|
2778 and which is background, or rather, it's implicit: in
|
|
2779 an XBM file, a 1 bit is foreground, and a 0 bit is
|
|
2780 background.
|
|
2781
|
|
2782 XCreatePixmapCursor() assumes this property of the
|
|
2783 pixmap it is called with as well; the `foreground'
|
|
2784 color argument is used for the 1 bits.
|
|
2785
|
|
2786 With an XPM file, it's tricker, since the elements of
|
|
2787 the pixmap don't represent FG and BG, but are actual
|
|
2788 pixel values. So we need to figure out which of those
|
|
2789 pixels is the foreground color and which is the
|
|
2790 background. We do it by comparing RGB and assuming
|
|
2791 that the darker color is the foreground. This works
|
|
2792 with the result of xbmtopbm|ppmtoxpm, at least.
|
|
2793
|
|
2794 It might be nice if there was some way to tag the
|
|
2795 colors in the XPM file with whether they are the
|
|
2796 foreground - perhaps with logical color names somehow?
|
|
2797
|
|
2798 Once we have decided which color is the foreground, we
|
|
2799 need to ensure that that color corresponds to a `1' bit
|
|
2800 in the Pixmap. The XPM library wrote into the (1-bit)
|
|
2801 pixmap with XPutPixel, which will ignore all but the
|
|
2802 least significant bit.
|
|
2803
|
|
2804 This means that a 1 bit in the image corresponds to
|
|
2805 `fg' only if `fg.pixel' is odd.
|
|
2806
|
|
2807 (This also means that the image will be all the same
|
|
2808 color if both `fg' and `bg' are odd or even, but we can
|
|
2809 safely assume that that won't happen if the XPM file is
|
|
2810 sensible I think.)
|
|
2811
|
|
2812 The desired result is that the image use `1' to
|
|
2813 represent the foreground color, and `0' to represent
|
|
2814 the background color. So, we may need to invert the
|
|
2815 image to accomplish this; we invert if fg is
|
|
2816 odd. (Remember that WhitePixel and BlackPixel are not
|
|
2817 necessarily 1 and 0 respectively, though I think it
|
|
2818 might be safe to assume that one of them is always 1
|
|
2819 and the other is always 0. We also pretty much need to
|
|
2820 assume that one is even and the other is odd.)
|
|
2821 */
|
|
2822
|
|
2823 fg.pixel = pixels[0]; /* pick a pixel at random. */
|
|
2824 bg.pixel = fg.pixel;
|
|
2825 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
|
|
2826 {
|
|
2827 bg.pixel = pixels[i];
|
|
2828 if (fg.pixel != bg.pixel)
|
|
2829 break;
|
|
2830 }
|
|
2831
|
|
2832 /* If (fg.pixel == bg.pixel) then probably something has
|
|
2833 gone wrong, but I don't think signalling an error would
|
|
2834 be appropriate. */
|
|
2835
|
|
2836 XQueryColor (dpy, DefaultColormapOfScreen (xs), &fg);
|
|
2837 XQueryColor (dpy, DefaultColormapOfScreen (xs), &bg);
|
|
2838
|
|
2839 /* If the foreground is lighter than the background, swap them.
|
|
2840 (This occurs semi-randomly, depending on the ordering of the
|
|
2841 color list in the XPM file.)
|
|
2842 */
|
|
2843 {
|
|
2844 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
|
|
2845 + (fg.blue / 3));
|
|
2846 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
|
|
2847 + (bg.blue / 3));
|
|
2848 if (fg_total > bg_total)
|
|
2849 {
|
|
2850 XColor swap;
|
|
2851 swap = fg;
|
|
2852 fg = bg;
|
|
2853 bg = swap;
|
|
2854 }
|
|
2855 }
|
|
2856
|
|
2857 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
|
|
2858 (This occurs (only?) on servers with Black=0, White=1.)
|
|
2859 */
|
|
2860 if ((fg.pixel & 1) == 0)
|
|
2861 {
|
|
2862 XGCValues gcv;
|
|
2863 GC gc;
|
|
2864 gcv.function = GXxor;
|
|
2865 gcv.foreground = 1;
|
|
2866 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
|
|
2867 &gcv);
|
|
2868 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
|
|
2869 XFreeGC (dpy, gc);
|
|
2870 }
|
|
2871 }
|
|
2872 else
|
|
2873 {
|
|
2874 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
2875 &fg, &bg);
|
|
2876 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
2877 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
2878 }
|
|
2879
|
|
2880 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
2881 XCreatePixmapCursor
|
|
2882 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
|
|
2883 }
|
|
2884
|
|
2885 break;
|
|
2886
|
|
2887 default:
|
|
2888 abort ();
|
|
2889 }
|
|
2890
|
|
2891 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
|
|
2892 }
|
|
2893
|
|
2894 #endif /* HAVE_XPM */
|
|
2895
|
|
2896
|
|
2897 #ifdef HAVE_XFACE
|
|
2898
|
|
2899 /**********************************************************************
|
|
2900 * X-Face *
|
|
2901 **********************************************************************/
|
|
2902
|
|
2903 static void
|
|
2904 xface_validate (Lisp_Object instantiator)
|
|
2905 {
|
|
2906 file_or_data_must_be_present (instantiator);
|
|
2907 }
|
|
2908
|
|
2909 static Lisp_Object
|
|
2910 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
2911 {
|
|
2912 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
2913 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2914 Lisp_Object alist = Qnil;
|
|
2915
|
|
2916 GCPRO3 (file, mask_file, alist);
|
|
2917
|
|
2918 /* Now, convert any file data into inline data for both the regular
|
|
2919 data and the mask data. At the end of this, `data' will contain
|
|
2920 the inline data (if any) or Qnil, and `file' will contain
|
|
2921 the name this data was derived from (if known) or Qnil.
|
|
2922 Likewise for `mask_file' and `mask_data'.
|
|
2923
|
|
2924 Note that if we cannot generate any regular inline data, we
|
|
2925 skip out. */
|
|
2926
|
|
2927 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
2928 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
2929 Q_mask_data);
|
|
2930
|
|
2931 if (CONSP (file)) /* failure locating filename */
|
|
2932 signal_double_file_error ("Opening bitmap file",
|
|
2933 "no such file or directory",
|
|
2934 Fcar (file));
|
|
2935
|
|
2936 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
2937 RETURN_UNGCPRO (inst);
|
|
2938
|
|
2939 alist = tagged_vector_to_alist (inst);
|
|
2940
|
|
2941 {
|
|
2942 Lisp_Object data = make_string_from_file (file);
|
|
2943 alist = remassq_no_quit (Q_file, alist);
|
|
2944 /* there can't be a :data at this point. */
|
|
2945 alist = Fcons (Fcons (Q_file, file),
|
|
2946 Fcons (Fcons (Q_data, data), alist));
|
|
2947 }
|
|
2948
|
|
2949 alist = xbm_mask_file_munging (alist, file, mask_file);
|
|
2950
|
|
2951 {
|
|
2952 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
2953 free_alist (alist);
|
|
2954 RETURN_UNGCPRO (result);
|
|
2955 }
|
|
2956 }
|
|
2957
|
|
2958 static int
|
74
|
2959 xface_possible_dest_types (void)
|
0
|
2960 {
|
74
|
2961 return
|
|
2962 IMAGE_MONO_PIXMAP_MASK |
|
|
2963 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
2964 IMAGE_POINTER_MASK;
|
|
2965 }
|
|
2966
|
|
2967 #if defined(EXTERN)
|
|
2968 /* This is about to get redefined! */
|
|
2969 #undef EXTERN
|
|
2970 #endif
|
|
2971 /* We have to define SYSV32 so that compface.h includes string.h
|
|
2972 instead of strings.h. */
|
|
2973 #define SYSV32
|
|
2974 #include <compface.h>
|
|
2975 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
2976 to jmp_buf we end up with a conflicting type error with the
|
|
2977 definition in compface.h */
|
|
2978 extern jmp_buf comp_env;
|
|
2979 #undef SYSV32
|
|
2980
|
|
2981 static void
|
|
2982 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2983 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
2984 int dest_mask)
|
0
|
2985 {
|
|
2986 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2987 int i, stattis;
|
|
2988 char *p, *bits, *bp;
|
16
|
2989 CONST char * volatile emsg = 0;
|
|
2990 CONST char * volatile dstring;
|
0
|
2991
|
|
2992 assert (!NILP (data));
|
|
2993
|
|
2994 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
|
|
2995
|
|
2996 if ((p = strchr (dstring, ':')))
|
|
2997 {
|
|
2998 dstring = p + 1;
|
|
2999 }
|
|
3000
|
|
3001 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
3002 if (!(stattis = setjmp (comp_env)))
|
|
3003 {
|
|
3004 UnCompAll ((char *) dstring);
|
|
3005 UnGenFace ();
|
|
3006 }
|
|
3007
|
|
3008 switch (stattis)
|
|
3009 {
|
|
3010 case -2:
|
|
3011 emsg = "uncompface: internal error";
|
|
3012 break;
|
|
3013 case -1:
|
|
3014 emsg = "uncompface: insufficient or invalid data";
|
|
3015 break;
|
|
3016 case 1:
|
|
3017 emsg = "uncompface: excess data ignored";
|
|
3018 break;
|
|
3019 }
|
|
3020
|
|
3021 if (emsg)
|
|
3022 signal_simple_error_2 (emsg, data, Qimage);
|
|
3023
|
|
3024 bp = bits = (char *) alloca (PIXELS / 8);
|
|
3025
|
|
3026 /* the compface library exports char F[], which uses a single byte per
|
|
3027 pixel to represent a 48x48 bitmap. Yuck. */
|
|
3028 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
3029 {
|
|
3030 int n, b;
|
|
3031 /* reverse the bit order of each byte... */
|
|
3032 for (b = n = 0; b < 8; ++b)
|
|
3033 {
|
|
3034 n |= ((*p++) << b);
|
|
3035 }
|
|
3036 *bp++ = (char) n;
|
|
3037 }
|
|
3038
|
|
3039 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
3040 pointer_bg, dest_mask, 48, 48, bits);
|
|
3041 }
|
|
3042
|
|
3043 #endif /* HAVE_XFACE */
|
|
3044
|
|
3045
|
|
3046 /**********************************************************************
|
|
3047 * Autodetect *
|
|
3048 **********************************************************************/
|
|
3049
|
|
3050 static void
|
|
3051 autodetect_validate (Lisp_Object instantiator)
|
|
3052 {
|
|
3053 data_must_be_present (instantiator);
|
|
3054 }
|
|
3055
|
|
3056 static Lisp_Object
|
|
3057 autodetect_normalize (Lisp_Object instantiator, Lisp_Object console_type)
|
|
3058 {
|
|
3059 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
3060 Lisp_Object filename = Qnil;
|
|
3061 Lisp_Object data = Qnil;
|
|
3062 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3063 Lisp_Object alist = Qnil;
|
|
3064
|
|
3065 GCPRO3 (filename, data, alist);
|
|
3066
|
|
3067 if (NILP (file)) /* no conversion necessary */
|
|
3068 RETURN_UNGCPRO (instantiator);
|
|
3069
|
|
3070 alist = tagged_vector_to_alist (instantiator);
|
|
3071
|
|
3072 filename = locate_pixmap_file (file);
|
|
3073 if (!NILP (filename))
|
|
3074 {
|
|
3075 int xhot, yhot;
|
|
3076 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
3077 called by pixmap_to_lisp_data, don't return an error value
|
|
3078 if the given file is not a valid XPM file. Instead, they
|
|
3079 just seg fault. It is definitely caused by passing a
|
|
3080 bitmap. To try and avoid this we check for bitmaps first. */
|
|
3081
|
|
3082 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
3083
|
|
3084 if (!EQ (data, Qt))
|
|
3085 {
|
|
3086 alist = remassq_no_quit (Q_data, alist);
|
|
3087 alist = Fcons (Fcons (Q_file, filename),
|
|
3088 Fcons (Fcons (Q_data, data), alist));
|
|
3089 if (xhot != -1)
|
|
3090 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
3091 alist);
|
|
3092 if (yhot != -1)
|
|
3093 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
3094 alist);
|
|
3095
|
|
3096 alist = xbm_mask_file_munging (alist, filename, Qnil);
|
|
3097
|
|
3098 {
|
|
3099 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
3100 free_alist (alist);
|
|
3101 RETURN_UNGCPRO (result);
|
|
3102 }
|
|
3103 }
|
|
3104
|
|
3105 #ifdef HAVE_XPM
|
|
3106 data = pixmap_to_lisp_data (filename, 1);
|
|
3107
|
|
3108 if (!EQ (data, Qt))
|
|
3109 {
|
|
3110 alist = remassq_no_quit (Q_data, alist);
|
|
3111 alist = Fcons (Fcons (Q_file, filename),
|
|
3112 Fcons (Fcons (Q_data, data), alist));
|
|
3113 alist = Fcons (Fcons (Q_color_symbols,
|
|
3114 evaluate_xpm_color_symbols ()),
|
|
3115 alist);
|
|
3116 {
|
|
3117 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
3118 free_alist (alist);
|
|
3119 RETURN_UNGCPRO (result);
|
|
3120 }
|
|
3121 }
|
|
3122 #endif
|
|
3123 }
|
|
3124
|
|
3125 /* If we couldn't convert it, just put it back as it is.
|
|
3126 We might try to further frob it later as a cursor-font
|
|
3127 specification. (We can't do that now because we don't know
|
|
3128 what dest-types it's going to be instantiated into.) */
|
|
3129 {
|
|
3130 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
|
3131 free_alist (alist);
|
|
3132 RETURN_UNGCPRO (result);
|
|
3133 }
|
|
3134 }
|
|
3135
|
|
3136 static int
|
74
|
3137 autodetect_possible_dest_types (void)
|
0
|
3138 {
|
74
|
3139 return
|
|
3140 IMAGE_MONO_PIXMAP_MASK |
|
|
3141 IMAGE_COLOR_PIXMAP_MASK |
|
|
3142 IMAGE_POINTER_MASK |
|
|
3143 IMAGE_TEXT_MASK;
|
0
|
3144 }
|
|
3145
|
|
3146 static void
|
|
3147 autodetect_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3148 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
3149 int dest_mask)
|
0
|
3150 {
|
|
3151 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3152 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3153 Lisp_Object alist = Qnil;
|
|
3154 Lisp_Object result = Qnil;
|
|
3155 int is_cursor_font = 0;
|
|
3156
|
|
3157 GCPRO3 (data, alist, result);
|
|
3158
|
|
3159 alist = tagged_vector_to_alist (instantiator);
|
|
3160 if (dest_mask & IMAGE_POINTER_MASK)
|
|
3161 {
|
|
3162 CONST char *name_ext;
|
|
3163 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
3164 if (XmuCursorNameToIndex (name_ext) != -1)
|
|
3165 {
|
|
3166 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
3167 is_cursor_font = 1;
|
|
3168 }
|
|
3169 }
|
|
3170
|
|
3171 if (!is_cursor_font)
|
|
3172 result = alist_to_tagged_vector (Qstring, alist);
|
|
3173 free_alist (alist);
|
|
3174
|
|
3175 if (is_cursor_font)
|
|
3176 cursor_font_instantiate (image_instance, result, pointer_fg,
|
70
|
3177 pointer_bg, dest_mask);
|
0
|
3178 else
|
|
3179 string_instantiate (image_instance, result, pointer_fg,
|
70
|
3180 pointer_bg, dest_mask);
|
0
|
3181
|
|
3182 UNGCPRO;
|
|
3183 }
|
|
3184
|
|
3185
|
|
3186 /**********************************************************************
|
|
3187 * Font *
|
|
3188 **********************************************************************/
|
|
3189
|
|
3190 static void
|
|
3191 font_validate (Lisp_Object instantiator)
|
|
3192 {
|
|
3193 data_must_be_present (instantiator);
|
|
3194 }
|
|
3195
|
|
3196 /* XmuCvtStringToCursor is bogus in the following ways:
|
|
3197
|
|
3198 - When it can't convert the given string to a real cursor, it will
|
|
3199 sometimes return a "success" value, after triggering a BadPixmap
|
|
3200 error. It then gives you a cursor that will itself generate BadCursor
|
|
3201 errors. So we install this error handler to catch/notice the X error
|
|
3202 and take that as meaning "couldn't convert."
|
|
3203
|
|
3204 - When you tell it to find a cursor file that doesn't exist, it prints
|
|
3205 an error message on stderr. You can't make it not do that.
|
|
3206
|
|
3207 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
|
|
3208 objects, or XPM files, or $XBMLANGPATH.
|
|
3209 */
|
|
3210
|
|
3211 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
|
|
3212
|
|
3213 static int XLoadFont_got_error;
|
|
3214
|
|
3215 static int
|
|
3216 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
|
|
3217 {
|
|
3218 XLoadFont_got_error = 1;
|
|
3219 return 0;
|
|
3220 }
|
|
3221
|
|
3222 static Font
|
|
3223 safe_XLoadFont (Display *dpy, char *name)
|
|
3224 {
|
|
3225 Font font;
|
|
3226 int (*old_handler) (Display *, XErrorEvent *);
|
|
3227 XLoadFont_got_error = 0;
|
|
3228 XSync (dpy, 0);
|
|
3229 old_handler = XSetErrorHandler (XLoadFont_error_handler);
|
|
3230 font = XLoadFont (dpy, name);
|
|
3231 XSync (dpy, 0);
|
|
3232 XSetErrorHandler (old_handler);
|
|
3233 if (XLoadFont_got_error) return 0;
|
|
3234 return font;
|
|
3235 }
|
|
3236
|
|
3237 static int
|
74
|
3238 font_possible_dest_types (void)
|
0
|
3239 {
|
|
3240 return IMAGE_POINTER_MASK;
|
|
3241 }
|
|
3242
|
|
3243 static void
|
|
3244 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3245 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
3246 int dest_mask)
|
0
|
3247 {
|
|
3248 /* This function can GC */
|
|
3249 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3250 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
3251 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
3252 Display *dpy;
|
|
3253 XColor fg, bg;
|
|
3254 Font source, mask;
|
|
3255 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
3256 int source_char, mask_char;
|
|
3257 int count;
|
|
3258 Lisp_Object foreground, background;
|
|
3259
|
|
3260 if (!DEVICE_X_P (XDEVICE (device)))
|
|
3261 signal_simple_error ("Not an X device", device);
|
|
3262
|
|
3263 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
3264
|
|
3265 if (!STRINGP (data) ||
|
14
|
3266 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
0
|
3267 signal_simple_error ("Invalid font-glyph instantiator",
|
|
3268 instantiator);
|
|
3269
|
|
3270 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
3271 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
3272
|
|
3273 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
3274 if (NILP (foreground))
|
|
3275 foreground = pointer_fg;
|
|
3276 background = find_keyword_in_vector (instantiator, Q_background);
|
|
3277 if (NILP (background))
|
|
3278 background = pointer_bg;
|
|
3279
|
|
3280 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
3281
|
14
|
3282 count = sscanf ((char *) XSTRING_DATA (data),
|
0
|
3283 "FONT %s %d %s %d %c",
|
|
3284 source_name, &source_char,
|
|
3285 mask_name, &mask_char, &dummy);
|
|
3286 /* Allow "%s %d %d" as well... */
|
|
3287 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
3288 count = 4, mask_name[0] = 0;
|
|
3289
|
|
3290 if (count != 2 && count != 4)
|
|
3291 signal_simple_error ("invalid cursor specification", data);
|
|
3292 source = safe_XLoadFont (dpy, source_name);
|
|
3293 if (! source)
|
|
3294 signal_simple_error_2 ("couldn't load font",
|
|
3295 build_string (source_name),
|
|
3296 data);
|
|
3297 if (count == 2)
|
|
3298 mask = 0;
|
|
3299 else if (!mask_name[0])
|
|
3300 mask = source;
|
|
3301 else
|
|
3302 {
|
|
3303 mask = safe_XLoadFont (dpy, mask_name);
|
|
3304 if (!mask)
|
|
3305 /* continuable */
|
|
3306 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
|
|
3307 build_string (mask_name), data));
|
|
3308 }
|
|
3309 if (!mask)
|
|
3310 mask_char = 0;
|
|
3311
|
|
3312 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
3313
|
|
3314 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
3315 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
3316 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
3317 &fg, &bg);
|
|
3318 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
3319 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
3320 XUnloadFont (dpy, source);
|
|
3321 if (mask && mask != source) XUnloadFont (dpy, mask);
|
|
3322 }
|
|
3323
|
|
3324
|
|
3325 /**********************************************************************
|
|
3326 * Cursor-Font *
|
|
3327 **********************************************************************/
|
|
3328
|
|
3329 static void
|
|
3330 cursor_font_validate (Lisp_Object instantiator)
|
|
3331 {
|
|
3332 data_must_be_present (instantiator);
|
|
3333 }
|
|
3334
|
|
3335 static int
|
74
|
3336 cursor_font_possible_dest_types (void)
|
0
|
3337 {
|
|
3338 return IMAGE_POINTER_MASK;
|
|
3339 }
|
|
3340
|
|
3341 static void
|
|
3342 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
3343 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
70
|
3344 int dest_mask)
|
0
|
3345 {
|
|
3346 /* This function can GC */
|
|
3347 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
3348 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
3349 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
3350 Display *dpy;
|
|
3351 int i;
|
|
3352 CONST char *name_ext;
|
|
3353 Lisp_Object foreground, background;
|
|
3354
|
|
3355 if (!DEVICE_X_P (XDEVICE (device)))
|
|
3356 signal_simple_error ("Not an X device", device);
|
|
3357
|
|
3358 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
3359
|
|
3360 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
3361 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
3362
|
|
3363 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
3364 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
|
|
3365 signal_simple_error ("Unrecognized cursor-font name", data);
|
|
3366
|
|
3367 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
3368 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
|
|
3369 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
3370 if (NILP (foreground))
|
|
3371 foreground = pointer_fg;
|
|
3372 background = find_keyword_in_vector (instantiator, Q_background);
|
|
3373 if (NILP (background))
|
|
3374 background = pointer_bg;
|
|
3375 maybe_recolor_cursor (image_instance, foreground, background);
|
|
3376 }
|
|
3377
|
|
3378 static int
|
|
3379 x_colorize_image_instance (Lisp_Object image_instance,
|
|
3380 Lisp_Object foreground, Lisp_Object background)
|
|
3381 {
|
|
3382 struct Lisp_Image_Instance *p;
|
|
3383
|
|
3384 p = XIMAGE_INSTANCE (image_instance);
|
|
3385
|
|
3386 switch (IMAGE_INSTANCE_TYPE (p))
|
|
3387 {
|
|
3388 case IMAGE_MONO_PIXMAP:
|
|
3389 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
3390 /* Make sure there aren't two pointers to the same mask, causing
|
|
3391 it to get freed twice. */
|
|
3392 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
3393 break;
|
|
3394
|
|
3395 default:
|
|
3396 return 0;
|
|
3397 }
|
|
3398
|
|
3399 {
|
|
3400 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
3401 Screen *scr = DefaultScreenOfDisplay (dpy);
|
|
3402 Dimension d = DefaultDepthOfScreen (scr);
|
|
3403 Pixmap new = XCreatePixmap (dpy, RootWindowOfScreen (scr),
|
|
3404 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
3405 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
|
|
3406 XColor color;
|
|
3407 XGCValues gcv;
|
|
3408 GC gc;
|
|
3409 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
|
|
3410 gcv.foreground = color.pixel;
|
|
3411 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
|
|
3412 gcv.background = color.pixel;
|
|
3413 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
|
|
3414 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
|
|
3415 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
3416 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
3417 0, 0, 1);
|
|
3418 XFreeGC (dpy, gc);
|
|
3419 IMAGE_INSTANCE_X_PIXMAP (p) = new;
|
|
3420 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
|
|
3421 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
3422 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
3423 return 1;
|
|
3424 }
|
|
3425 }
|
|
3426
|
|
3427
|
|
3428 /************************************************************************/
|
|
3429 /* subwindows */
|
|
3430 /************************************************************************/
|
|
3431
|
|
3432 Lisp_Object Qsubwindowp;
|
|
3433 static Lisp_Object mark_subwindow (Lisp_Object, void (*) (Lisp_Object));
|
|
3434 static void print_subwindow (Lisp_Object, Lisp_Object, int);
|
|
3435 static void finalize_subwindow (void *, int);
|
|
3436 static int subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth);
|
|
3437 static unsigned long subwindow_hash (Lisp_Object obj, int depth);
|
|
3438 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
|
|
3439 mark_subwindow, print_subwindow,
|
|
3440 finalize_subwindow, subwindow_equal,
|
|
3441 subwindow_hash, struct Lisp_Subwindow);
|
|
3442
|
|
3443 static Lisp_Object
|
|
3444 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
3445 {
|
|
3446 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
3447 return sw->frame;
|
|
3448 }
|
|
3449
|
|
3450 static void
|
|
3451 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
3452 {
|
|
3453 char buf[100];
|
|
3454 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
3455 struct frame *frm = XFRAME (sw->frame);
|
|
3456
|
|
3457 if (print_readably)
|
|
3458 error ("printing unreadable object #<subwindow 0x%x>",
|
|
3459 sw->header.uid);
|
|
3460
|
|
3461 write_c_string ("#<subwindow", printcharfun);
|
|
3462 sprintf (buf, " %dx%d", sw->width, sw->height);
|
|
3463 write_c_string (buf, printcharfun);
|
|
3464
|
|
3465 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
3466 are specific to a particular frame so we want to print in their
|
|
3467 description what that frame is. */
|
|
3468
|
|
3469 write_c_string (" on #<", printcharfun);
|
|
3470 if (!FRAME_LIVE_P (frm))
|
|
3471 write_c_string ("dead", printcharfun);
|
|
3472 else if (FRAME_TTY_P (frm))
|
|
3473 write_c_string ("tty", printcharfun);
|
|
3474 else if (FRAME_X_P (frm))
|
|
3475 write_c_string ("x", printcharfun);
|
|
3476 else
|
|
3477 write_c_string ("UNKNOWN", printcharfun);
|
|
3478 write_c_string ("-frame ", printcharfun);
|
|
3479 print_internal (frm->name, printcharfun, 1);
|
|
3480 sprintf (buf, " 0x%x>", frm->header.uid);
|
|
3481 write_c_string (buf, printcharfun);
|
|
3482
|
|
3483 sprintf (buf, ") 0x%x>", sw->header.uid);
|
|
3484 write_c_string (buf, printcharfun);
|
|
3485 }
|
|
3486
|
|
3487 static void
|
|
3488 finalize_subwindow (void *header, int for_disksave)
|
|
3489 {
|
|
3490 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
|
|
3491 if (for_disksave) finalose (sw);
|
|
3492 if (sw->subwindow)
|
|
3493 {
|
|
3494 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
|
|
3495 sw->subwindow = 0;
|
|
3496 }
|
|
3497 }
|
|
3498
|
|
3499 /* subwindows are equal iff they have the same window XID */
|
|
3500 static int
|
|
3501 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
3502 {
|
|
3503 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
|
|
3504 }
|
|
3505
|
|
3506 static unsigned long
|
|
3507 subwindow_hash (Lisp_Object obj, int depth)
|
|
3508 {
|
|
3509 return XSUBWINDOW (obj)->subwindow;
|
|
3510 }
|
|
3511
|
|
3512 /* #### PROBLEM: The display routines assume that the glyph is only
|
|
3513 being displayed in one buffer. If it is in two different buffers
|
|
3514 which are both being displayed simultaneously you will lose big time.
|
|
3515 This can be dealt with in the new redisplay. */
|
|
3516
|
70
|
3517 /* #### These are completely un-re-implemented in 19.14. Get it done
|
|
3518 for 19.15. */
|
0
|
3519
|
20
|
3520 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
|
0
|
3521 Creates a new `subwindow' object of size WIDTH x HEIGHT.
|
|
3522 The default is a window of size 1x1, which is also the minimum allowed
|
|
3523 window size. Subwindows are per-frame. A buffer being shown in two
|
|
3524 different frames will only display a subwindow glyph in the frame in
|
|
3525 which it was actually created. If two windows on the same frame are
|
|
3526 displaying the buffer then the most recently used window will actually
|
|
3527 display the window. If the frame is not specified, the selected frame
|
|
3528 is used.
|
|
3529
|
|
3530 Subwindows are not currently implemented.
|
20
|
3531 */
|
|
3532 (width, height, frame))
|
0
|
3533 {
|
|
3534 Display *dpy;
|
|
3535 Screen *xs;
|
|
3536 Window pw;
|
|
3537 struct frame *f;
|
|
3538 unsigned int iw, ih;
|
|
3539 XSetWindowAttributes xswa;
|
|
3540 Mask valueMask = 0;
|
|
3541
|
70
|
3542 error ("subwindows are not functional in 19.14; they will be in 19.15");
|
0
|
3543
|
|
3544 f = decode_x_frame (frame);
|
|
3545
|
|
3546 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
|
|
3547 dpy = DisplayOfScreen (xs);
|
|
3548 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
|
|
3549
|
|
3550 if (NILP (width))
|
|
3551 iw = 1;
|
|
3552 else
|
|
3553 {
|
|
3554 CHECK_INT (width);
|
|
3555 iw = XINT (width);
|
|
3556 if (iw < 1) iw = 1;
|
|
3557 }
|
|
3558 if (NILP (height))
|
|
3559 ih = 1;
|
|
3560 else
|
|
3561 {
|
|
3562 CHECK_INT (height);
|
|
3563 ih = XINT (height);
|
|
3564 if (ih < 1) ih = 1;
|
|
3565 }
|
|
3566
|
|
3567 {
|
|
3568 struct Lisp_Subwindow *sw = alloc_lcrecord (sizeof (struct Lisp_Subwindow),
|
|
3569 lrecord_subwindow);
|
|
3570 Lisp_Object val;
|
|
3571 sw->frame = frame;
|
|
3572 sw->xscreen = xs;
|
|
3573 sw->parent_window = pw;
|
|
3574 sw->height = ih;
|
|
3575 sw->width = iw;
|
|
3576
|
|
3577 xswa.backing_store = Always;
|
|
3578 valueMask |= CWBackingStore;
|
|
3579
|
|
3580 xswa.colormap = DefaultColormapOfScreen (xs);
|
|
3581 valueMask |= CWColormap;
|
|
3582
|
|
3583 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
|
|
3584 InputOutput, CopyFromParent, valueMask,
|
|
3585 &xswa);
|
|
3586
|
|
3587 XSETSUBWINDOW (val, sw);
|
|
3588 return val;
|
|
3589 }
|
|
3590 }
|
|
3591
|
|
3592 /* #### Should this function exist? */
|
20
|
3593 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
|
0
|
3594 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
|
|
3595 Subwindows are not currently implemented.
|
20
|
3596 */
|
|
3597 (subwindow, property, data))
|
0
|
3598 {
|
|
3599 Atom property_atom;
|
|
3600 struct Lisp_Subwindow *sw;
|
|
3601 Display *dpy;
|
|
3602
|
|
3603 CHECK_SUBWINDOW (subwindow);
|
|
3604 CHECK_STRING (property);
|
|
3605 CHECK_STRING (data);
|
|
3606
|
|
3607 sw = XSUBWINDOW (subwindow);
|
|
3608 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
|
|
3609 (FRAME_DEVICE (XFRAME (sw->frame))));
|
|
3610
|
16
|
3611 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
|
0
|
3612 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
|
16
|
3613 PropModeReplace,
|
|
3614 XSTRING_DATA (data),
|
14
|
3615 XSTRING_LENGTH (data));
|
0
|
3616
|
|
3617 return (property);
|
|
3618 }
|
|
3619
|
20
|
3620 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
0
|
3621 Return non-nil if OBJECT is a subwindow.
|
|
3622 Subwindows are not currently implemented.
|
20
|
3623 */
|
|
3624 (object))
|
0
|
3625 {
|
|
3626 return (SUBWINDOWP (object) ? Qt : Qnil);
|
|
3627 }
|
|
3628
|
20
|
3629 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
|
0
|
3630 Width of SUBWINDOW.
|
|
3631 Subwindows are not currently implemented.
|
20
|
3632 */
|
|
3633 (subwindow))
|
0
|
3634 {
|
|
3635 CHECK_SUBWINDOW (subwindow);
|
|
3636 return (make_int (XSUBWINDOW (subwindow)->width));
|
|
3637 }
|
|
3638
|
20
|
3639 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
|
0
|
3640 Height of SUBWINDOW.
|
|
3641 Subwindows are not currently implemented.
|
20
|
3642 */
|
|
3643 (subwindow))
|
0
|
3644 {
|
|
3645 CHECK_SUBWINDOW (subwindow);
|
|
3646 return (make_int (XSUBWINDOW (subwindow)->height));
|
|
3647 }
|
|
3648
|
20
|
3649 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
|
0
|
3650 Return the xid of SUBWINDOW as a number.
|
|
3651 Subwindows are not currently implemented.
|
20
|
3652 */
|
|
3653 (subwindow))
|
0
|
3654 {
|
|
3655 CHECK_SUBWINDOW (subwindow);
|
|
3656 return (make_int (XSUBWINDOW (subwindow)->subwindow));
|
|
3657 }
|
|
3658
|
20
|
3659 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
0
|
3660 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
3661 If a value is nil that parameter is not changed.
|
|
3662 Subwindows are not currently implemented.
|
20
|
3663 */
|
|
3664 (subwindow, width, height))
|
0
|
3665 {
|
|
3666 int neww, newh;
|
|
3667 struct Lisp_Subwindow *sw;
|
|
3668
|
|
3669 CHECK_SUBWINDOW (subwindow);
|
|
3670 sw = XSUBWINDOW (subwindow);
|
|
3671
|
|
3672 if (NILP (width))
|
|
3673 neww = sw->width;
|
|
3674 else
|
|
3675 neww = XINT (width);
|
|
3676
|
|
3677 if (NILP (height))
|
|
3678 newh = sw->height;
|
|
3679 else
|
|
3680 newh = XINT (height);
|
|
3681
|
|
3682 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
|
|
3683
|
|
3684 sw->height = newh;
|
|
3685 sw->width = neww;
|
|
3686
|
|
3687 return subwindow;
|
|
3688 }
|
|
3689
|
20
|
3690 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
0
|
3691 Generate a Map event for SUBWINDOW.
|
|
3692 Subwindows are not currently implemented.
|
20
|
3693 */
|
|
3694 (subwindow))
|
0
|
3695 {
|
|
3696 CHECK_SUBWINDOW (subwindow);
|
|
3697
|
|
3698 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
|
|
3699 XSUBWINDOW (subwindow)->subwindow);
|
|
3700
|
|
3701 return subwindow;
|
|
3702 }
|
70
|
3703
|
0
|
3704
|
|
3705 /************************************************************************/
|
|
3706 /* initialization */
|
|
3707 /************************************************************************/
|
|
3708
|
|
3709 void
|
|
3710 syms_of_glyphs_x (void)
|
|
3711 {
|
|
3712 defsymbol (&Qsubwindowp, "subwindowp");
|
|
3713
|
20
|
3714 DEFSUBR (Fmake_subwindow);
|
|
3715 DEFSUBR (Fchange_subwindow_property);
|
|
3716 DEFSUBR (Fsubwindowp);
|
|
3717 DEFSUBR (Fsubwindow_width);
|
|
3718 DEFSUBR (Fsubwindow_height);
|
|
3719 DEFSUBR (Fsubwindow_xid);
|
|
3720 DEFSUBR (Fresize_subwindow);
|
|
3721 DEFSUBR (Fforce_subwindow_map);
|
0
|
3722
|
|
3723 defkeyword (&Q_mask_file, ":mask-file");
|
|
3724 defkeyword (&Q_mask_data, ":mask-data");
|
|
3725 defkeyword (&Q_hotspot_x, ":hotspot-x");
|
|
3726 defkeyword (&Q_hotspot_y, ":hotspot-y");
|
|
3727 defkeyword (&Q_foreground, ":foreground");
|
|
3728 defkeyword (&Q_background, ":background");
|
|
3729
|
|
3730 #ifdef HAVE_XPM
|
|
3731 defkeyword (&Q_color_symbols, ":color-symbols");
|
|
3732 #endif
|
|
3733 }
|
|
3734
|
|
3735 void
|
|
3736 console_type_create_glyphs_x (void)
|
|
3737 {
|
|
3738 /* image methods */
|
|
3739
|
|
3740 CONSOLE_HAS_METHOD (x, print_image_instance);
|
|
3741 CONSOLE_HAS_METHOD (x, finalize_image_instance);
|
|
3742 CONSOLE_HAS_METHOD (x, image_instance_equal);
|
|
3743 CONSOLE_HAS_METHOD (x, image_instance_hash);
|
|
3744 CONSOLE_HAS_METHOD (x, colorize_image_instance);
|
|
3745 }
|
|
3746
|
|
3747 void
|
|
3748 image_instantiator_format_create_glyphs_x (void)
|
|
3749 {
|
|
3750 /* image-instantiator types */
|
|
3751
|
|
3752 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
3753
|
|
3754 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
3755 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
3756 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
3757 IIFORMAT_HAS_METHOD (xbm, instantiate);
|
|
3758
|
|
3759 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
3760 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
3761 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
3762 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
3763 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
3764 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
3765 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
3766 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
3767
|
|
3768 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
3769
|
|
3770 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
3771 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
3772 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
3773
|
|
3774 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
3775 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
3776 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
3777
|
|
3778 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
3779
|
|
3780 IIFORMAT_HAS_METHOD (font, validate);
|
|
3781 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
3782 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
3783
|
|
3784 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
3785 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
3786 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
3787
|
|
3788 #ifdef HAVE_JPEG
|
|
3789 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (jpeg, "jpeg");
|
|
3790
|
|
3791 IIFORMAT_HAS_METHOD (jpeg, validate);
|
|
3792 IIFORMAT_HAS_METHOD (jpeg, normalize);
|
|
3793 IIFORMAT_HAS_METHOD (jpeg, possible_dest_types);
|
|
3794 IIFORMAT_HAS_METHOD (jpeg, instantiate);
|
|
3795
|
|
3796 IIFORMAT_VALID_KEYWORD (jpeg, Q_data, check_valid_string);
|
|
3797 IIFORMAT_VALID_KEYWORD (jpeg, Q_file, check_valid_string);
|
|
3798 #endif
|
|
3799
|
|
3800 #ifdef HAVE_GIF
|
|
3801 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gif, "gif");
|
|
3802
|
|
3803 IIFORMAT_HAS_METHOD (gif, validate);
|
|
3804 IIFORMAT_HAS_METHOD (gif, normalize);
|
|
3805 IIFORMAT_HAS_METHOD (gif, possible_dest_types);
|
|
3806 IIFORMAT_HAS_METHOD (gif, instantiate);
|
|
3807
|
|
3808 IIFORMAT_VALID_KEYWORD (gif, Q_data, check_valid_string);
|
|
3809 IIFORMAT_VALID_KEYWORD (gif, Q_file, check_valid_string);
|
|
3810 #endif
|
|
3811
|
|
3812 #ifdef HAVE_PNG
|
|
3813 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (png, "png");
|
|
3814
|
|
3815 IIFORMAT_HAS_METHOD (png, validate);
|
|
3816 IIFORMAT_HAS_METHOD (png, normalize);
|
|
3817 IIFORMAT_HAS_METHOD (png, possible_dest_types);
|
|
3818 IIFORMAT_HAS_METHOD (png, instantiate);
|
|
3819
|
|
3820 IIFORMAT_VALID_KEYWORD (png, Q_data, check_valid_string);
|
|
3821 IIFORMAT_VALID_KEYWORD (png, Q_file, check_valid_string);
|
|
3822 #endif
|
|
3823
|
|
3824 #ifdef HAVE_TIFF
|
|
3825 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (tiff, "tiff");
|
|
3826
|
|
3827 IIFORMAT_HAS_METHOD (tiff, validate);
|
|
3828 IIFORMAT_HAS_METHOD (tiff, normalize);
|
|
3829 IIFORMAT_HAS_METHOD (tiff, possible_dest_types);
|
|
3830 IIFORMAT_HAS_METHOD (tiff, instantiate);
|
|
3831
|
|
3832 IIFORMAT_VALID_KEYWORD (tiff, Q_data, check_valid_string);
|
|
3833 IIFORMAT_VALID_KEYWORD (tiff, Q_file, check_valid_string);
|
|
3834 #endif
|
|
3835
|
|
3836 #ifdef HAVE_XPM
|
|
3837 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
|
|
3838
|
|
3839 IIFORMAT_HAS_METHOD (xpm, validate);
|
|
3840 IIFORMAT_HAS_METHOD (xpm, normalize);
|
|
3841 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
|
|
3842 IIFORMAT_HAS_METHOD (xpm, instantiate);
|
|
3843
|
|
3844 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
|
|
3845 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
|
|
3846 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
|
|
3847 #endif
|
|
3848
|
|
3849 #ifdef HAVE_XFACE
|
|
3850 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
3851
|
|
3852 IIFORMAT_HAS_METHOD (xface, validate);
|
|
3853 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
3854 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
3855 IIFORMAT_HAS_METHOD (xface, instantiate);
|
|
3856
|
|
3857 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
3858 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
3859 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
3860 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
3861 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
3862 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
|
3863 #endif
|
|
3864
|
|
3865 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect, "autodetect");
|
|
3866
|
|
3867 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
3868 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
3869 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
3870 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
3871
|
|
3872 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
|
3873 }
|
|
3874
|
|
3875 void
|
|
3876 vars_of_glyphs_x (void)
|
|
3877 {
|
|
3878 #ifdef HAVE_JPEG
|
|
3879 Fprovide (Qjpeg);
|
|
3880 #endif
|
|
3881
|
|
3882 #ifdef HAVE_GIF
|
|
3883 Fprovide (Qgif);
|
|
3884 #endif
|
|
3885
|
|
3886 #ifdef HAVE_PNG
|
|
3887 Fprovide (Qpng);
|
|
3888 #endif
|
|
3889
|
|
3890 #ifdef HAVE_TIFF
|
|
3891 Fprovide (Qtiff);
|
|
3892 #endif
|
|
3893
|
|
3894 #ifdef HAVE_XPM
|
|
3895 Fprovide (Qxpm);
|
|
3896
|
|
3897 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
|
|
3898 Definitions of logical color-names used when reading XPM files.
|
|
3899 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
|
|
3900 The COLOR-NAME should be a string, which is the name of the color to define;
|
|
3901 the FORM should evaluate to a `color' specifier object, or a string to be
|
|
3902 passed to `make-color-instance'. If a loaded XPM file references a symbolic
|
|
3903 color called COLOR-NAME, it will display as the computed color instead.
|
|
3904
|
|
3905 The default value of this variable defines the logical color names
|
|
3906 \"foreground\" and \"background\" to be the colors of the `default' face.
|
|
3907 */ );
|
|
3908 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
|
|
3909 #endif
|
|
3910
|
|
3911 #ifdef HAVE_XFACE
|
|
3912 Fprovide (Qxface);
|
|
3913 #endif
|
|
3914
|
|
3915 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
|
|
3916 A list of the directories in which X bitmap files may be found.
|
|
3917 If nil, this is initialized from the \"*bitmapFilePath\" resource.
|
|
3918 This is used by the `make-image-instance' function (however, note that if
|
|
3919 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
3920 */ );
|
|
3921 Vx_bitmap_file_path = Qnil;
|
|
3922 }
|
|
3923
|
|
3924 void
|
|
3925 complex_vars_of_glyphs_x (void)
|
|
3926 {
|
|
3927 #define BUILD_GLYPH_INST(variable, name) \
|
|
3928 Fadd_spec_to_specifier \
|
|
3929 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
3930 vector3 (Qxbm, Q_data, \
|
|
3931 list3 (make_int (name##_width), \
|
|
3932 make_int (name##_height), \
|
|
3933 make_ext_string (name##_bits, \
|
|
3934 sizeof (name##_bits), \
|
|
3935 FORMAT_BINARY))), \
|
|
3936 Qglobal, Qx, Qnil)
|
|
3937
|
|
3938 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
3939 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
3940 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
74
|
3941 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
0
|
3942
|
|
3943 #undef BUILD_GLYPH_INST
|
|
3944 }
|