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