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
|
185
|
32 rewritten/restructured by Ben Wing for 19.12/19.13
|
0
|
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:
|
207
|
40 ImageMagick support
|
0
|
41 Convert images.el to C and stick it in here?
|
|
42 */
|
|
43
|
|
44 #include <config.h>
|
|
45 #include "lisp.h"
|
|
46
|
|
47 #include "console-x.h"
|
|
48 #include "glyphs-x.h"
|
|
49 #include "objects-x.h"
|
|
50 #include "xmu.h"
|
|
51
|
|
52 #include "buffer.h"
|
|
53 #include "frame.h"
|
|
54 #include "insdel.h"
|
|
55 #include "opaque.h"
|
|
56
|
|
57 #include "sysfile.h"
|
|
58
|
207
|
59 #ifdef HAVE_IMAGEMAGICK
|
223
|
60 #ifdef SOLARIS2 /* Try to trick magick.h into not including Xos.h */
|
|
61 #define _XOS_H_
|
|
62 #endif
|
|
63 #ifdef MAGICK_HEADERS_ARE_UNDER_X11
|
|
64 #include <X11/magick/magick.h>
|
|
65 #else
|
217
|
66 #include <magick/magick.h>
|
223
|
67 #endif
|
215
|
68 /*#include <image.h>*/
|
223
|
69 /*#include <assert.h>*/
|
221
|
70
|
|
71 #define OLDCOMPAT /* allow lisp code using the old names to still function */
|
138
|
72 #endif
|
0
|
73
|
|
74 #define LISP_DEVICE_TO_X_SCREEN(dev) \
|
|
75 XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
|
|
76
|
|
77 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
|
|
78 Lisp_Object Qxbm;
|
|
79
|
|
80 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
|
|
81 Lisp_Object Q_foreground, Q_background;
|
|
82
|
|
83 #ifdef HAVE_XPM
|
|
84 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
|
|
85 Lisp_Object Qxpm;
|
|
86 Lisp_Object Q_color_symbols;
|
|
87 #endif
|
|
88
|
|
89 #ifdef HAVE_XFACE
|
|
90 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
|
|
91 Lisp_Object Qxface;
|
|
92 #endif
|
|
93
|
207
|
94 #ifdef HAVE_IMAGEMAGICK
|
|
95 DEFINE_IMAGE_INSTANTIATOR_FORMAT (imagick);
|
|
96 Lisp_Object Qimagick;
|
221
|
97
|
|
98 #ifdef OLDCOMPAT /* old compatibility */
|
|
99 DEFINE_IMAGE_INSTANTIATOR_FORMAT (tiff);
|
|
100 DEFINE_IMAGE_INSTANTIATOR_FORMAT (png);
|
|
101 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gif);
|
|
102 DEFINE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
|
|
103 Lisp_Object Qtiff;
|
|
104 Lisp_Object Qpng;
|
|
105 Lisp_Object Qgif;
|
|
106 Lisp_Object Qjpeg;
|
|
107 #endif
|
0
|
108 #endif
|
|
109
|
|
110 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
|
|
111 Lisp_Object Qcursor_font;
|
|
112
|
|
113 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
|
|
114
|
122
|
115 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
|
0
|
116
|
|
117 static void cursor_font_instantiate (Lisp_Object image_instance,
|
|
118 Lisp_Object instantiator,
|
|
119 Lisp_Object pointer_fg,
|
|
120 Lisp_Object pointer_bg,
|
124
|
121 int dest_mask,
|
|
122 Lisp_Object domain);
|
0
|
123
|
|
124 #include "bitmaps.h"
|
|
125
|
|
126
|
|
127 /************************************************************************/
|
|
128 /* image instance methods */
|
|
129 /************************************************************************/
|
|
130
|
|
131 static void
|
|
132 x_print_image_instance (struct Lisp_Image_Instance *p,
|
|
133 Lisp_Object printcharfun,
|
|
134 int escapeflag)
|
|
135 {
|
|
136 char buf[100];
|
|
137
|
|
138 switch (IMAGE_INSTANCE_TYPE (p))
|
|
139 {
|
|
140 case IMAGE_MONO_PIXMAP:
|
|
141 case IMAGE_COLOR_PIXMAP:
|
|
142 case IMAGE_POINTER:
|
|
143 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
|
|
144 write_c_string (buf, printcharfun);
|
|
145 if (IMAGE_INSTANCE_X_MASK (p))
|
|
146 {
|
|
147 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
|
|
148 write_c_string (buf, printcharfun);
|
|
149 }
|
|
150 write_c_string (")", printcharfun);
|
|
151 break;
|
114
|
152 #if HAVE_SUBWINDOWS
|
0
|
153 case IMAGE_SUBWINDOW:
|
|
154 /* #### implement me */
|
114
|
155 #endif
|
0
|
156 default:
|
|
157 break;
|
|
158 }
|
|
159 }
|
|
160
|
|
161 static void
|
|
162 x_finalize_image_instance (struct Lisp_Image_Instance *p)
|
|
163 {
|
|
164 if (!p->data)
|
|
165 return;
|
|
166
|
|
167 if (DEVICE_LIVE_P (XDEVICE (p->device)))
|
|
168 {
|
219
|
169 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
|
0
|
170
|
|
171 if (IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
172 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
|
0
|
173 if (IMAGE_INSTANCE_X_MASK (p) &&
|
|
174 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
175 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
|
0
|
176 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
|
|
177 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
178
|
|
179 if (IMAGE_INSTANCE_X_CURSOR (p))
|
|
180 {
|
219
|
181 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
|
0
|
182 IMAGE_INSTANCE_X_CURSOR (p) = 0;
|
|
183 }
|
|
184
|
|
185 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
|
|
186 {
|
219
|
187 XFreeColors (dpy,
|
|
188 DEVICE_X_COLORMAP (XDEVICE(p->device)),
|
0
|
189 IMAGE_INSTANCE_X_PIXELS (p),
|
|
190 IMAGE_INSTANCE_X_NPIXELS (p), 0);
|
|
191 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
|
|
192 }
|
|
193 }
|
|
194 if (IMAGE_INSTANCE_X_PIXELS (p))
|
|
195 {
|
|
196 xfree (IMAGE_INSTANCE_X_PIXELS (p));
|
|
197 IMAGE_INSTANCE_X_PIXELS (p) = 0;
|
|
198 }
|
|
199
|
|
200 xfree (p->data);
|
|
201 p->data = 0;
|
|
202 }
|
|
203
|
|
204 static int
|
|
205 x_image_instance_equal (struct Lisp_Image_Instance *p1,
|
|
206 struct Lisp_Image_Instance *p2, int depth)
|
|
207 {
|
|
208 switch (IMAGE_INSTANCE_TYPE (p1))
|
|
209 {
|
|
210 case IMAGE_MONO_PIXMAP:
|
|
211 case IMAGE_COLOR_PIXMAP:
|
|
212 case IMAGE_POINTER:
|
|
213 if (IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
|
|
214 return 0;
|
114
|
215 #if HAVE_SUBWINDOWS
|
0
|
216 case IMAGE_SUBWINDOW:
|
|
217 /* #### implement me */
|
114
|
218 #endif
|
56
|
219 break;
|
0
|
220 default:
|
|
221 break;
|
|
222 }
|
|
223
|
|
224 return 1;
|
|
225 }
|
|
226
|
|
227 static unsigned long
|
|
228 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
|
|
229 {
|
|
230 switch (IMAGE_INSTANCE_TYPE (p))
|
|
231 {
|
|
232 case IMAGE_MONO_PIXMAP:
|
|
233 case IMAGE_COLOR_PIXMAP:
|
|
234 case IMAGE_POINTER:
|
|
235 return IMAGE_INSTANCE_X_NPIXELS (p);
|
114
|
236 #if HAVE_SUBWINDOWS
|
0
|
237 case IMAGE_SUBWINDOW:
|
|
238 /* #### implement me */
|
149
|
239 return 0;
|
114
|
240 #endif
|
0
|
241 default:
|
|
242 return 0;
|
|
243 }
|
|
244 }
|
|
245
|
|
246 /* Set all the slots in an image instance structure to reasonable
|
|
247 default values. This is used somewhere within an instantiate
|
|
248 method. It is assumed that the device slot within the image
|
|
249 instance is already set -- this is the case when instantiate
|
|
250 methods are called. */
|
|
251
|
|
252 static void
|
|
253 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
|
|
254 enum image_instance_type type)
|
|
255 {
|
185
|
256 ii->data = xnew_and_zero (struct x_image_instance_data);
|
0
|
257 IMAGE_INSTANCE_TYPE (ii) = type;
|
|
258 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
259 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
|
|
260 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
|
|
261 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
|
|
262 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
|
|
263 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
|
|
264 }
|
|
265
|
|
266
|
|
267 /************************************************************************/
|
|
268 /* pixmap file functions */
|
|
269 /************************************************************************/
|
|
270
|
|
271 /* Where bitmaps are; initialized from resource database */
|
|
272 Lisp_Object Vx_bitmap_file_path;
|
|
273
|
|
274 #ifndef BITMAPDIR
|
|
275 #define BITMAPDIR "/usr/include/X11/bitmaps"
|
|
276 #endif
|
|
277
|
|
278 #define USE_XBMLANGPATH
|
|
279
|
|
280 /* Given a pixmap filename, look through all of the "standard" places
|
|
281 where the file might be located. Return a full pathname if found;
|
|
282 otherwise, return Qnil. */
|
|
283
|
|
284 static Lisp_Object
|
|
285 locate_pixmap_file (Lisp_Object name)
|
|
286 {
|
|
287 /* This function can GC if IN_REDISPLAY is false */
|
|
288 Display *display;
|
|
289
|
|
290 /* Check non-absolute pathnames with a directory component relative to
|
|
291 the search path; that's the way Xt does it. */
|
|
292 /* #### Unix-specific */
|
80
|
293 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
294 (XSTRING_BYTE (name, 0) == '.' &&
|
|
295 (XSTRING_BYTE (name, 1) == '/' ||
|
|
296 (XSTRING_BYTE (name, 1) == '.' &&
|
|
297 (XSTRING_BYTE (name, 2) == '/')))))
|
0
|
298 {
|
|
299 if (!NILP (Ffile_readable_p (name)))
|
|
300 return name;
|
|
301 else
|
|
302 return Qnil;
|
|
303 }
|
|
304
|
|
305 if (NILP (Vdefault_x_device))
|
|
306 /* This may occur during intialization. */
|
|
307 return Qnil;
|
|
308 else
|
|
309 /* We only check the bitmapFilePath resource on the original X device. */
|
|
310 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
|
|
311
|
|
312 #ifdef USE_XBMLANGPATH
|
|
313 {
|
|
314 char *path = egetenv ("XBMLANGPATH");
|
|
315 SubstitutionRec subs[1];
|
|
316 subs[0].match = 'B';
|
14
|
317 subs[0].substitution = (char *) XSTRING_DATA (name);
|
0
|
318 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
|
|
319 We don't. If you want it used, set it. */
|
|
320 if (path &&
|
|
321 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
|
|
322 subs, XtNumber (subs), 0)))
|
|
323 {
|
|
324 name = build_string (path);
|
|
325 XtFree (path);
|
|
326 return (name);
|
|
327 }
|
|
328 }
|
|
329 #endif
|
|
330
|
|
331 if (NILP (Vx_bitmap_file_path))
|
|
332 {
|
|
333 char *type = 0;
|
|
334 XrmValue value;
|
|
335 if (XrmGetResource (XtDatabase (display),
|
|
336 "bitmapFilePath", "BitmapFilePath", &type, &value)
|
|
337 && !strcmp (type, "String"))
|
|
338 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
|
|
339 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
|
|
340 (list1 (build_string (BITMAPDIR))));
|
|
341 }
|
|
342
|
|
343 {
|
|
344 Lisp_Object found;
|
|
345 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
|
|
346 {
|
|
347 Lisp_Object temp = list1 (Vdata_directory);
|
|
348 struct gcpro gcpro1;
|
|
349
|
|
350 GCPRO1 (temp);
|
|
351 locate_file (temp, name, "", &found, R_OK);
|
|
352 UNGCPRO;
|
|
353 }
|
|
354
|
|
355 return found;
|
|
356 }
|
|
357 }
|
|
358
|
|
359 /* If INSTANTIATOR refers to inline data, return Qnil.
|
|
360 If INSTANTIATOR refers to data in a file, return the full filename
|
|
361 if it exists; otherwise, return a cons of (filename).
|
|
362
|
|
363 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
|
|
364 keywords used to look up the file and inline data,
|
|
365 respectively, in the instantiator. Normally these would
|
|
366 be Q_file and Q_data, but might be different for mask data. */
|
|
367
|
|
368 static Lisp_Object
|
|
369 potential_pixmap_file_instantiator (Lisp_Object instantiator,
|
|
370 Lisp_Object file_keyword,
|
|
371 Lisp_Object data_keyword)
|
|
372 {
|
|
373 Lisp_Object file;
|
|
374 Lisp_Object data;
|
|
375
|
|
376 assert (VECTORP (instantiator));
|
185
|
377
|
0
|
378 data = find_keyword_in_vector (instantiator, data_keyword);
|
|
379 file = find_keyword_in_vector (instantiator, file_keyword);
|
|
380
|
|
381 if (!NILP (file) && NILP (data))
|
|
382 {
|
|
383 Lisp_Object retval = locate_pixmap_file (file);
|
|
384 if (!NILP (retval))
|
|
385 return retval;
|
|
386 else
|
|
387 return Fcons (file, Qnil); /* should have been file */
|
|
388 }
|
|
389
|
|
390 return Qnil;
|
|
391 }
|
|
392
|
|
393
|
|
394 static Lisp_Object
|
|
395 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
396 Lisp_Object image_type_tag)
|
|
397 {
|
116
|
398 /* This function can call lisp */
|
0
|
399 Lisp_Object file = Qnil;
|
|
400 struct gcpro gcpro1, gcpro2;
|
|
401 Lisp_Object alist = Qnil;
|
185
|
402
|
0
|
403 GCPRO2 (file, alist);
|
|
404
|
|
405 /* Now, convert any file data into inline data. At the end of this,
|
|
406 `data' will contain the inline data (if any) or Qnil, and `file'
|
|
407 will contain the name this data was derived from (if known) or
|
|
408 Qnil.
|
|
409
|
|
410 Note that if we cannot generate any regular inline data, we
|
|
411 skip out. */
|
|
412
|
|
413 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
414
|
|
415 if (CONSP (file)) /* failure locating filename */
|
|
416 signal_double_file_error ("Opening pixmap file",
|
|
417 "no such file or directory",
|
|
418 Fcar (file));
|
|
419
|
|
420 if (NILP (file)) /* no conversion necessary */
|
|
421 RETURN_UNGCPRO (inst);
|
|
422
|
|
423 alist = tagged_vector_to_alist (inst);
|
|
424
|
|
425 {
|
|
426 Lisp_Object data = make_string_from_file (file);
|
|
427 alist = remassq_no_quit (Q_file, alist);
|
|
428 /* there can't be a :data at this point. */
|
|
429 alist = Fcons (Fcons (Q_file, file),
|
|
430 Fcons (Fcons (Q_data, data), alist));
|
|
431 }
|
|
432
|
|
433 {
|
|
434 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
|
|
435 free_alist (alist);
|
|
436 RETURN_UNGCPRO (result);
|
|
437 }
|
|
438 }
|
|
439
|
|
440 static void
|
|
441 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
|
|
442 {
|
|
443 Extbyte *bytes;
|
|
444 Extcount len;
|
|
445 FILE *stream;
|
185
|
446
|
0
|
447 /* #### This is a definite problem under Mule due to the amount of
|
|
448 stack data it might allocate. Need to be able to convert and
|
|
449 write out to a file. */
|
|
450 GET_STRING_BINARY_DATA_ALLOCA (string, bytes, len);
|
|
451
|
|
452 /* Write out to a temporary file ... */
|
|
453 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
|
|
454 mktemp (filename_out);
|
|
455 stream = fopen (filename_out, "w");
|
|
456 if (!stream)
|
|
457 {
|
|
458 temp_file_error:
|
|
459 if (stream)
|
|
460 {
|
|
461 int old_errno = errno;
|
|
462 fclose (stream);
|
|
463 unlink (filename_out);
|
|
464 errno = old_errno;
|
|
465 }
|
|
466 report_file_error ("Creating temp file",
|
|
467 list1 (build_string (filename_out)));
|
|
468 }
|
|
469
|
|
470 if (fwrite (bytes, len, 1, stream) != 1)
|
|
471 goto temp_file_error;
|
|
472
|
|
473 if (fclose (stream) != 0)
|
|
474 {
|
|
475 stream = 0;
|
|
476 goto temp_file_error;
|
|
477 }
|
|
478 }
|
|
479
|
|
480
|
|
481 /************************************************************************/
|
|
482 /* cursor functions */
|
|
483 /************************************************************************/
|
|
484
|
|
485 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
|
|
486 not, signal an error. INSTANTIATOR is only used in the error
|
|
487 message. */
|
|
488
|
|
489 static void
|
|
490 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
|
|
491 Lisp_Object instantiator)
|
|
492 {
|
|
493 unsigned int best_width, best_height;
|
|
494 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
|
|
495 width, height, &best_width, &best_height))
|
|
496 /* this means that an X error of some sort occurred (we trap
|
|
497 these so they're not fatal). */
|
|
498 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
|
|
499
|
|
500 if (width > best_width || height > best_height)
|
|
501 error_with_frob (instantiator,
|
|
502 "pointer too large (%dx%d): "
|
|
503 "server requires %dx%d or smaller",
|
|
504 width, height, best_width, best_height);
|
|
505 }
|
|
506
|
|
507
|
|
508 static void
|
|
509 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
|
|
510 Lisp_Object *background, XColor *xfg, XColor *xbg)
|
|
511 {
|
|
512 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
|
|
513 *foreground =
|
|
514 Fmake_color_instance (*foreground, device,
|
|
515 encode_error_behavior_flag (ERROR_ME));
|
|
516 if (COLOR_INSTANCEP (*foreground))
|
|
517 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
|
|
518 else
|
|
519 {
|
|
520 xfg->pixel = 0;
|
|
521 xfg->red = xfg->green = xfg->blue = 0;
|
|
522 }
|
185
|
523
|
0
|
524 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
|
|
525 *background =
|
|
526 Fmake_color_instance (*background, device,
|
|
527 encode_error_behavior_flag (ERROR_ME));
|
|
528 if (COLOR_INSTANCEP (*background))
|
|
529 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
|
|
530 else
|
|
531 {
|
|
532 xbg->pixel = 0;
|
|
533 xbg->red = xbg->green = xbg->blue = ~0;
|
|
534 }
|
|
535 }
|
|
536
|
|
537 static void
|
|
538 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
|
|
539 Lisp_Object background)
|
|
540 {
|
|
541 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
542 XColor xfg, xbg;
|
|
543
|
|
544 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
|
|
545 if (!NILP (foreground) || !NILP (background))
|
|
546 {
|
|
547 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
|
|
548 XIMAGE_INSTANCE_X_CURSOR (image_instance),
|
|
549 &xfg, &xbg);
|
|
550 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
551 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
552 }
|
|
553 }
|
|
554
|
|
555
|
|
556 /************************************************************************/
|
|
557 /* color pixmap functions */
|
|
558 /************************************************************************/
|
|
559
|
|
560 /* Initialize an image instance from an XImage.
|
|
561
|
|
562 DEST_MASK specifies the mask of allowed image types.
|
|
563
|
|
564 PIXELS and NPIXELS specify an array of pixels that are used in
|
|
565 the image. These need to be kept around for the duration of the
|
|
566 image. When the image instance is freed, XFreeColors() will
|
|
567 automatically be called on all the pixels specified here; thus,
|
|
568 you should have allocated the pixels yourself using XAllocColor()
|
|
569 or the like. The array passed in is used directly without
|
|
570 being copied, so it should be heap data created with xmalloc().
|
|
571 It will be freed using xfree() when the image instance is
|
|
572 destroyed.
|
|
573
|
|
574 If this fails, signal an error. INSTANTIATOR is only used
|
|
575 in the error message.
|
|
576
|
|
577 #### This should be able to handle conversion into `pointer'.
|
|
578 Use the same code as for `xpm'. */
|
|
579
|
|
580 static void
|
|
581 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
|
|
582 XImage *ximage,
|
|
583 int dest_mask,
|
|
584 unsigned long *pixels,
|
|
585 int npixels,
|
|
586 Lisp_Object instantiator)
|
|
587 {
|
|
588 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
589 Display *dpy;
|
|
590 GC gc;
|
|
591 Drawable d;
|
|
592 Pixmap pixmap;
|
|
593
|
|
594 if (!DEVICE_X_P (XDEVICE (device)))
|
|
595 signal_simple_error ("Not an X device", device);
|
|
596
|
|
597 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
598 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
599
|
|
600 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
601 incompatible_image_types (instantiator, dest_mask,
|
|
602 IMAGE_COLOR_PIXMAP_MASK);
|
185
|
603
|
0
|
604 pixmap = XCreatePixmap (dpy, d, ximage->width,
|
|
605 ximage->height, ximage->depth);
|
|
606 if (!pixmap)
|
|
607 signal_simple_error ("Unable to create pixmap", instantiator);
|
|
608
|
|
609 gc = XCreateGC (dpy, pixmap, 0, NULL);
|
|
610 if (!gc)
|
|
611 {
|
|
612 XFreePixmap (dpy, pixmap);
|
|
613 signal_simple_error ("Unable to create GC", instantiator);
|
|
614 }
|
185
|
615
|
0
|
616 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
|
|
617 ximage->width, ximage->height);
|
185
|
618
|
0
|
619 XFreeGC (dpy, gc);
|
|
620
|
|
621 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
|
|
622
|
|
623 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
624 find_keyword_in_vector (instantiator, Q_file);
|
185
|
625
|
0
|
626 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
627 IMAGE_INSTANCE_X_MASK (ii) = 0;
|
|
628 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
|
|
629 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
|
|
630 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
|
|
631 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
632 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
633 }
|
|
634
|
|
635
|
|
636 /**********************************************************************
|
|
637 * XBM *
|
|
638 **********************************************************************/
|
|
639
|
|
640 /* Check if DATA represents a valid inline XBM spec (i.e. a list
|
|
641 of (width height bits), with checking done on the dimensions).
|
|
642 If not, signal an error. */
|
|
643
|
|
644 static void
|
|
645 check_valid_xbm_inline (Lisp_Object data)
|
|
646 {
|
|
647 Lisp_Object width, height, bits;
|
|
648
|
|
649 CHECK_CONS (data);
|
|
650 if (!CONSP (XCDR (data)) || !CONSP (XCDR (XCDR (data))) ||
|
|
651 !NILP (XCDR (XCDR (XCDR (data)))))
|
|
652 signal_simple_error ("Must be list of 3 elements", data);
|
|
653
|
|
654 width = XCAR (data);
|
|
655 height = XCAR (XCDR (data));
|
|
656 bits = XCAR (XCDR (XCDR (data)));
|
|
657
|
|
658 if (!INTP (width) || !INTP (height) || !STRINGP (bits))
|
|
659 signal_simple_error ("Must be (width height bits)",
|
|
660 vector3 (width, height, bits));
|
|
661
|
|
662 if (XINT (width) <= 0)
|
|
663 signal_simple_error ("Width must be > 0", width);
|
|
664
|
|
665 if (XINT (height) <= 0)
|
|
666 signal_simple_error ("Height must be > 0", height);
|
|
667
|
|
668 if (((unsigned) (XINT (width) * XINT (height)) / 8)
|
|
669 > string_char_length (XSTRING (bits)))
|
|
670 signal_simple_error ("data is too short for W and H",
|
|
671 vector3 (width, height, bits));
|
|
672 }
|
|
673
|
|
674 /* Validate method for XBM's. */
|
|
675
|
|
676 static void
|
|
677 xbm_validate (Lisp_Object instantiator)
|
|
678 {
|
|
679 file_or_data_must_be_present (instantiator);
|
|
680 }
|
|
681
|
|
682 /* Given a filename that is supposed to contain XBM data, return
|
|
683 the inline representation of it as (width height bits). Return
|
|
684 the hotspot through XHOT and YHOT, if those pointers are not 0.
|
|
685 If there is no hotspot, XHOT and YHOT will contain -1.
|
|
686
|
|
687 If the function fails:
|
|
688
|
|
689 -- if OK_IF_DATA_INVALID is set and the data was invalid,
|
|
690 return Qt.
|
|
691 -- maybe return an error, or return Qnil.
|
|
692 */
|
185
|
693
|
0
|
694
|
|
695 static Lisp_Object
|
|
696 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
|
|
697 int ok_if_data_invalid)
|
|
698 {
|
|
699 unsigned int w, h;
|
|
700 Extbyte *data;
|
|
701 int result;
|
|
702 CONST char *filename_ext;
|
|
703
|
|
704 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
|
|
705 result = XmuReadBitmapDataFromFile (filename_ext, &w, &h, &data, xhot, yhot);
|
|
706
|
|
707 if (result == BitmapSuccess)
|
|
708 {
|
|
709 Lisp_Object retval;
|
|
710 int len = (w + 7) / 8 * h;
|
|
711
|
|
712 retval = list3 (make_int (w), make_int (h),
|
|
713 make_ext_string (data, len, FORMAT_BINARY));
|
|
714 XFree ((char *) data);
|
|
715 return retval;
|
|
716 }
|
|
717
|
|
718 switch (result)
|
|
719 {
|
|
720 case BitmapOpenFailed:
|
|
721 {
|
|
722 /* should never happen */
|
|
723 signal_double_file_error ("Opening bitmap file",
|
|
724 "no such file or directory",
|
|
725 name);
|
|
726 }
|
|
727 case BitmapFileInvalid:
|
|
728 {
|
|
729 if (ok_if_data_invalid)
|
|
730 return Qt;
|
|
731 signal_double_file_error ("Reading bitmap file",
|
|
732 "invalid data in file",
|
|
733 name);
|
|
734 }
|
|
735 case BitmapNoMemory:
|
|
736 {
|
|
737 signal_double_file_error ("Reading bitmap file",
|
|
738 "out of memory",
|
|
739 name);
|
|
740 }
|
|
741 default:
|
|
742 {
|
|
743 signal_double_file_error_2 ("Reading bitmap file",
|
|
744 "unknown error code",
|
|
745 make_int (result), name);
|
|
746 }
|
|
747 }
|
|
748
|
|
749 return Qnil; /* not reached */
|
|
750 }
|
|
751
|
|
752 static Lisp_Object
|
|
753 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
|
|
754 Lisp_Object mask_file)
|
|
755 {
|
|
756 /* This is unclean but it's fairly standard -- a number of the
|
|
757 bitmaps in /usr/include/X11/bitmaps use it -- so we support
|
|
758 it. */
|
|
759 if (NILP (mask_file)
|
|
760 /* don't override explicitly specified mask data. */
|
|
761 && NILP (assq_no_quit (Q_mask_data, alist))
|
|
762 && !NILP (file))
|
|
763 {
|
|
764 mask_file =
|
|
765 locate_pixmap_file (concat2 (file, build_string ("Mask")));
|
|
766 if (NILP (mask_file))
|
|
767 mask_file =
|
|
768 locate_pixmap_file (concat2 (file, build_string ("msk")));
|
|
769 }
|
|
770
|
|
771 if (!NILP (mask_file))
|
|
772 {
|
|
773 Lisp_Object mask_data =
|
|
774 bitmap_to_lisp_data (mask_file, 0, 0, 0);
|
|
775 alist = remassq_no_quit (Q_mask_file, alist);
|
|
776 /* there can't be a :mask-data at this point. */
|
|
777 alist = Fcons (Fcons (Q_mask_file, mask_file),
|
|
778 Fcons (Fcons (Q_mask_data, mask_data), alist));
|
|
779 }
|
|
780
|
|
781 return alist;
|
|
782 }
|
|
783
|
|
784 /* Normalize method for XBM's. */
|
|
785
|
|
786 static Lisp_Object
|
|
787 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
788 {
|
|
789 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
790 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
791 Lisp_Object alist = Qnil;
|
185
|
792
|
0
|
793 GCPRO3 (file, mask_file, alist);
|
|
794
|
|
795 /* Now, convert any file data into inline data for both the regular
|
|
796 data and the mask data. At the end of this, `data' will contain
|
|
797 the inline data (if any) or Qnil, and `file' will contain
|
|
798 the name this data was derived from (if known) or Qnil.
|
|
799 Likewise for `mask_file' and `mask_data'.
|
|
800
|
|
801 Note that if we cannot generate any regular inline data, we
|
|
802 skip out. */
|
|
803
|
|
804 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
805 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
806 Q_mask_data);
|
|
807
|
|
808 if (CONSP (file)) /* failure locating filename */
|
|
809 signal_double_file_error ("Opening bitmap file",
|
|
810 "no such file or directory",
|
|
811 Fcar (file));
|
|
812
|
|
813 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
814 RETURN_UNGCPRO (inst);
|
|
815
|
|
816 alist = tagged_vector_to_alist (inst);
|
|
817
|
|
818 if (!NILP (file))
|
|
819 {
|
|
820 int xhot, yhot;
|
|
821 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
|
|
822 alist = remassq_no_quit (Q_file, alist);
|
|
823 /* there can't be a :data at this point. */
|
|
824 alist = Fcons (Fcons (Q_file, file),
|
|
825 Fcons (Fcons (Q_data, data), alist));
|
|
826
|
|
827 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
|
|
828 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
829 alist);
|
|
830 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
|
|
831 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
832 alist);
|
|
833 }
|
|
834
|
|
835 alist = xbm_mask_file_munging (alist, file, mask_file);
|
|
836
|
|
837 {
|
|
838 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
839 free_alist (alist);
|
|
840 RETURN_UNGCPRO (result);
|
|
841 }
|
|
842 }
|
|
843
|
|
844 /* Given inline data for a mono pixmap, create and return the
|
|
845 corresponding X object. */
|
|
846
|
|
847 static Pixmap
|
|
848 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
|
|
849 /* Note that data is in ext-format! */
|
|
850 CONST Extbyte *bits)
|
|
851 {
|
219
|
852 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
|
|
853 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
|
0
|
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;
|
219
|
878 Drawable draw;
|
0
|
879 enum image_instance_type type;
|
|
880
|
|
881 if (!DEVICE_X_P (XDEVICE (device)))
|
|
882 signal_simple_error ("Not an X device", device);
|
|
883
|
|
884 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
885 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
886 scr = DefaultScreenOfDisplay (dpy);
|
|
887
|
|
888 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
|
|
889 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
890 {
|
|
891 if (!NILP (foreground) || !NILP (background))
|
|
892 type = IMAGE_COLOR_PIXMAP;
|
|
893 else
|
|
894 type = IMAGE_MONO_PIXMAP;
|
|
895 }
|
|
896 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
897 type = IMAGE_MONO_PIXMAP;
|
|
898 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
899 type = IMAGE_COLOR_PIXMAP;
|
|
900 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
901 type = IMAGE_POINTER;
|
|
902 else
|
|
903 incompatible_image_types (instantiator, dest_mask,
|
|
904 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
905 | IMAGE_POINTER_MASK);
|
|
906
|
|
907 x_initialize_pixmap_image_instance (ii, type);
|
|
908 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
909 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
910 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
911 find_keyword_in_vector (instantiator, Q_file);
|
|
912
|
|
913 switch (type)
|
|
914 {
|
|
915 case IMAGE_MONO_PIXMAP:
|
|
916 {
|
|
917 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
|
918 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
|
|
919 }
|
|
920 break;
|
|
921
|
|
922 case IMAGE_COLOR_PIXMAP:
|
|
923 {
|
219
|
924 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
|
0
|
925 unsigned long fg = BlackPixelOfScreen (scr);
|
|
926 unsigned long bg = WhitePixelOfScreen (scr);
|
|
927
|
|
928 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
|
|
929 foreground =
|
|
930 Fmake_color_instance (foreground, device,
|
|
931 encode_error_behavior_flag (ERROR_ME));
|
|
932
|
|
933 if (COLOR_INSTANCEP (foreground))
|
|
934 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
|
|
935
|
|
936 if (!NILP (background) && !COLOR_INSTANCEP (background))
|
|
937 background =
|
|
938 Fmake_color_instance (background, device,
|
|
939 encode_error_behavior_flag (ERROR_ME));
|
|
940
|
|
941 if (COLOR_INSTANCEP (background))
|
|
942 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
|
|
943
|
|
944 /* We used to duplicate the pixels using XAllocColor(), to protect
|
|
945 against their getting freed. Just as easy to just store the
|
|
946 color instances here and GC-protect them, so this doesn't
|
|
947 happen. */
|
|
948 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
949 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
950 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
219
|
951 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
952 (char *) bits, width, height,
|
|
953 fg, bg, d);
|
|
954 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
955 }
|
|
956 break;
|
|
957
|
|
958 case IMAGE_POINTER:
|
207
|
959 {
|
0
|
960 XColor fg_color, bg_color;
|
|
961 Pixmap source;
|
|
962
|
|
963 check_pointer_sizes (scr, width, height, instantiator);
|
|
964
|
|
965 source =
|
219
|
966 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
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 }
|
207
|
997
|
0
|
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))
|
207
|
1021 {
|
0
|
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);
|
207
|
1030 }
|
0
|
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,
|
207
|
1041 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
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_XPM
|
|
1059
|
|
1060 /**********************************************************************
|
|
1061 * XPM *
|
|
1062 **********************************************************************/
|
|
1063
|
|
1064 static void
|
|
1065 check_valid_xpm_color_symbols (Lisp_Object data)
|
|
1066 {
|
|
1067 Lisp_Object rest;
|
185
|
1068
|
0
|
1069 for (rest = data; !NILP (rest); rest = XCDR (rest))
|
|
1070 {
|
|
1071 if (!CONSP (rest) ||
|
|
1072 !CONSP (XCAR (rest)) ||
|
|
1073 !STRINGP (XCAR (XCAR (rest))) ||
|
|
1074 (!STRINGP (XCDR (XCAR (rest))) &&
|
|
1075 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
|
|
1076 signal_simple_error ("Invalid color symbol alist", data);
|
|
1077 }
|
|
1078 }
|
|
1079
|
|
1080 static void
|
|
1081 xpm_validate (Lisp_Object instantiator)
|
|
1082 {
|
|
1083 file_or_data_must_be_present (instantiator);
|
|
1084 }
|
|
1085
|
|
1086 static Lisp_Object
|
|
1087 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
1088 {
|
|
1089 char **data;
|
|
1090 int result;
|
|
1091
|
14
|
1092 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
|
0
|
1093
|
|
1094 if (result == XpmSuccess)
|
|
1095 {
|
|
1096 Lisp_Object retval = Qnil;
|
|
1097 struct buffer *old_buffer = current_buffer;
|
|
1098 Lisp_Object temp_buffer =
|
|
1099 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
1100 int elt;
|
|
1101 int height, width, ncolors;
|
|
1102 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1103 int speccount = specpdl_depth ();
|
|
1104
|
|
1105 GCPRO3 (name, retval, temp_buffer);
|
|
1106
|
|
1107 specbind (Qinhibit_quit, Qt);
|
|
1108 set_buffer_internal (XBUFFER (temp_buffer));
|
223
|
1109 Ferase_buffer (Qnil);
|
0
|
1110
|
|
1111 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
1112 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
1113
|
|
1114 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
1115 for (elt = 0; elt <= width + ncolors; elt++)
|
|
1116 {
|
|
1117 buffer_insert_c_string (current_buffer, "\"");
|
|
1118 buffer_insert_c_string (current_buffer, data[elt]);
|
|
1119
|
|
1120 if (elt < width + ncolors)
|
|
1121 buffer_insert_c_string (current_buffer, "\",\r");
|
|
1122 else
|
|
1123 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
1124 }
|
|
1125
|
223
|
1126 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
|
0
|
1127 XpmFree (data);
|
|
1128
|
|
1129 set_buffer_internal (old_buffer);
|
|
1130 unbind_to (speccount, Qnil);
|
|
1131
|
|
1132 RETURN_UNGCPRO (retval);
|
|
1133 }
|
|
1134
|
|
1135 switch (result)
|
|
1136 {
|
|
1137 case XpmFileInvalid:
|
|
1138 {
|
|
1139 if (ok_if_data_invalid)
|
|
1140 return Qt;
|
|
1141 signal_simple_error ("invalid XPM data in file", name);
|
|
1142 }
|
|
1143 case XpmNoMemory:
|
|
1144 {
|
|
1145 signal_double_file_error ("Reading pixmap file",
|
|
1146 "out of memory", name);
|
|
1147 }
|
|
1148 case XpmOpenFailed:
|
|
1149 {
|
|
1150 /* should never happen? */
|
|
1151 signal_double_file_error ("Opening pixmap file",
|
|
1152 "no such file or directory", name);
|
|
1153 }
|
|
1154 default:
|
|
1155 {
|
|
1156 signal_double_file_error_2 ("Parsing pixmap file",
|
|
1157 "unknown error code",
|
|
1158 make_int (result), name);
|
|
1159 break;
|
|
1160 }
|
|
1161 }
|
|
1162
|
|
1163 return Qnil; /* not reached */
|
|
1164 }
|
|
1165
|
|
1166 Lisp_Object Vxpm_color_symbols;
|
|
1167
|
|
1168 static Lisp_Object
|
|
1169 evaluate_xpm_color_symbols (void)
|
|
1170 {
|
|
1171 Lisp_Object rest, results = Qnil;
|
|
1172 struct gcpro gcpro1, gcpro2;
|
|
1173
|
|
1174 GCPRO2 (rest, results);
|
|
1175 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
|
|
1176 {
|
|
1177 Lisp_Object name, value, cons;
|
|
1178
|
|
1179 CHECK_CONS (rest);
|
|
1180 cons = XCAR (rest);
|
|
1181 CHECK_CONS (cons);
|
|
1182 name = XCAR (cons);
|
|
1183 CHECK_STRING (name);
|
|
1184 value = XCDR (cons);
|
|
1185 CHECK_CONS (value);
|
|
1186 value = XCAR (value);
|
|
1187 value = Feval (value);
|
|
1188 if (NILP (value))
|
|
1189 continue;
|
|
1190 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
|
|
1191 signal_simple_error
|
|
1192 ("Result from xpm-color-symbols eval must be nil, string, or color",
|
|
1193 value);
|
|
1194 results = Fcons (Fcons (name, value), results);
|
|
1195 }
|
|
1196 UNGCPRO; /* no more evaluation */
|
|
1197 return results;
|
|
1198 }
|
|
1199
|
|
1200 static Lisp_Object
|
|
1201 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1202 {
|
|
1203 Lisp_Object file = Qnil;
|
|
1204 Lisp_Object color_symbols;
|
|
1205 struct gcpro gcpro1, gcpro2;
|
|
1206 Lisp_Object alist = Qnil;
|
185
|
1207
|
0
|
1208 GCPRO2 (file, alist);
|
|
1209
|
|
1210 /* Now, convert any file data into inline data. At the end of this,
|
|
1211 `data' will contain the inline data (if any) or Qnil, and
|
|
1212 `file' will contain the name this data was derived from (if
|
|
1213 known) or Qnil.
|
|
1214
|
|
1215 Note that if we cannot generate any regular inline data, we
|
|
1216 skip out. */
|
|
1217
|
|
1218 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
1219
|
|
1220 if (CONSP (file)) /* failure locating filename */
|
|
1221 signal_double_file_error ("Opening pixmap file",
|
|
1222 "no such file or directory",
|
|
1223 Fcar (file));
|
|
1224
|
|
1225 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
1226 Qunbound);
|
|
1227
|
|
1228 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
1229 /* no conversion necessary */
|
|
1230 RETURN_UNGCPRO (inst);
|
|
1231
|
|
1232 alist = tagged_vector_to_alist (inst);
|
|
1233
|
|
1234 if (!NILP (file))
|
|
1235 {
|
|
1236 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
1237 alist = remassq_no_quit (Q_file, alist);
|
|
1238 /* there can't be a :data at this point. */
|
|
1239 alist = Fcons (Fcons (Q_file, file),
|
|
1240 Fcons (Fcons (Q_data, data), alist));
|
|
1241 }
|
|
1242
|
|
1243 if (UNBOUNDP (color_symbols))
|
|
1244 {
|
|
1245 color_symbols = evaluate_xpm_color_symbols ();
|
|
1246 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
1247 alist);
|
|
1248 }
|
|
1249
|
|
1250 {
|
|
1251 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1252 free_alist (alist);
|
|
1253 RETURN_UNGCPRO (result);
|
|
1254 }
|
|
1255 }
|
|
1256
|
|
1257 static int
|
74
|
1258 xpm_possible_dest_types (void)
|
0
|
1259 {
|
74
|
1260 return
|
|
1261 IMAGE_MONO_PIXMAP_MASK |
|
|
1262 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
1263 IMAGE_POINTER_MASK;
|
|
1264 }
|
|
1265
|
|
1266 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
|
|
1267 There was no version number in xpm.h before 3.3, but this should do.
|
|
1268 */
|
|
1269 #if (XpmVersion >= 3) || defined(XpmExactColors)
|
|
1270 # define XPM_DOES_BUFFERS
|
|
1271 #endif
|
|
1272
|
|
1273 #ifndef XPM_DOES_BUFFERS
|
|
1274 Your version of XPM is too old. You cannot compile with it.
|
|
1275 Upgrade to version 3.2g or better or compile with --with-xpm=no.
|
|
1276 #endif /* !XPM_DOES_BUFFERS */
|
|
1277
|
|
1278 static XpmColorSymbol *
|
|
1279 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
|
124
|
1280 Lisp_Object domain,
|
0
|
1281 Lisp_Object color_symbol_alist)
|
|
1282 {
|
|
1283 /* This function can GC */
|
219
|
1284 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
|
|
1285 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
0
|
1286 XColor color;
|
|
1287 Lisp_Object rest;
|
|
1288 Lisp_Object results = Qnil;
|
|
1289 int i;
|
|
1290 XpmColorSymbol *symbols;
|
|
1291 struct gcpro gcpro1, gcpro2;
|
|
1292
|
|
1293 GCPRO2 (results, device);
|
|
1294
|
|
1295 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
1296 error happens we don't lose any malloc()ed data, or more importantly,
|
|
1297 leave any pixels allocated in the server. */
|
|
1298 i = 0;
|
|
1299 LIST_LOOP (rest, color_symbol_alist)
|
|
1300 {
|
|
1301 Lisp_Object cons = XCAR (rest);
|
|
1302 Lisp_Object name = XCAR (cons);
|
|
1303 Lisp_Object value = XCDR (cons);
|
|
1304 if (NILP (value))
|
|
1305 continue;
|
|
1306 if (STRINGP (value))
|
|
1307 value =
|
|
1308 Fmake_color_instance
|
|
1309 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
1310 else
|
|
1311 {
|
|
1312 assert (COLOR_SPECIFIERP (value));
|
124
|
1313 value = Fspecifier_instance (value, domain, Qnil, Qnil);
|
0
|
1314 }
|
|
1315 if (NILP (value))
|
|
1316 continue;
|
|
1317 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
1318 i++;
|
|
1319 }
|
|
1320 UNGCPRO; /* no more evaluation */
|
|
1321
|
|
1322 if (i == 0) return 0;
|
|
1323
|
185
|
1324 symbols = xnew_array (XpmColorSymbol, i);
|
0
|
1325 xpmattrs->valuemask |= XpmColorSymbols;
|
|
1326 xpmattrs->colorsymbols = symbols;
|
|
1327 xpmattrs->numsymbols = i;
|
|
1328
|
|
1329 while (--i >= 0)
|
|
1330 {
|
|
1331 Lisp_Object cons = XCAR (results);
|
|
1332 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
1333 /* Duplicate the pixel value so that we still have a lock on it if
|
|
1334 the pixel we were passed is later freed. */
|
|
1335 if (! XAllocColor (dpy, cmap, &color))
|
|
1336 abort (); /* it must be allocable since we're just duplicating it */
|
|
1337
|
14
|
1338 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
|
0
|
1339 symbols [i].pixel = color.pixel;
|
|
1340 symbols [i].value = 0;
|
|
1341 free_cons (XCONS (cons));
|
|
1342 cons = results;
|
|
1343 results = XCDR (results);
|
|
1344 free_cons (XCONS (cons));
|
|
1345 }
|
|
1346 return symbols;
|
|
1347 }
|
|
1348
|
|
1349 static void
|
|
1350 xpm_free (XpmAttributes *xpmattrs)
|
|
1351 {
|
|
1352 /* Could conceivably lose if XpmXXX returned an error without first
|
|
1353 initializing this structure, if we didn't know that initializing it
|
|
1354 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
|
|
1355 multiple times, since it zeros slots as it frees them...) */
|
|
1356 XpmFreeAttributes (xpmattrs);
|
|
1357 }
|
|
1358
|
|
1359 static void
|
|
1360 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1361 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1362 int dest_mask, Lisp_Object domain)
|
0
|
1363 {
|
|
1364 /* This function can GC */
|
|
1365 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1366 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1367 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1368 Display *dpy;
|
|
1369 Screen *xs;
|
219
|
1370 Colormap cmap;
|
|
1371 int depth;
|
0
|
1372 Pixmap pixmap;
|
|
1373 Pixmap mask = 0;
|
|
1374 XpmAttributes xpmattrs;
|
|
1375 int result;
|
|
1376 XpmColorSymbol *color_symbols;
|
|
1377 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
1378 Q_color_symbols);
|
|
1379 enum image_instance_type type;
|
|
1380 int force_mono;
|
|
1381 unsigned int w, h;
|
|
1382
|
|
1383 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1384 signal_simple_error ("Not an X device", device);
|
|
1385
|
|
1386 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
1387 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1388 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
0
|
1389 xs = DefaultScreenOfDisplay (dpy);
|
|
1390
|
|
1391 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1392 type = IMAGE_COLOR_PIXMAP;
|
|
1393 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1394 type = IMAGE_MONO_PIXMAP;
|
|
1395 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1396 type = IMAGE_POINTER;
|
|
1397 else
|
|
1398 incompatible_image_types (instantiator, dest_mask,
|
|
1399 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1400 | IMAGE_POINTER_MASK);
|
|
1401 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
1402
|
|
1403 x_initialize_pixmap_image_instance (ii, type);
|
|
1404
|
|
1405 assert (!NILP (data));
|
|
1406
|
|
1407 retry:
|
|
1408
|
|
1409 memset (&xpmattrs, 0, sizeof (xpmattrs)); /* want XpmInitAttributes() */
|
|
1410 xpmattrs.valuemask = XpmReturnPixels;
|
|
1411 if (force_mono)
|
|
1412 {
|
|
1413 /* Without this, we get a 1-bit version of the color image, which
|
|
1414 isn't quite right. With this, we get the mono image, which might
|
|
1415 be very different looking. */
|
|
1416 xpmattrs.valuemask |= XpmColorKey;
|
|
1417 xpmattrs.color_key = XPM_MONO;
|
|
1418 xpmattrs.depth = 1;
|
|
1419 xpmattrs.valuemask |= XpmDepth;
|
|
1420 }
|
|
1421 else
|
|
1422 {
|
|
1423 xpmattrs.closeness = 65535;
|
|
1424 xpmattrs.valuemask |= XpmCloseness;
|
219
|
1425 xpmattrs.depth = depth;
|
|
1426 xpmattrs.valuemask |= XpmDepth;
|
|
1427 xpmattrs.visual = DEVICE_X_VISUAL (XDEVICE(device));
|
|
1428 xpmattrs.valuemask |= XpmVisual;
|
|
1429 xpmattrs.colormap = cmap;
|
|
1430 xpmattrs.valuemask |= XpmColormap;
|
0
|
1431 }
|
185
|
1432
|
124
|
1433 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
|
0
|
1434 color_symbol_alist);
|
|
1435
|
|
1436 result = XpmCreatePixmapFromBuffer (dpy,
|
219
|
1437 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
|
14
|
1438 (char *) XSTRING_DATA (data),
|
0
|
1439 &pixmap, &mask, &xpmattrs);
|
|
1440
|
|
1441 if (color_symbols)
|
|
1442 {
|
|
1443 xfree (color_symbols);
|
|
1444 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
|
|
1445 xpmattrs.numsymbols = 0;
|
|
1446 }
|
|
1447
|
|
1448 switch (result)
|
|
1449 {
|
|
1450 case XpmSuccess:
|
|
1451 break;
|
|
1452 case XpmFileInvalid:
|
|
1453 {
|
|
1454 xpm_free (&xpmattrs);
|
|
1455 signal_simple_error ("invalid XPM data", data);
|
|
1456 }
|
|
1457 case XpmColorFailed:
|
|
1458 case XpmColorError:
|
|
1459 {
|
|
1460 xpm_free (&xpmattrs);
|
|
1461 if (force_mono)
|
|
1462 {
|
|
1463 /* second time; blow out. */
|
|
1464 signal_double_file_error ("Reading pixmap data",
|
|
1465 "color allocation failed",
|
|
1466 data);
|
|
1467 }
|
|
1468 else
|
|
1469 {
|
|
1470 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
|
|
1471 {
|
|
1472 /* second time; blow out. */
|
|
1473 signal_double_file_error ("Reading pixmap data",
|
|
1474 "color allocation failed",
|
|
1475 data);
|
|
1476 }
|
|
1477 force_mono = 1;
|
|
1478 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
|
|
1479 goto retry;
|
|
1480 }
|
|
1481 }
|
|
1482 case XpmNoMemory:
|
|
1483 {
|
|
1484 xpm_free (&xpmattrs);
|
|
1485 signal_double_file_error ("Parsing pixmap data",
|
|
1486 "out of memory", data);
|
|
1487 }
|
|
1488 default:
|
|
1489 {
|
|
1490 xpm_free (&xpmattrs);
|
|
1491 signal_double_file_error_2 ("Parsing pixmap data",
|
|
1492 "unknown error code",
|
|
1493 make_int (result), data);
|
|
1494 }
|
|
1495 }
|
|
1496
|
|
1497 w = xpmattrs.width;
|
|
1498 h = xpmattrs.height;
|
|
1499
|
|
1500 {
|
|
1501 int npixels = xpmattrs.npixels;
|
185
|
1502 Pixel *pixels;
|
0
|
1503
|
|
1504 if (npixels != 0)
|
|
1505 {
|
185
|
1506 pixels = xnew_array (Pixel, npixels);
|
0
|
1507 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
|
|
1508 }
|
|
1509 else
|
185
|
1510 pixels = NULL;
|
0
|
1511
|
|
1512 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
1513 IMAGE_INSTANCE_X_MASK (ii) = mask;
|
|
1514 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
1515 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
1516 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
1517 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
1518 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1519 find_keyword_in_vector (instantiator, Q_file);
|
|
1520 }
|
|
1521
|
|
1522 switch (type)
|
|
1523 {
|
|
1524 case IMAGE_MONO_PIXMAP:
|
|
1525 break;
|
|
1526
|
|
1527 case IMAGE_COLOR_PIXMAP:
|
|
1528 {
|
219
|
1529 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
0
|
1530 }
|
|
1531 break;
|
|
1532
|
|
1533 case IMAGE_POINTER:
|
|
1534 {
|
|
1535 int npixels = xpmattrs.npixels;
|
|
1536 Pixel *pixels = xpmattrs.pixels;
|
|
1537 XColor fg, bg;
|
|
1538 int i;
|
|
1539 int xhot = 0, yhot = 0;
|
|
1540
|
|
1541 if (xpmattrs.valuemask & XpmHotspot)
|
|
1542 {
|
|
1543 xhot = xpmattrs.x_hotspot;
|
|
1544 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
|
|
1545 }
|
|
1546 if (xpmattrs.valuemask & XpmHotspot)
|
|
1547 {
|
|
1548 yhot = xpmattrs.y_hotspot;
|
|
1549 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
|
|
1550 }
|
|
1551 check_pointer_sizes (xs, w, h, instantiator);
|
|
1552
|
|
1553 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
1554 XPM file), then use those as the default colors for the cursor we
|
|
1555 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
1556 */
|
|
1557 if (npixels >= 2)
|
|
1558 {
|
|
1559 /* With an XBM file, it's obvious which bit is foreground
|
|
1560 and which is background, or rather, it's implicit: in
|
|
1561 an XBM file, a 1 bit is foreground, and a 0 bit is
|
|
1562 background.
|
185
|
1563
|
0
|
1564 XCreatePixmapCursor() assumes this property of the
|
|
1565 pixmap it is called with as well; the `foreground'
|
|
1566 color argument is used for the 1 bits.
|
|
1567
|
|
1568 With an XPM file, it's tricker, since the elements of
|
|
1569 the pixmap don't represent FG and BG, but are actual
|
|
1570 pixel values. So we need to figure out which of those
|
|
1571 pixels is the foreground color and which is the
|
|
1572 background. We do it by comparing RGB and assuming
|
|
1573 that the darker color is the foreground. This works
|
|
1574 with the result of xbmtopbm|ppmtoxpm, at least.
|
185
|
1575
|
0
|
1576 It might be nice if there was some way to tag the
|
|
1577 colors in the XPM file with whether they are the
|
|
1578 foreground - perhaps with logical color names somehow?
|
185
|
1579
|
0
|
1580 Once we have decided which color is the foreground, we
|
|
1581 need to ensure that that color corresponds to a `1' bit
|
|
1582 in the Pixmap. The XPM library wrote into the (1-bit)
|
|
1583 pixmap with XPutPixel, which will ignore all but the
|
|
1584 least significant bit.
|
185
|
1585
|
0
|
1586 This means that a 1 bit in the image corresponds to
|
|
1587 `fg' only if `fg.pixel' is odd.
|
185
|
1588
|
0
|
1589 (This also means that the image will be all the same
|
|
1590 color if both `fg' and `bg' are odd or even, but we can
|
|
1591 safely assume that that won't happen if the XPM file is
|
|
1592 sensible I think.)
|
185
|
1593
|
0
|
1594 The desired result is that the image use `1' to
|
|
1595 represent the foreground color, and `0' to represent
|
|
1596 the background color. So, we may need to invert the
|
|
1597 image to accomplish this; we invert if fg is
|
|
1598 odd. (Remember that WhitePixel and BlackPixel are not
|
|
1599 necessarily 1 and 0 respectively, though I think it
|
|
1600 might be safe to assume that one of them is always 1
|
|
1601 and the other is always 0. We also pretty much need to
|
|
1602 assume that one is even and the other is odd.)
|
|
1603 */
|
|
1604
|
|
1605 fg.pixel = pixels[0]; /* pick a pixel at random. */
|
|
1606 bg.pixel = fg.pixel;
|
|
1607 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
|
|
1608 {
|
|
1609 bg.pixel = pixels[i];
|
|
1610 if (fg.pixel != bg.pixel)
|
|
1611 break;
|
|
1612 }
|
|
1613
|
|
1614 /* If (fg.pixel == bg.pixel) then probably something has
|
|
1615 gone wrong, but I don't think signalling an error would
|
|
1616 be appropriate. */
|
|
1617
|
219
|
1618 XQueryColor (dpy, cmap, &fg);
|
|
1619 XQueryColor (dpy, cmap, &bg);
|
0
|
1620
|
|
1621 /* If the foreground is lighter than the background, swap them.
|
|
1622 (This occurs semi-randomly, depending on the ordering of the
|
|
1623 color list in the XPM file.)
|
|
1624 */
|
|
1625 {
|
|
1626 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
|
|
1627 + (fg.blue / 3));
|
|
1628 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
|
|
1629 + (bg.blue / 3));
|
|
1630 if (fg_total > bg_total)
|
|
1631 {
|
|
1632 XColor swap;
|
|
1633 swap = fg;
|
|
1634 fg = bg;
|
|
1635 bg = swap;
|
|
1636 }
|
|
1637 }
|
185
|
1638
|
0
|
1639 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
|
|
1640 (This occurs (only?) on servers with Black=0, White=1.)
|
|
1641 */
|
|
1642 if ((fg.pixel & 1) == 0)
|
|
1643 {
|
|
1644 XGCValues gcv;
|
|
1645 GC gc;
|
|
1646 gcv.function = GXxor;
|
|
1647 gcv.foreground = 1;
|
|
1648 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
|
|
1649 &gcv);
|
|
1650 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
|
|
1651 XFreeGC (dpy, gc);
|
|
1652 }
|
|
1653 }
|
|
1654 else
|
|
1655 {
|
|
1656 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
1657 &fg, &bg);
|
|
1658 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
1659 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
1660 }
|
|
1661
|
|
1662 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1663 XCreatePixmapCursor
|
|
1664 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
|
|
1665 }
|
|
1666
|
|
1667 break;
|
|
1668
|
|
1669 default:
|
|
1670 abort ();
|
|
1671 }
|
185
|
1672
|
0
|
1673 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
|
|
1674 }
|
|
1675
|
|
1676 #endif /* HAVE_XPM */
|
|
1677
|
|
1678
|
207
|
1679 #ifdef HAVE_IMAGEMAGICK
|
|
1680 /**********************************************************************
|
|
1681 * ImageMagick *
|
|
1682 **********************************************************************/
|
|
1683 static void
|
|
1684 imagick_validate (Lisp_Object instantiator)
|
|
1685 {
|
|
1686 file_or_data_must_be_present (instantiator);
|
|
1687 }
|
|
1688
|
|
1689 static Lisp_Object
|
|
1690 imagick_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1691 {
|
|
1692 return simple_image_type_normalize (inst, console_type, Qimagick);
|
|
1693 }
|
|
1694
|
|
1695 static int
|
|
1696 imagick_possible_dest_types (void)
|
|
1697 {
|
|
1698 return IMAGE_COLOR_PIXMAP_MASK;
|
|
1699 }
|
|
1700
|
|
1701 struct imagick_unwind_data
|
|
1702 {
|
|
1703 Display *dpy;
|
221
|
1704 Colormap cmap;
|
207
|
1705 FILE *instream;
|
|
1706 Image *image;
|
|
1707 XImage *ximage;
|
|
1708 unsigned long *pixels;
|
|
1709 unsigned long npixels;
|
|
1710 char tempfile[50];
|
|
1711 int tempfile_needs_to_be_removed;
|
|
1712 };
|
|
1713
|
|
1714 static Lisp_Object
|
|
1715 imagick_instantiate_unwind (Lisp_Object unwind_obj)
|
|
1716 {
|
|
1717 struct imagick_unwind_data *data =
|
|
1718 (struct imagick_unwind_data *) get_opaque_ptr (unwind_obj);
|
|
1719
|
|
1720 free_opaque_ptr (unwind_obj);
|
|
1721 if (data->instream)
|
|
1722 fclose (data->instream);
|
|
1723 if (data->tempfile_needs_to_be_removed)
|
|
1724 unlink (data->tempfile);
|
|
1725
|
|
1726 if (data->image) {
|
|
1727 DestroyImage(data->image);
|
|
1728 }
|
|
1729
|
221
|
1730 if (data->ximage) {
|
|
1731 if (data->ximage->data) {
|
207
|
1732 xfree (data->ximage->data);
|
|
1733 data->ximage->data = NULL;
|
|
1734 }
|
|
1735 XDestroyImage (data->ximage);
|
|
1736 }
|
221
|
1737
|
|
1738 if (data->npixels > 0) {
|
|
1739 XFreeColors(data->dpy, data->cmap, data->pixels, data->npixels, 0L);
|
|
1740 xfree (data->pixels);
|
|
1741 }
|
207
|
1742
|
|
1743 return Qnil;
|
|
1744 }
|
|
1745
|
|
1746 static void
|
|
1747 imagick_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1748 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1749 int dest_mask, Lisp_Object domain)
|
|
1750 {
|
221
|
1751 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1752 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1753 Display *dpy;
|
|
1754 Screen *scr;
|
|
1755 Visual *visual;
|
|
1756 Colormap cmap;
|
|
1757 Dimension depth;
|
|
1758 struct imagick_unwind_data unwind;
|
|
1759 int speccount = specpdl_depth ();
|
|
1760 ImageInfo image_info;
|
|
1761
|
|
1762 /* ImageMagick variables */
|
|
1763
|
|
1764 /* Basic error checking */
|
|
1765 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1766 signal_simple_error ("Not an X device", device);
|
|
1767
|
|
1768 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1769 scr = DefaultScreenOfDisplay (dpy);
|
|
1770 depth = DEVICE_X_DEPTH (XDEVICE (device));
|
|
1771 visual = DEVICE_X_VISUAL (XDEVICE (device));
|
|
1772 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1773
|
|
1774 /* Set up the unwind */
|
|
1775 memset (&unwind, 0, sizeof (unwind));
|
|
1776 unwind.dpy = dpy;
|
|
1777 unwind.cmap = cmap;
|
|
1778 record_unwind_protect(imagick_instantiate_unwind,make_opaque_ptr(&unwind));
|
|
1779
|
|
1780 /* Write out to a temp file - not sure if ImageMagick supports the
|
|
1781 ** notion of an abstract 'data source' right now.
|
|
1782 ** JH: It doesn't as of 3.9.3
|
|
1783 */
|
|
1784 {
|
|
1785 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1786
|
|
1787 assert (!NILP (data));
|
|
1788
|
|
1789 write_lisp_string_to_temp_file (data, unwind.tempfile);
|
|
1790 unwind.tempfile_needs_to_be_removed = 1;
|
|
1791
|
|
1792 if ((unwind.instream = fopen (unwind.tempfile, "rb")) == NULL)
|
|
1793 report_file_error ("Opening ImageMagick temp file",
|
|
1794 list1 (build_string (unwind.tempfile)));
|
|
1795 }
|
|
1796
|
|
1797 /* Initialize structures and read in the image */
|
|
1798 GetImageInfo(&image_info);
|
|
1799 strcpy(image_info.filename,unwind.tempfile);
|
|
1800 unwind.image = ReadImage(&image_info);
|
|
1801
|
|
1802 if (unwind.image == (Image *) NULL) {
|
|
1803 signal_simple_error ("Unable to read image.",instantiator);
|
|
1804 }
|
207
|
1805
|
215
|
1806 #if 1
|
221
|
1807 /*
|
|
1808 * For now, force dithering everything, and deal with all images as if they
|
|
1809 * were PseudoClass images
|
|
1810 */
|
|
1811 if (unwind.image->class != PseudoClass) {
|
|
1812 QuantizeInfo quantize_info;
|
|
1813 GetQuantizeInfo(&quantize_info);
|
|
1814 quantize_info.number_colors=256;
|
|
1815 quantize_info.tree_depth=8;
|
|
1816 quantize_info.dither=True;
|
|
1817 quantize_info.colorspace=RGBColorspace;
|
|
1818 QuantizeImage(&quantize_info, unwind.image);
|
|
1819 SyncImage(unwind.image);
|
|
1820 /* #### It would probably be a good idea to sort the colormap by popularity,
|
|
1821 * so that in case we run out of entries in the map, it will likely be on
|
|
1822 * the less used colors
|
|
1823 */
|
|
1824 } else {
|
|
1825 CompressColormap(unwind.image);
|
|
1826 SyncImage(unwind.image);
|
|
1827 }
|
|
1828
|
|
1829 #endif
|
|
1830
|
|
1831 #if 0
|
|
1832 DescribeImage(unwind.image,stderr,1);
|
215
|
1833 #endif
|
|
1834
|
221
|
1835 unwind.ximage = XCreateImage(dpy, visual, depth,
|
|
1836 (depth == 1) ? XYPixmap : ZPixmap,
|
|
1837 0, 0,
|
|
1838 unwind.image->columns,
|
|
1839 unwind.image->rows,
|
|
1840 XBitmapPad(dpy), 0);
|
|
1841
|
|
1842 if (!unwind.ximage) {
|
|
1843 signal_simple_error("Unable to allocate XImage structure",
|
|
1844 instantiator);
|
|
1845 }
|
|
1846
|
|
1847 unwind.ximage->data = (char *) xmalloc(unwind.ximage->bytes_per_line *
|
|
1848 unwind.ximage->height);
|
|
1849
|
|
1850 if (unwind.ximage->data == (char *)NULL) {
|
|
1851 signal_simple_error("Unable to allocate XImage data information",
|
|
1852 instantiator);
|
|
1853 }
|
|
1854
|
|
1855
|
|
1856 /*
|
|
1857 ** First pull out all of the colors used, and create a lookup for them
|
|
1858 */
|
|
1859
|
|
1860 if (unwind.image->class == PseudoClass) {
|
|
1861 int i;
|
|
1862
|
|
1863 unwind.npixels = unwind.image->colors;
|
|
1864 unwind.pixels = xmalloc(unwind.npixels * sizeof(unsigned long));
|
|
1865 for (i = 0; i < unwind.npixels; i++) {
|
|
1866 XColor color;
|
|
1867 /* ImageMagic uses 8bit values for colors, whilst X expects 16bits */
|
|
1868 color.red = unwind.image->colormap[i].red << 8;
|
|
1869 color.green = unwind.image->colormap[i].green << 8;
|
|
1870 color.blue = unwind.image->colormap[i].blue << 8;
|
|
1871 color.flags = DoRed | DoGreen | DoBlue;
|
|
1872 allocate_nearest_color (dpy, cmap, visual, &color);
|
|
1873 unwind.pixels[i] = color.pixel;
|
|
1874 }
|
|
1875 }
|
|
1876
|
|
1877 /*
|
|
1878 ** Need to pull the data from the 'Image' structure in
|
|
1879 ** unwind.image and convert it to an 'XImage' in unwind.ximage
|
|
1880 */
|
|
1881 {
|
|
1882 int i,j,x,b;
|
|
1883 unsigned int bytes_per_pixel, scanline_pad;
|
|
1884 unsigned long pixval;
|
|
1885 unsigned char *q;
|
|
1886 RunlengthPacket *p;
|
|
1887
|
|
1888 q = (unsigned char *) unwind.ximage->data;
|
|
1889 x = 0;
|
|
1890 p = unwind.image->pixels;
|
|
1891 scanline_pad = unwind.ximage->bytes_per_line -
|
|
1892 ((unwind.ximage->width * unwind.ximage->bits_per_pixel) >> 3);
|
|
1893
|
|
1894 /* Convert to multi-byte color-mapped X image. */
|
|
1895 bytes_per_pixel=unwind.ximage->bits_per_pixel >> 3;
|
|
1896
|
|
1897 for (i=0; i < unwind.image->packets; i++) {
|
|
1898 if (unwind.image->class == PseudoClass)
|
|
1899 pixval = unwind.pixels[p->index];
|
|
1900 else
|
215
|
1901 {
|
221
|
1902 /* ### NOW what? */
|
|
1903 pixval = 0;
|
|
1904 }
|
|
1905
|
|
1906 for (j=0; j <= ((int) p->length); j++) {
|
|
1907 for (b=0; b < bytes_per_pixel; b++)
|
|
1908 *q++=(unsigned char) (pixval >> (8*b));
|
|
1909 x++;
|
|
1910 if (x == unwind.ximage->width) {
|
|
1911 x=0;
|
|
1912 q+=scanline_pad;
|
215
|
1913 }
|
221
|
1914 }
|
|
1915 p++;
|
|
1916 }
|
|
1917 }
|
|
1918
|
|
1919 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
|
|
1920 unwind.pixels, unwind.npixels,
|
|
1921 instantiator);
|
|
1922
|
|
1923 /* And we are done!
|
|
1924 ** Now that we've succeeded, we don't want the pixels
|
|
1925 ** freed right now. They're kept around in the image instance
|
|
1926 ** structure until it's destroyed.
|
|
1927 */
|
|
1928 unwind.npixels = 0;
|
|
1929 unbind_to (speccount, Qnil);
|
207
|
1930 }
|
|
1931
|
|
1932 #endif /* HAVE_IMAGEMAGICK */
|
|
1933
|
|
1934
|
0
|
1935 #ifdef HAVE_XFACE
|
|
1936
|
|
1937 /**********************************************************************
|
|
1938 * X-Face *
|
|
1939 **********************************************************************/
|
|
1940
|
|
1941 static void
|
|
1942 xface_validate (Lisp_Object instantiator)
|
|
1943 {
|
|
1944 file_or_data_must_be_present (instantiator);
|
|
1945 }
|
|
1946
|
|
1947 static Lisp_Object
|
|
1948 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1949 {
|
116
|
1950 /* This funcation can call lisp */
|
0
|
1951 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
1952 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1953 Lisp_Object alist = Qnil;
|
185
|
1954
|
0
|
1955 GCPRO3 (file, mask_file, alist);
|
|
1956
|
|
1957 /* Now, convert any file data into inline data for both the regular
|
|
1958 data and the mask data. At the end of this, `data' will contain
|
|
1959 the inline data (if any) or Qnil, and `file' will contain
|
|
1960 the name this data was derived from (if known) or Qnil.
|
|
1961 Likewise for `mask_file' and `mask_data'.
|
|
1962
|
|
1963 Note that if we cannot generate any regular inline data, we
|
|
1964 skip out. */
|
|
1965
|
|
1966 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
|
|
1967 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
1968 Q_mask_data);
|
|
1969
|
|
1970 if (CONSP (file)) /* failure locating filename */
|
|
1971 signal_double_file_error ("Opening bitmap file",
|
|
1972 "no such file or directory",
|
|
1973 Fcar (file));
|
|
1974
|
|
1975 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
1976 RETURN_UNGCPRO (inst);
|
|
1977
|
|
1978 alist = tagged_vector_to_alist (inst);
|
|
1979
|
|
1980 {
|
|
1981 Lisp_Object data = make_string_from_file (file);
|
|
1982 alist = remassq_no_quit (Q_file, alist);
|
|
1983 /* there can't be a :data at this point. */
|
|
1984 alist = Fcons (Fcons (Q_file, file),
|
|
1985 Fcons (Fcons (Q_data, data), alist));
|
|
1986 }
|
|
1987
|
|
1988 alist = xbm_mask_file_munging (alist, file, mask_file);
|
|
1989
|
|
1990 {
|
|
1991 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
1992 free_alist (alist);
|
|
1993 RETURN_UNGCPRO (result);
|
|
1994 }
|
|
1995 }
|
|
1996
|
|
1997 static int
|
74
|
1998 xface_possible_dest_types (void)
|
0
|
1999 {
|
74
|
2000 return
|
|
2001 IMAGE_MONO_PIXMAP_MASK |
|
|
2002 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
2003 IMAGE_POINTER_MASK;
|
|
2004 }
|
|
2005
|
|
2006 #if defined(EXTERN)
|
|
2007 /* This is about to get redefined! */
|
|
2008 #undef EXTERN
|
|
2009 #endif
|
|
2010 /* We have to define SYSV32 so that compface.h includes string.h
|
|
2011 instead of strings.h. */
|
|
2012 #define SYSV32
|
185
|
2013 #ifdef __cplusplus
|
|
2014 extern "C" {
|
|
2015 #endif
|
0
|
2016 #include <compface.h>
|
185
|
2017 #ifdef __cplusplus
|
|
2018 }
|
|
2019 #endif
|
0
|
2020 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
2021 to jmp_buf we end up with a conflicting type error with the
|
|
2022 definition in compface.h */
|
|
2023 extern jmp_buf comp_env;
|
|
2024 #undef SYSV32
|
|
2025
|
|
2026 static void
|
|
2027 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2028 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
2029 int dest_mask, Lisp_Object domain)
|
0
|
2030 {
|
|
2031 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2032 int i, stattis;
|
|
2033 char *p, *bits, *bp;
|
16
|
2034 CONST char * volatile emsg = 0;
|
|
2035 CONST char * volatile dstring;
|
0
|
2036
|
|
2037 assert (!NILP (data));
|
|
2038
|
|
2039 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
|
|
2040
|
|
2041 if ((p = strchr (dstring, ':')))
|
|
2042 {
|
|
2043 dstring = p + 1;
|
|
2044 }
|
|
2045
|
|
2046 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
2047 if (!(stattis = setjmp (comp_env)))
|
|
2048 {
|
|
2049 UnCompAll ((char *) dstring);
|
|
2050 UnGenFace ();
|
|
2051 }
|
|
2052
|
|
2053 switch (stattis)
|
|
2054 {
|
|
2055 case -2:
|
|
2056 emsg = "uncompface: internal error";
|
|
2057 break;
|
|
2058 case -1:
|
|
2059 emsg = "uncompface: insufficient or invalid data";
|
|
2060 break;
|
|
2061 case 1:
|
|
2062 emsg = "uncompface: excess data ignored";
|
|
2063 break;
|
|
2064 }
|
|
2065
|
|
2066 if (emsg)
|
|
2067 signal_simple_error_2 (emsg, data, Qimage);
|
|
2068
|
|
2069 bp = bits = (char *) alloca (PIXELS / 8);
|
|
2070
|
|
2071 /* the compface library exports char F[], which uses a single byte per
|
|
2072 pixel to represent a 48x48 bitmap. Yuck. */
|
|
2073 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
2074 {
|
|
2075 int n, b;
|
|
2076 /* reverse the bit order of each byte... */
|
|
2077 for (b = n = 0; b < 8; ++b)
|
|
2078 {
|
|
2079 n |= ((*p++) << b);
|
|
2080 }
|
|
2081 *bp++ = (char) n;
|
|
2082 }
|
|
2083
|
|
2084 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
2085 pointer_bg, dest_mask, 48, 48, bits);
|
|
2086 }
|
|
2087
|
|
2088 #endif /* HAVE_XFACE */
|
|
2089
|
|
2090
|
|
2091 /**********************************************************************
|
122
|
2092 * Autodetect *
|
0
|
2093 **********************************************************************/
|
|
2094
|
|
2095 static void
|
122
|
2096 autodetect_validate (Lisp_Object instantiator)
|
0
|
2097 {
|
|
2098 data_must_be_present (instantiator);
|
|
2099 }
|
|
2100
|
|
2101 static Lisp_Object
|
122
|
2102 autodetect_normalize (Lisp_Object instantiator,
|
120
|
2103 Lisp_Object console_type)
|
0
|
2104 {
|
|
2105 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
2106 Lisp_Object filename = Qnil;
|
|
2107 Lisp_Object data = Qnil;
|
|
2108 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2109 Lisp_Object alist = Qnil;
|
|
2110
|
|
2111 GCPRO3 (filename, data, alist);
|
|
2112
|
|
2113 if (NILP (file)) /* no conversion necessary */
|
|
2114 RETURN_UNGCPRO (instantiator);
|
|
2115
|
|
2116 alist = tagged_vector_to_alist (instantiator);
|
|
2117
|
|
2118 filename = locate_pixmap_file (file);
|
|
2119 if (!NILP (filename))
|
|
2120 {
|
|
2121 int xhot, yhot;
|
|
2122 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
2123 called by pixmap_to_lisp_data, don't return an error value
|
|
2124 if the given file is not a valid XPM file. Instead, they
|
|
2125 just seg fault. It is definitely caused by passing a
|
|
2126 bitmap. To try and avoid this we check for bitmaps first. */
|
185
|
2127
|
0
|
2128 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
2129
|
|
2130 if (!EQ (data, Qt))
|
|
2131 {
|
|
2132 alist = remassq_no_quit (Q_data, alist);
|
|
2133 alist = Fcons (Fcons (Q_file, filename),
|
|
2134 Fcons (Fcons (Q_data, data), alist));
|
|
2135 if (xhot != -1)
|
|
2136 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
2137 alist);
|
|
2138 if (yhot != -1)
|
|
2139 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
2140 alist);
|
|
2141
|
|
2142 alist = xbm_mask_file_munging (alist, filename, Qnil);
|
|
2143
|
|
2144 {
|
|
2145 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
2146 free_alist (alist);
|
|
2147 RETURN_UNGCPRO (result);
|
|
2148 }
|
|
2149 }
|
|
2150
|
|
2151 #ifdef HAVE_XPM
|
|
2152 data = pixmap_to_lisp_data (filename, 1);
|
|
2153
|
|
2154 if (!EQ (data, Qt))
|
|
2155 {
|
|
2156 alist = remassq_no_quit (Q_data, alist);
|
|
2157 alist = Fcons (Fcons (Q_file, filename),
|
|
2158 Fcons (Fcons (Q_data, data), alist));
|
|
2159 alist = Fcons (Fcons (Q_color_symbols,
|
|
2160 evaluate_xpm_color_symbols ()),
|
|
2161 alist);
|
|
2162 {
|
|
2163 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
2164 free_alist (alist);
|
|
2165 RETURN_UNGCPRO (result);
|
|
2166 }
|
|
2167 }
|
|
2168 #endif
|
|
2169 }
|
|
2170
|
|
2171 /* If we couldn't convert it, just put it back as it is.
|
|
2172 We might try to further frob it later as a cursor-font
|
|
2173 specification. (We can't do that now because we don't know
|
|
2174 what dest-types it's going to be instantiated into.) */
|
|
2175 {
|
122
|
2176 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
0
|
2177 free_alist (alist);
|
|
2178 RETURN_UNGCPRO (result);
|
|
2179 }
|
|
2180 }
|
|
2181
|
|
2182 static int
|
122
|
2183 autodetect_possible_dest_types (void)
|
0
|
2184 {
|
74
|
2185 return
|
|
2186 IMAGE_MONO_PIXMAP_MASK |
|
|
2187 IMAGE_COLOR_PIXMAP_MASK |
|
|
2188 IMAGE_POINTER_MASK |
|
|
2189 IMAGE_TEXT_MASK;
|
0
|
2190 }
|
|
2191
|
|
2192 static void
|
122
|
2193 autodetect_instantiate (Lisp_Object image_instance,
|
120
|
2194 Lisp_Object instantiator,
|
|
2195 Lisp_Object pointer_fg,
|
|
2196 Lisp_Object pointer_bg,
|
124
|
2197 int dest_mask, Lisp_Object domain)
|
0
|
2198 {
|
|
2199 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2200 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2201 Lisp_Object alist = Qnil;
|
|
2202 Lisp_Object result = Qnil;
|
|
2203 int is_cursor_font = 0;
|
|
2204
|
|
2205 GCPRO3 (data, alist, result);
|
|
2206
|
|
2207 alist = tagged_vector_to_alist (instantiator);
|
|
2208 if (dest_mask & IMAGE_POINTER_MASK)
|
|
2209 {
|
|
2210 CONST char *name_ext;
|
|
2211 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
2212 if (XmuCursorNameToIndex (name_ext) != -1)
|
|
2213 {
|
|
2214 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
2215 is_cursor_font = 1;
|
|
2216 }
|
|
2217 }
|
|
2218
|
|
2219 if (!is_cursor_font)
|
|
2220 result = alist_to_tagged_vector (Qstring, alist);
|
|
2221 free_alist (alist);
|
|
2222
|
|
2223 if (is_cursor_font)
|
|
2224 cursor_font_instantiate (image_instance, result, pointer_fg,
|
124
|
2225 pointer_bg, dest_mask, domain);
|
0
|
2226 else
|
|
2227 string_instantiate (image_instance, result, pointer_fg,
|
124
|
2228 pointer_bg, dest_mask, domain);
|
0
|
2229
|
|
2230 UNGCPRO;
|
|
2231 }
|
|
2232
|
|
2233
|
|
2234 /**********************************************************************
|
|
2235 * Font *
|
|
2236 **********************************************************************/
|
|
2237
|
|
2238 static void
|
|
2239 font_validate (Lisp_Object instantiator)
|
|
2240 {
|
|
2241 data_must_be_present (instantiator);
|
|
2242 }
|
|
2243
|
|
2244 /* XmuCvtStringToCursor is bogus in the following ways:
|
|
2245
|
|
2246 - When it can't convert the given string to a real cursor, it will
|
|
2247 sometimes return a "success" value, after triggering a BadPixmap
|
|
2248 error. It then gives you a cursor that will itself generate BadCursor
|
|
2249 errors. So we install this error handler to catch/notice the X error
|
|
2250 and take that as meaning "couldn't convert."
|
|
2251
|
|
2252 - When you tell it to find a cursor file that doesn't exist, it prints
|
|
2253 an error message on stderr. You can't make it not do that.
|
|
2254
|
|
2255 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
|
|
2256 objects, or XPM files, or $XBMLANGPATH.
|
|
2257 */
|
|
2258
|
|
2259 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
|
|
2260
|
|
2261 static int XLoadFont_got_error;
|
|
2262
|
|
2263 static int
|
|
2264 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
|
|
2265 {
|
|
2266 XLoadFont_got_error = 1;
|
|
2267 return 0;
|
|
2268 }
|
|
2269
|
|
2270 static Font
|
|
2271 safe_XLoadFont (Display *dpy, char *name)
|
|
2272 {
|
|
2273 Font font;
|
|
2274 int (*old_handler) (Display *, XErrorEvent *);
|
|
2275 XLoadFont_got_error = 0;
|
|
2276 XSync (dpy, 0);
|
|
2277 old_handler = XSetErrorHandler (XLoadFont_error_handler);
|
|
2278 font = XLoadFont (dpy, name);
|
|
2279 XSync (dpy, 0);
|
|
2280 XSetErrorHandler (old_handler);
|
|
2281 if (XLoadFont_got_error) return 0;
|
|
2282 return font;
|
|
2283 }
|
|
2284
|
|
2285 static int
|
74
|
2286 font_possible_dest_types (void)
|
0
|
2287 {
|
|
2288 return IMAGE_POINTER_MASK;
|
|
2289 }
|
|
2290
|
|
2291 static void
|
|
2292 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2293 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
2294 int dest_mask, Lisp_Object domain)
|
0
|
2295 {
|
|
2296 /* This function can GC */
|
|
2297 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2298 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2299 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2300 Display *dpy;
|
|
2301 XColor fg, bg;
|
|
2302 Font source, mask;
|
|
2303 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
2304 int source_char, mask_char;
|
|
2305 int count;
|
|
2306 Lisp_Object foreground, background;
|
|
2307
|
|
2308 if (!DEVICE_X_P (XDEVICE (device)))
|
|
2309 signal_simple_error ("Not an X device", device);
|
|
2310
|
|
2311 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
2312
|
|
2313 if (!STRINGP (data) ||
|
14
|
2314 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
0
|
2315 signal_simple_error ("Invalid font-glyph instantiator",
|
|
2316 instantiator);
|
|
2317
|
|
2318 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
2319 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
2320
|
|
2321 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
2322 if (NILP (foreground))
|
|
2323 foreground = pointer_fg;
|
|
2324 background = find_keyword_in_vector (instantiator, Q_background);
|
|
2325 if (NILP (background))
|
|
2326 background = pointer_bg;
|
|
2327
|
|
2328 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
2329
|
14
|
2330 count = sscanf ((char *) XSTRING_DATA (data),
|
0
|
2331 "FONT %s %d %s %d %c",
|
|
2332 source_name, &source_char,
|
|
2333 mask_name, &mask_char, &dummy);
|
|
2334 /* Allow "%s %d %d" as well... */
|
|
2335 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
2336 count = 4, mask_name[0] = 0;
|
|
2337
|
|
2338 if (count != 2 && count != 4)
|
|
2339 signal_simple_error ("invalid cursor specification", data);
|
|
2340 source = safe_XLoadFont (dpy, source_name);
|
|
2341 if (! source)
|
|
2342 signal_simple_error_2 ("couldn't load font",
|
|
2343 build_string (source_name),
|
|
2344 data);
|
|
2345 if (count == 2)
|
|
2346 mask = 0;
|
|
2347 else if (!mask_name[0])
|
|
2348 mask = source;
|
|
2349 else
|
|
2350 {
|
|
2351 mask = safe_XLoadFont (dpy, mask_name);
|
|
2352 if (!mask)
|
|
2353 /* continuable */
|
|
2354 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
|
|
2355 build_string (mask_name), data));
|
|
2356 }
|
|
2357 if (!mask)
|
|
2358 mask_char = 0;
|
|
2359
|
|
2360 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
2361
|
|
2362 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
2363 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
2364 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
2365 &fg, &bg);
|
|
2366 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
2367 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
2368 XUnloadFont (dpy, source);
|
|
2369 if (mask && mask != source) XUnloadFont (dpy, mask);
|
|
2370 }
|
|
2371
|
|
2372
|
|
2373 /**********************************************************************
|
|
2374 * Cursor-Font *
|
|
2375 **********************************************************************/
|
|
2376
|
|
2377 static void
|
|
2378 cursor_font_validate (Lisp_Object instantiator)
|
|
2379 {
|
|
2380 data_must_be_present (instantiator);
|
|
2381 }
|
|
2382
|
|
2383 static int
|
74
|
2384 cursor_font_possible_dest_types (void)
|
0
|
2385 {
|
|
2386 return IMAGE_POINTER_MASK;
|
|
2387 }
|
|
2388
|
|
2389 static void
|
|
2390 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2391 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
2392 int dest_mask, Lisp_Object domain)
|
0
|
2393 {
|
|
2394 /* This function can GC */
|
|
2395 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
2396 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2397 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2398 Display *dpy;
|
|
2399 int i;
|
|
2400 CONST char *name_ext;
|
|
2401 Lisp_Object foreground, background;
|
|
2402
|
|
2403 if (!DEVICE_X_P (XDEVICE (device)))
|
|
2404 signal_simple_error ("Not an X device", device);
|
|
2405
|
|
2406 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
2407
|
|
2408 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
2409 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
2410
|
|
2411 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
2412 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
|
|
2413 signal_simple_error ("Unrecognized cursor-font name", data);
|
|
2414
|
|
2415 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
2416 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
|
|
2417 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
2418 if (NILP (foreground))
|
|
2419 foreground = pointer_fg;
|
|
2420 background = find_keyword_in_vector (instantiator, Q_background);
|
|
2421 if (NILP (background))
|
|
2422 background = pointer_bg;
|
|
2423 maybe_recolor_cursor (image_instance, foreground, background);
|
|
2424 }
|
|
2425
|
|
2426 static int
|
|
2427 x_colorize_image_instance (Lisp_Object image_instance,
|
|
2428 Lisp_Object foreground, Lisp_Object background)
|
|
2429 {
|
|
2430 struct Lisp_Image_Instance *p;
|
|
2431
|
|
2432 p = XIMAGE_INSTANCE (image_instance);
|
|
2433
|
|
2434 switch (IMAGE_INSTANCE_TYPE (p))
|
|
2435 {
|
|
2436 case IMAGE_MONO_PIXMAP:
|
|
2437 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
2438 /* Make sure there aren't two pointers to the same mask, causing
|
|
2439 it to get freed twice. */
|
|
2440 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
2441 break;
|
|
2442
|
|
2443 default:
|
|
2444 return 0;
|
|
2445 }
|
|
2446
|
|
2447 {
|
|
2448 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
219
|
2449 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
2450 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
2451 Pixmap new = XCreatePixmap (dpy, draw,
|
0
|
2452 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
2453 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
|
|
2454 XColor color;
|
|
2455 XGCValues gcv;
|
|
2456 GC gc;
|
|
2457 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
|
|
2458 gcv.foreground = color.pixel;
|
|
2459 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
|
|
2460 gcv.background = color.pixel;
|
|
2461 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
|
|
2462 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
|
|
2463 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
2464 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
2465 0, 0, 1);
|
|
2466 XFreeGC (dpy, gc);
|
|
2467 IMAGE_INSTANCE_X_PIXMAP (p) = new;
|
|
2468 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
|
|
2469 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
2470 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
2471 return 1;
|
|
2472 }
|
|
2473 }
|
|
2474
|
|
2475
|
114
|
2476 #if HAVE_SUBWINDOWS
|
0
|
2477 /************************************************************************/
|
|
2478 /* subwindows */
|
|
2479 /************************************************************************/
|
|
2480
|
|
2481 Lisp_Object Qsubwindowp;
|
|
2482 static Lisp_Object mark_subwindow (Lisp_Object, void (*) (Lisp_Object));
|
|
2483 static void print_subwindow (Lisp_Object, Lisp_Object, int);
|
|
2484 static void finalize_subwindow (void *, int);
|
|
2485 static int subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth);
|
|
2486 static unsigned long subwindow_hash (Lisp_Object obj, int depth);
|
|
2487 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
|
|
2488 mark_subwindow, print_subwindow,
|
|
2489 finalize_subwindow, subwindow_equal,
|
|
2490 subwindow_hash, struct Lisp_Subwindow);
|
|
2491
|
|
2492 static Lisp_Object
|
|
2493 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2494 {
|
|
2495 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2496 return sw->frame;
|
|
2497 }
|
|
2498
|
|
2499 static void
|
|
2500 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
2501 {
|
|
2502 char buf[100];
|
|
2503 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2504 struct frame *frm = XFRAME (sw->frame);
|
|
2505
|
|
2506 if (print_readably)
|
|
2507 error ("printing unreadable object #<subwindow 0x%x>",
|
|
2508 sw->header.uid);
|
|
2509
|
|
2510 write_c_string ("#<subwindow", printcharfun);
|
|
2511 sprintf (buf, " %dx%d", sw->width, sw->height);
|
|
2512 write_c_string (buf, printcharfun);
|
|
2513
|
|
2514 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
2515 are specific to a particular frame so we want to print in their
|
|
2516 description what that frame is. */
|
185
|
2517
|
0
|
2518 write_c_string (" on #<", printcharfun);
|
|
2519 if (!FRAME_LIVE_P (frm))
|
|
2520 write_c_string ("dead", printcharfun);
|
|
2521 else if (FRAME_TTY_P (frm))
|
|
2522 write_c_string ("tty", printcharfun);
|
|
2523 else if (FRAME_X_P (frm))
|
|
2524 write_c_string ("x", printcharfun);
|
|
2525 else
|
|
2526 write_c_string ("UNKNOWN", printcharfun);
|
|
2527 write_c_string ("-frame ", printcharfun);
|
|
2528 print_internal (frm->name, printcharfun, 1);
|
|
2529 sprintf (buf, " 0x%x>", frm->header.uid);
|
|
2530 write_c_string (buf, printcharfun);
|
|
2531
|
|
2532 sprintf (buf, ") 0x%x>", sw->header.uid);
|
|
2533 write_c_string (buf, printcharfun);
|
|
2534 }
|
|
2535
|
|
2536 static void
|
|
2537 finalize_subwindow (void *header, int for_disksave)
|
|
2538 {
|
|
2539 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
|
|
2540 if (for_disksave) finalose (sw);
|
|
2541 if (sw->subwindow)
|
|
2542 {
|
|
2543 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
|
|
2544 sw->subwindow = 0;
|
|
2545 }
|
|
2546 }
|
|
2547
|
|
2548 /* subwindows are equal iff they have the same window XID */
|
|
2549 static int
|
|
2550 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
2551 {
|
|
2552 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
|
|
2553 }
|
|
2554
|
|
2555 static unsigned long
|
|
2556 subwindow_hash (Lisp_Object obj, int depth)
|
|
2557 {
|
|
2558 return XSUBWINDOW (obj)->subwindow;
|
|
2559 }
|
|
2560
|
|
2561 /* #### PROBLEM: The display routines assume that the glyph is only
|
|
2562 being displayed in one buffer. If it is in two different buffers
|
|
2563 which are both being displayed simultaneously you will lose big time.
|
|
2564 This can be dealt with in the new redisplay. */
|
|
2565
|
70
|
2566 /* #### These are completely un-re-implemented in 19.14. Get it done
|
|
2567 for 19.15. */
|
0
|
2568
|
20
|
2569 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
|
0
|
2570 Creates a new `subwindow' object of size WIDTH x HEIGHT.
|
|
2571 The default is a window of size 1x1, which is also the minimum allowed
|
|
2572 window size. Subwindows are per-frame. A buffer being shown in two
|
|
2573 different frames will only display a subwindow glyph in the frame in
|
|
2574 which it was actually created. If two windows on the same frame are
|
|
2575 displaying the buffer then the most recently used window will actually
|
|
2576 display the window. If the frame is not specified, the selected frame
|
|
2577 is used.
|
|
2578
|
|
2579 Subwindows are not currently implemented.
|
20
|
2580 */
|
|
2581 (width, height, frame))
|
0
|
2582 {
|
|
2583 Display *dpy;
|
|
2584 Screen *xs;
|
|
2585 Window pw;
|
|
2586 struct frame *f;
|
|
2587 unsigned int iw, ih;
|
|
2588 XSetWindowAttributes xswa;
|
|
2589 Mask valueMask = 0;
|
|
2590
|
140
|
2591 error ("subwindows are not functional in 20.2; they may be again someday");
|
0
|
2592
|
|
2593 f = decode_x_frame (frame);
|
|
2594
|
|
2595 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
|
|
2596 dpy = DisplayOfScreen (xs);
|
|
2597 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
|
|
2598
|
|
2599 if (NILP (width))
|
|
2600 iw = 1;
|
|
2601 else
|
|
2602 {
|
|
2603 CHECK_INT (width);
|
|
2604 iw = XINT (width);
|
|
2605 if (iw < 1) iw = 1;
|
|
2606 }
|
|
2607 if (NILP (height))
|
|
2608 ih = 1;
|
|
2609 else
|
|
2610 {
|
|
2611 CHECK_INT (height);
|
|
2612 ih = XINT (height);
|
|
2613 if (ih < 1) ih = 1;
|
|
2614 }
|
|
2615
|
|
2616 {
|
185
|
2617 struct Lisp_Subwindow *sw =
|
|
2618 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
|
0
|
2619 Lisp_Object val;
|
|
2620 sw->frame = frame;
|
|
2621 sw->xscreen = xs;
|
|
2622 sw->parent_window = pw;
|
|
2623 sw->height = ih;
|
|
2624 sw->width = iw;
|
|
2625
|
|
2626 xswa.backing_store = Always;
|
|
2627 valueMask |= CWBackingStore;
|
|
2628
|
|
2629 xswa.colormap = DefaultColormapOfScreen (xs);
|
|
2630 valueMask |= CWColormap;
|
|
2631
|
|
2632 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
|
|
2633 InputOutput, CopyFromParent, valueMask,
|
|
2634 &xswa);
|
|
2635
|
|
2636 XSETSUBWINDOW (val, sw);
|
|
2637 return val;
|
|
2638 }
|
|
2639 }
|
|
2640
|
|
2641 /* #### Should this function exist? */
|
20
|
2642 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
|
0
|
2643 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
|
|
2644 Subwindows are not currently implemented.
|
20
|
2645 */
|
|
2646 (subwindow, property, data))
|
0
|
2647 {
|
|
2648 Atom property_atom;
|
|
2649 struct Lisp_Subwindow *sw;
|
|
2650 Display *dpy;
|
|
2651
|
|
2652 CHECK_SUBWINDOW (subwindow);
|
|
2653 CHECK_STRING (property);
|
|
2654 CHECK_STRING (data);
|
|
2655
|
|
2656 sw = XSUBWINDOW (subwindow);
|
|
2657 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
|
|
2658 (FRAME_DEVICE (XFRAME (sw->frame))));
|
|
2659
|
16
|
2660 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
|
0
|
2661 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
|
16
|
2662 PropModeReplace,
|
|
2663 XSTRING_DATA (data),
|
14
|
2664 XSTRING_LENGTH (data));
|
0
|
2665
|
|
2666 return (property);
|
|
2667 }
|
|
2668
|
20
|
2669 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
0
|
2670 Return non-nil if OBJECT is a subwindow.
|
|
2671 Subwindows are not currently implemented.
|
20
|
2672 */
|
|
2673 (object))
|
0
|
2674 {
|
|
2675 return (SUBWINDOWP (object) ? Qt : Qnil);
|
|
2676 }
|
|
2677
|
20
|
2678 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
|
0
|
2679 Width of SUBWINDOW.
|
|
2680 Subwindows are not currently implemented.
|
20
|
2681 */
|
|
2682 (subwindow))
|
0
|
2683 {
|
|
2684 CHECK_SUBWINDOW (subwindow);
|
|
2685 return (make_int (XSUBWINDOW (subwindow)->width));
|
|
2686 }
|
|
2687
|
20
|
2688 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
|
0
|
2689 Height of SUBWINDOW.
|
|
2690 Subwindows are not currently implemented.
|
20
|
2691 */
|
|
2692 (subwindow))
|
0
|
2693 {
|
|
2694 CHECK_SUBWINDOW (subwindow);
|
|
2695 return (make_int (XSUBWINDOW (subwindow)->height));
|
|
2696 }
|
|
2697
|
20
|
2698 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
|
0
|
2699 Return the xid of SUBWINDOW as a number.
|
|
2700 Subwindows are not currently implemented.
|
20
|
2701 */
|
|
2702 (subwindow))
|
0
|
2703 {
|
|
2704 CHECK_SUBWINDOW (subwindow);
|
|
2705 return (make_int (XSUBWINDOW (subwindow)->subwindow));
|
|
2706 }
|
|
2707
|
20
|
2708 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
0
|
2709 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
2710 If a value is nil that parameter is not changed.
|
|
2711 Subwindows are not currently implemented.
|
20
|
2712 */
|
|
2713 (subwindow, width, height))
|
0
|
2714 {
|
|
2715 int neww, newh;
|
|
2716 struct Lisp_Subwindow *sw;
|
|
2717
|
|
2718 CHECK_SUBWINDOW (subwindow);
|
|
2719 sw = XSUBWINDOW (subwindow);
|
|
2720
|
|
2721 if (NILP (width))
|
|
2722 neww = sw->width;
|
|
2723 else
|
|
2724 neww = XINT (width);
|
|
2725
|
|
2726 if (NILP (height))
|
|
2727 newh = sw->height;
|
|
2728 else
|
|
2729 newh = XINT (height);
|
|
2730
|
|
2731 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
|
|
2732
|
|
2733 sw->height = newh;
|
|
2734 sw->width = neww;
|
|
2735
|
|
2736 return subwindow;
|
|
2737 }
|
|
2738
|
20
|
2739 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
0
|
2740 Generate a Map event for SUBWINDOW.
|
|
2741 Subwindows are not currently implemented.
|
20
|
2742 */
|
|
2743 (subwindow))
|
0
|
2744 {
|
|
2745 CHECK_SUBWINDOW (subwindow);
|
|
2746
|
|
2747 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
|
|
2748 XSUBWINDOW (subwindow)->subwindow);
|
|
2749
|
|
2750 return subwindow;
|
|
2751 }
|
114
|
2752 #endif
|
0
|
2753
|
|
2754 /************************************************************************/
|
|
2755 /* initialization */
|
|
2756 /************************************************************************/
|
|
2757
|
|
2758 void
|
|
2759 syms_of_glyphs_x (void)
|
|
2760 {
|
114
|
2761 #if HAVE_SUBWINDOWS
|
0
|
2762 defsymbol (&Qsubwindowp, "subwindowp");
|
|
2763
|
20
|
2764 DEFSUBR (Fmake_subwindow);
|
|
2765 DEFSUBR (Fchange_subwindow_property);
|
|
2766 DEFSUBR (Fsubwindowp);
|
|
2767 DEFSUBR (Fsubwindow_width);
|
|
2768 DEFSUBR (Fsubwindow_height);
|
|
2769 DEFSUBR (Fsubwindow_xid);
|
|
2770 DEFSUBR (Fresize_subwindow);
|
|
2771 DEFSUBR (Fforce_subwindow_map);
|
114
|
2772 #endif
|
0
|
2773
|
|
2774 defkeyword (&Q_mask_file, ":mask-file");
|
|
2775 defkeyword (&Q_mask_data, ":mask-data");
|
|
2776 defkeyword (&Q_hotspot_x, ":hotspot-x");
|
|
2777 defkeyword (&Q_hotspot_y, ":hotspot-y");
|
|
2778 defkeyword (&Q_foreground, ":foreground");
|
|
2779 defkeyword (&Q_background, ":background");
|
|
2780
|
|
2781 #ifdef HAVE_XPM
|
|
2782 defkeyword (&Q_color_symbols, ":color-symbols");
|
|
2783 #endif
|
|
2784 }
|
|
2785
|
|
2786 void
|
|
2787 console_type_create_glyphs_x (void)
|
|
2788 {
|
|
2789 /* image methods */
|
|
2790
|
|
2791 CONSOLE_HAS_METHOD (x, print_image_instance);
|
|
2792 CONSOLE_HAS_METHOD (x, finalize_image_instance);
|
|
2793 CONSOLE_HAS_METHOD (x, image_instance_equal);
|
|
2794 CONSOLE_HAS_METHOD (x, image_instance_hash);
|
|
2795 CONSOLE_HAS_METHOD (x, colorize_image_instance);
|
|
2796 }
|
|
2797
|
|
2798 void
|
|
2799 image_instantiator_format_create_glyphs_x (void)
|
|
2800 {
|
|
2801 /* image-instantiator types */
|
|
2802
|
|
2803 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
2804
|
|
2805 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
2806 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
2807 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
2808 IIFORMAT_HAS_METHOD (xbm, instantiate);
|
|
2809
|
|
2810 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
2811 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
2812 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
2813 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
2814 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
2815 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
2816 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
2817 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
2818
|
|
2819 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
2820
|
|
2821 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
2822 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
2823 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
2824
|
|
2825 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
2826 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
2827 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
2828
|
|
2829 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
2830
|
|
2831 IIFORMAT_HAS_METHOD (font, validate);
|
|
2832 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
2833 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
2834
|
|
2835 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
2836 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
2837 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
2838
|
207
|
2839 #ifdef HAVE_IMAGEMAGICK
|
|
2840 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (imagick, "imagick");
|
|
2841
|
|
2842 IIFORMAT_HAS_METHOD (imagick, validate);
|
|
2843 IIFORMAT_HAS_METHOD (imagick, normalize);
|
|
2844 IIFORMAT_HAS_METHOD (imagick, possible_dest_types);
|
|
2845 IIFORMAT_HAS_METHOD (imagick, instantiate);
|
|
2846
|
|
2847 IIFORMAT_VALID_KEYWORD (imagick, Q_data, check_valid_string);
|
|
2848 IIFORMAT_VALID_KEYWORD (imagick, Q_file, check_valid_string);
|
221
|
2849
|
|
2850 #ifdef OLDCOMPAT /* old graphics compatibility */
|
|
2851 #define IIFORMAT_USES_METHOD(format, source, m) \
|
|
2852 (format##_image_instantiator_methods->m##_method = source##_##m)
|
|
2853
|
|
2854 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (tiff, "tiff");
|
|
2855 IIFORMAT_USES_METHOD (tiff, imagick, validate);
|
|
2856 IIFORMAT_USES_METHOD (tiff, imagick, normalize);
|
|
2857 IIFORMAT_USES_METHOD (tiff, imagick, possible_dest_types);
|
|
2858 IIFORMAT_USES_METHOD (tiff, imagick, instantiate);
|
|
2859 IIFORMAT_VALID_KEYWORD (tiff, Q_data, check_valid_string);
|
|
2860 IIFORMAT_VALID_KEYWORD (tiff, Q_file, check_valid_string);
|
|
2861
|
|
2862 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (png, "png");
|
|
2863 IIFORMAT_USES_METHOD (png, imagick, validate);
|
|
2864 IIFORMAT_USES_METHOD (png, imagick, normalize);
|
|
2865 IIFORMAT_USES_METHOD (png, imagick, possible_dest_types);
|
|
2866 IIFORMAT_USES_METHOD (png, imagick, instantiate);
|
|
2867 IIFORMAT_VALID_KEYWORD (png, Q_data, check_valid_string);
|
|
2868 IIFORMAT_VALID_KEYWORD (png, Q_file, check_valid_string);
|
|
2869
|
|
2870 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gif, "gif");
|
|
2871 IIFORMAT_USES_METHOD (gif, imagick, validate);
|
|
2872 IIFORMAT_USES_METHOD (gif, imagick, normalize);
|
|
2873 IIFORMAT_USES_METHOD (gif, imagick, possible_dest_types);
|
|
2874 IIFORMAT_USES_METHOD (gif, imagick, instantiate);
|
|
2875 IIFORMAT_VALID_KEYWORD (gif, Q_data, check_valid_string);
|
|
2876 IIFORMAT_VALID_KEYWORD (gif, Q_file, check_valid_string);
|
|
2877
|
|
2878 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (jpeg, "jpeg");
|
|
2879 IIFORMAT_USES_METHOD (jpeg, imagick, validate);
|
|
2880 IIFORMAT_USES_METHOD (jpeg, imagick, normalize);
|
|
2881 IIFORMAT_USES_METHOD (jpeg, imagick, possible_dest_types);
|
|
2882 IIFORMAT_USES_METHOD (jpeg, imagick, instantiate);
|
|
2883 IIFORMAT_VALID_KEYWORD (jpeg, Q_data, check_valid_string);
|
|
2884 IIFORMAT_VALID_KEYWORD (jpeg, Q_file, check_valid_string);
|
|
2885
|
|
2886 #endif /* old compat */
|
|
2887
|
0
|
2888 #endif
|
|
2889
|
|
2890 #ifdef HAVE_XPM
|
|
2891 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
|
|
2892
|
|
2893 IIFORMAT_HAS_METHOD (xpm, validate);
|
|
2894 IIFORMAT_HAS_METHOD (xpm, normalize);
|
|
2895 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
|
|
2896 IIFORMAT_HAS_METHOD (xpm, instantiate);
|
|
2897
|
|
2898 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
|
|
2899 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
|
|
2900 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
|
|
2901 #endif
|
|
2902
|
|
2903 #ifdef HAVE_XFACE
|
|
2904 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
2905
|
|
2906 IIFORMAT_HAS_METHOD (xface, validate);
|
|
2907 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
2908 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
2909 IIFORMAT_HAS_METHOD (xface, instantiate);
|
|
2910
|
|
2911 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
2912 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
2913 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
2914 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
2915 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
2916 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
185
|
2917 #endif
|
0
|
2918
|
122
|
2919 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
|
|
2920 "autodetect");
|
|
2921
|
|
2922 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
2923 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
2924 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
2925 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
2926
|
|
2927 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
0
|
2928 }
|
|
2929
|
|
2930 void
|
|
2931 vars_of_glyphs_x (void)
|
|
2932 {
|
|
2933 #ifdef HAVE_XPM
|
|
2934 Fprovide (Qxpm);
|
|
2935
|
|
2936 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
|
|
2937 Definitions of logical color-names used when reading XPM files.
|
|
2938 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
|
|
2939 The COLOR-NAME should be a string, which is the name of the color to define;
|
|
2940 the FORM should evaluate to a `color' specifier object, or a string to be
|
|
2941 passed to `make-color-instance'. If a loaded XPM file references a symbolic
|
|
2942 color called COLOR-NAME, it will display as the computed color instead.
|
|
2943
|
|
2944 The default value of this variable defines the logical color names
|
|
2945 \"foreground\" and \"background\" to be the colors of the `default' face.
|
|
2946 */ );
|
|
2947 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
|
185
|
2948 #endif
|
0
|
2949
|
207
|
2950 #ifdef HAVE_IMAGEMAGICK
|
|
2951 Fprovide (Qimagick);
|
221
|
2952
|
|
2953 #ifdef OLDCOMPAT
|
|
2954 Fprovide (Qtiff);
|
|
2955 Fprovide (Qpng);
|
|
2956 Fprovide (Qgif);
|
|
2957 Fprovide (Qjpeg);
|
|
2958 #endif
|
207
|
2959 #endif
|
|
2960
|
0
|
2961 #ifdef HAVE_XFACE
|
|
2962 Fprovide (Qxface);
|
185
|
2963 #endif
|
0
|
2964
|
|
2965 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
|
|
2966 A list of the directories in which X bitmap files may be found.
|
185
|
2967 If nil, this is initialized from the "*bitmapFilePath" resource.
|
0
|
2968 This is used by the `make-image-instance' function (however, note that if
|
|
2969 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
2970 */ );
|
|
2971 Vx_bitmap_file_path = Qnil;
|
|
2972 }
|
|
2973
|
|
2974 void
|
|
2975 complex_vars_of_glyphs_x (void)
|
|
2976 {
|
|
2977 #define BUILD_GLYPH_INST(variable, name) \
|
|
2978 Fadd_spec_to_specifier \
|
|
2979 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
2980 vector3 (Qxbm, Q_data, \
|
|
2981 list3 (make_int (name##_width), \
|
|
2982 make_int (name##_height), \
|
|
2983 make_ext_string (name##_bits, \
|
|
2984 sizeof (name##_bits), \
|
|
2985 FORMAT_BINARY))), \
|
|
2986 Qglobal, Qx, Qnil)
|
|
2987
|
|
2988 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
2989 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
2990 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
74
|
2991 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
0
|
2992
|
|
2993 #undef BUILD_GLYPH_INST
|
|
2994 }
|