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
|
276
|
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 21.0
|
|
39 Many changes for color work and optimizations by Jareth Hein for 21.0
|
|
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 21.0
|
|
41 TIFF code by Jareth Hein for 21.0
|
0
|
42
|
|
43 TODO:
|
|
44 Convert images.el to C and stick it in here?
|
|
45 */
|
|
46
|
|
47 #include <config.h>
|
|
48 #include "lisp.h"
|
251
|
49 #include "lstream.h"
|
0
|
50 #include "console-x.h"
|
|
51 #include "glyphs-x.h"
|
|
52 #include "objects-x.h"
|
|
53 #include "xmu.h"
|
|
54
|
|
55 #include "buffer.h"
|
|
56 #include "frame.h"
|
|
57 #include "insdel.h"
|
|
58 #include "opaque.h"
|
|
59
|
265
|
60 #include "imgproc.h"
|
|
61
|
0
|
62 #include "sysfile.h"
|
|
63
|
251
|
64 #include <setjmp.h>
|
290
|
65
|
259
|
66 #ifdef FILE_CODING
|
|
67 #include "file-coding.h"
|
138
|
68 #endif
|
0
|
69
|
265
|
70 #if INTBITS == 32
|
|
71 # define FOUR_BYTE_TYPE unsigned int
|
|
72 #elif LONGBITS == 32
|
|
73 # define FOUR_BYTE_TYPE unsigned long
|
|
74 #elif SHORTBITS == 32
|
|
75 # define FOUR_BYTE_TYPE unsigned short
|
|
76 #else
|
|
77 #error What kind of strange-ass system are we running on?
|
|
78 #endif
|
|
79
|
|
80 #define LISP_DEVICE_TO_X_SCREEN(dev) XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
|
0
|
81
|
|
82 #ifdef HAVE_XFACE
|
|
83 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
|
|
84 Lisp_Object Qxface;
|
|
85 #endif
|
|
86
|
|
87 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
|
|
88 Lisp_Object Qcursor_font;
|
|
89
|
|
90 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
|
|
91
|
122
|
92 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
|
0
|
93
|
|
94 static void cursor_font_instantiate (Lisp_Object image_instance,
|
|
95 Lisp_Object instantiator,
|
|
96 Lisp_Object pointer_fg,
|
|
97 Lisp_Object pointer_bg,
|
124
|
98 int dest_mask,
|
|
99 Lisp_Object domain);
|
0
|
100
|
|
101 #include "bitmaps.h"
|
|
102
|
|
103
|
|
104 /************************************************************************/
|
|
105 /* image instance methods */
|
|
106 /************************************************************************/
|
|
107
|
265
|
108 /************************************************************************/
|
|
109 /* convert from a series of RGB triples to an XImage formated for the */
|
|
110 /* proper display */
|
|
111 /************************************************************************/
|
272
|
112 static XImage *
|
|
113 convert_EImage_to_XImage (Lisp_Object device, int width, int height,
|
|
114 unsigned char *pic, unsigned long **pixtbl,
|
280
|
115 int *npixels)
|
265
|
116 {
|
|
117 Display *dpy;
|
|
118 Colormap cmap;
|
|
119 Visual *vis;
|
|
120 XImage *outimg;
|
|
121 int depth, bitmap_pad, byte_cnt, i, j;
|
|
122 int rd,gr,bl,q;
|
|
123 unsigned char *data, *ip, *dp;
|
|
124 quant_table *qtable;
|
|
125 union {
|
|
126 FOUR_BYTE_TYPE val;
|
|
127 char cp[4];
|
|
128 } conv;
|
|
129
|
|
130 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
131 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
132 vis = DEVICE_X_VISUAL (XDEVICE(device));
|
|
133 depth = DEVICE_X_DEPTH(XDEVICE(device));
|
|
134
|
269
|
135 if (vis->class == PseudoColor)
|
|
136 {
|
|
137 /* Quantize the image and get a histogram while we're at it.
|
|
138 Do this first to save memory */
|
|
139 qtable = build_EImage_quantable(pic, width, height, 256);
|
|
140 if (qtable == NULL) return NULL;
|
|
141 }
|
265
|
142
|
|
143 bitmap_pad = ((depth > 16) ? 32 :
|
|
144 (depth > 8) ? 16 :
|
|
145 8);
|
|
146 byte_cnt = bitmap_pad >> 3;
|
|
147
|
|
148 outimg = XCreateImage (dpy, vis,
|
|
149 depth, ZPixmap, 0, 0, width, height,
|
|
150 bitmap_pad, 0);
|
|
151 if (!outimg) return NULL;
|
|
152
|
|
153 data = (unsigned char *) xmalloc (outimg->bytes_per_line * height);
|
269
|
154 if (!data)
|
|
155 {
|
272
|
156 XDestroyImage (outimg);
|
269
|
157 return NULL;
|
|
158 }
|
272
|
159 outimg->data = (char *) data;
|
265
|
160
|
269
|
161 if (vis->class == PseudoColor)
|
|
162 {
|
|
163 unsigned long pixarray[256];
|
280
|
164 int pixcount, n;
|
269
|
165 /* use our quantize table to allocate the colors */
|
280
|
166 pixcount = 32;
|
|
167 *pixtbl = xnew_array (unsigned long, pixcount);
|
269
|
168 *npixels = 0;
|
|
169
|
|
170 /* ### should implement a sort by popularity to assure proper allocation */
|
|
171 n = *npixels;
|
|
172 for (i = 0; i < qtable->num_active_colors; i++)
|
|
173 {
|
|
174 XColor color;
|
|
175 int res;
|
265
|
176
|
269
|
177 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
|
|
178 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
|
|
179 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
|
|
180 color.flags = DoRed | DoGreen | DoBlue;
|
|
181 res = allocate_nearest_color (dpy, cmap, vis, &color);
|
|
182 if (res > 0 && res < 3)
|
|
183 {
|
280
|
184 DO_REALLOC(*pixtbl, pixcount, n+1, unsigned long);
|
269
|
185 (*pixtbl)[n] = color.pixel;
|
|
186 n++;
|
|
187 }
|
|
188 pixarray[i] = color.pixel;
|
|
189 }
|
|
190 *npixels = n;
|
|
191 ip = pic;
|
|
192 for (i = 0; i < height; i++)
|
|
193 {
|
|
194 dp = data + (i * outimg->bytes_per_line);
|
|
195 for (j = 0; j < width; j++)
|
|
196 {
|
|
197 rd = *ip++;
|
|
198 gr = *ip++;
|
|
199 bl = *ip++;
|
|
200 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
|
298
|
201 if (outimg->byte_order == MSBFirst)
|
|
202 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
|
203 else
|
|
204 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
269
|
205 }
|
|
206 }
|
|
207 xfree(qtable);
|
|
208 } else {
|
|
209 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
|
|
210 junk = vis->red_mask;
|
|
211 rshift = 0;
|
|
212 while ((junk & 0x1) == 0)
|
|
213 {
|
|
214 junk = junk >> 1;
|
|
215 rshift ++;
|
|
216 }
|
|
217 rbits = 0;
|
|
218 while (junk != 0)
|
|
219 {
|
|
220 junk = junk >> 1;
|
|
221 rbits++;
|
|
222 }
|
|
223 junk = vis->green_mask;
|
|
224 gshift = 0;
|
|
225 while ((junk & 0x1) == 0)
|
|
226 {
|
|
227 junk = junk >> 1;
|
|
228 gshift ++;
|
|
229 }
|
|
230 gbits = 0;
|
|
231 while (junk != 0)
|
|
232 {
|
|
233 junk = junk >> 1;
|
|
234 gbits++;
|
|
235 }
|
|
236 junk = vis->blue_mask;
|
|
237 bshift = 0;
|
|
238 while ((junk & 0x1) == 0)
|
|
239 {
|
|
240 junk = junk >> 1;
|
|
241 bshift ++;
|
|
242 }
|
|
243 bbits = 0;
|
|
244 while (junk != 0)
|
|
245 {
|
|
246 junk = junk >> 1;
|
|
247 bbits++;
|
|
248 }
|
|
249 ip = pic;
|
|
250 for (i = 0; i < height; i++)
|
|
251 {
|
|
252 dp = data + (i * outimg->bytes_per_line);
|
|
253 for (j = 0; j < width; j++)
|
|
254 {
|
|
255 if (rbits > 8)
|
|
256 rd = *ip++ << (rbits - 8);
|
|
257 else
|
|
258 rd = *ip++ >> (8 - rbits);
|
|
259 if (gbits > 8)
|
|
260 gr = *ip++ << (gbits - 8);
|
|
261 else
|
|
262 gr = *ip++ >> (8 - gbits);
|
|
263 if (bbits > 8)
|
|
264 bl = *ip++ << (bbits - 8);
|
|
265 else
|
|
266 bl = *ip++ >> (8 - bbits);
|
|
267
|
|
268 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
|
298
|
269 if (outimg->byte_order == MSBFirst)
|
|
270 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
|
271 else
|
|
272 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
269
|
273 }
|
|
274 }
|
|
275 }
|
265
|
276 return outimg;
|
|
277 }
|
|
278
|
|
279
|
|
280
|
0
|
281 static void
|
|
282 x_print_image_instance (struct Lisp_Image_Instance *p,
|
|
283 Lisp_Object printcharfun,
|
|
284 int escapeflag)
|
|
285 {
|
|
286 char buf[100];
|
|
287
|
|
288 switch (IMAGE_INSTANCE_TYPE (p))
|
|
289 {
|
|
290 case IMAGE_MONO_PIXMAP:
|
|
291 case IMAGE_COLOR_PIXMAP:
|
|
292 case IMAGE_POINTER:
|
|
293 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
|
|
294 write_c_string (buf, printcharfun);
|
|
295 if (IMAGE_INSTANCE_X_MASK (p))
|
|
296 {
|
|
297 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
|
|
298 write_c_string (buf, printcharfun);
|
|
299 }
|
|
300 write_c_string (")", printcharfun);
|
|
301 break;
|
114
|
302 #if HAVE_SUBWINDOWS
|
0
|
303 case IMAGE_SUBWINDOW:
|
|
304 /* #### implement me */
|
114
|
305 #endif
|
0
|
306 default:
|
|
307 break;
|
|
308 }
|
|
309 }
|
|
310
|
|
311 static void
|
|
312 x_finalize_image_instance (struct Lisp_Image_Instance *p)
|
|
313 {
|
|
314 if (!p->data)
|
|
315 return;
|
|
316
|
|
317 if (DEVICE_LIVE_P (XDEVICE (p->device)))
|
|
318 {
|
219
|
319 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
|
0
|
320
|
|
321 if (IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
322 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
|
0
|
323 if (IMAGE_INSTANCE_X_MASK (p) &&
|
|
324 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
|
219
|
325 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
|
0
|
326 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
|
|
327 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
328
|
|
329 if (IMAGE_INSTANCE_X_CURSOR (p))
|
|
330 {
|
219
|
331 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
|
0
|
332 IMAGE_INSTANCE_X_CURSOR (p) = 0;
|
|
333 }
|
|
334
|
|
335 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
|
|
336 {
|
219
|
337 XFreeColors (dpy,
|
269
|
338 IMAGE_INSTANCE_X_COLORMAP (p),
|
0
|
339 IMAGE_INSTANCE_X_PIXELS (p),
|
|
340 IMAGE_INSTANCE_X_NPIXELS (p), 0);
|
|
341 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
|
|
342 }
|
|
343 }
|
|
344 if (IMAGE_INSTANCE_X_PIXELS (p))
|
|
345 {
|
|
346 xfree (IMAGE_INSTANCE_X_PIXELS (p));
|
|
347 IMAGE_INSTANCE_X_PIXELS (p) = 0;
|
|
348 }
|
|
349
|
|
350 xfree (p->data);
|
|
351 p->data = 0;
|
|
352 }
|
|
353
|
|
354 static int
|
|
355 x_image_instance_equal (struct Lisp_Image_Instance *p1,
|
|
356 struct Lisp_Image_Instance *p2, int depth)
|
|
357 {
|
|
358 switch (IMAGE_INSTANCE_TYPE (p1))
|
|
359 {
|
|
360 case IMAGE_MONO_PIXMAP:
|
|
361 case IMAGE_COLOR_PIXMAP:
|
|
362 case IMAGE_POINTER:
|
269
|
363 if (IMAGE_INSTANCE_X_COLORMAP (p1) != IMAGE_INSTANCE_X_COLORMAP (p2) ||
|
|
364 IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
|
0
|
365 return 0;
|
114
|
366 #if HAVE_SUBWINDOWS
|
0
|
367 case IMAGE_SUBWINDOW:
|
|
368 /* #### implement me */
|
114
|
369 #endif
|
56
|
370 break;
|
0
|
371 default:
|
|
372 break;
|
|
373 }
|
|
374
|
|
375 return 1;
|
|
376 }
|
|
377
|
|
378 static unsigned long
|
|
379 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
|
|
380 {
|
|
381 switch (IMAGE_INSTANCE_TYPE (p))
|
|
382 {
|
|
383 case IMAGE_MONO_PIXMAP:
|
|
384 case IMAGE_COLOR_PIXMAP:
|
|
385 case IMAGE_POINTER:
|
|
386 return IMAGE_INSTANCE_X_NPIXELS (p);
|
114
|
387 #if HAVE_SUBWINDOWS
|
0
|
388 case IMAGE_SUBWINDOW:
|
|
389 /* #### implement me */
|
149
|
390 return 0;
|
114
|
391 #endif
|
0
|
392 default:
|
|
393 return 0;
|
|
394 }
|
|
395 }
|
|
396
|
|
397 /* Set all the slots in an image instance structure to reasonable
|
|
398 default values. This is used somewhere within an instantiate
|
|
399 method. It is assumed that the device slot within the image
|
|
400 instance is already set -- this is the case when instantiate
|
|
401 methods are called. */
|
|
402
|
|
403 static void
|
|
404 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
|
|
405 enum image_instance_type type)
|
|
406 {
|
185
|
407 ii->data = xnew_and_zero (struct x_image_instance_data);
|
0
|
408 IMAGE_INSTANCE_TYPE (ii) = type;
|
|
409 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
410 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
|
|
411 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
|
|
412 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
|
|
413 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
|
|
414 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
|
|
415 }
|
|
416
|
|
417
|
|
418 /************************************************************************/
|
|
419 /* pixmap file functions */
|
|
420 /************************************************************************/
|
|
421
|
|
422 /* Where bitmaps are; initialized from resource database */
|
|
423 Lisp_Object Vx_bitmap_file_path;
|
|
424
|
|
425 #ifndef BITMAPDIR
|
|
426 #define BITMAPDIR "/usr/include/X11/bitmaps"
|
|
427 #endif
|
|
428
|
|
429 #define USE_XBMLANGPATH
|
|
430
|
|
431 /* Given a pixmap filename, look through all of the "standard" places
|
|
432 where the file might be located. Return a full pathname if found;
|
|
433 otherwise, return Qnil. */
|
|
434
|
280
|
435 static Lisp_Object
|
278
|
436 x_locate_pixmap_file (Lisp_Object name)
|
0
|
437 {
|
|
438 /* This function can GC if IN_REDISPLAY is false */
|
|
439 Display *display;
|
|
440
|
|
441 /* Check non-absolute pathnames with a directory component relative to
|
|
442 the search path; that's the way Xt does it. */
|
|
443 /* #### Unix-specific */
|
80
|
444 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
445 (XSTRING_BYTE (name, 0) == '.' &&
|
|
446 (XSTRING_BYTE (name, 1) == '/' ||
|
|
447 (XSTRING_BYTE (name, 1) == '.' &&
|
|
448 (XSTRING_BYTE (name, 2) == '/')))))
|
0
|
449 {
|
|
450 if (!NILP (Ffile_readable_p (name)))
|
|
451 return name;
|
|
452 else
|
|
453 return Qnil;
|
|
454 }
|
|
455
|
|
456 if (NILP (Vdefault_x_device))
|
|
457 /* This may occur during intialization. */
|
|
458 return Qnil;
|
|
459 else
|
|
460 /* We only check the bitmapFilePath resource on the original X device. */
|
|
461 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
|
|
462
|
|
463 #ifdef USE_XBMLANGPATH
|
|
464 {
|
|
465 char *path = egetenv ("XBMLANGPATH");
|
|
466 SubstitutionRec subs[1];
|
|
467 subs[0].match = 'B';
|
14
|
468 subs[0].substitution = (char *) XSTRING_DATA (name);
|
0
|
469 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
|
|
470 We don't. If you want it used, set it. */
|
|
471 if (path &&
|
|
472 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
|
|
473 subs, XtNumber (subs), 0)))
|
|
474 {
|
|
475 name = build_string (path);
|
|
476 XtFree (path);
|
|
477 return (name);
|
|
478 }
|
|
479 }
|
|
480 #endif
|
|
481
|
|
482 if (NILP (Vx_bitmap_file_path))
|
|
483 {
|
|
484 char *type = 0;
|
|
485 XrmValue value;
|
|
486 if (XrmGetResource (XtDatabase (display),
|
|
487 "bitmapFilePath", "BitmapFilePath", &type, &value)
|
|
488 && !strcmp (type, "String"))
|
|
489 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
|
|
490 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
|
265
|
491 (decode_path (BITMAPDIR)));
|
0
|
492 }
|
|
493
|
|
494 {
|
|
495 Lisp_Object found;
|
|
496 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
|
|
497 {
|
|
498 Lisp_Object temp = list1 (Vdata_directory);
|
|
499 struct gcpro gcpro1;
|
|
500
|
|
501 GCPRO1 (temp);
|
|
502 locate_file (temp, name, "", &found, R_OK);
|
|
503 UNGCPRO;
|
|
504 }
|
|
505
|
|
506 return found;
|
|
507 }
|
|
508 }
|
|
509
|
278
|
510 static Lisp_Object
|
|
511 locate_pixmap_file (Lisp_Object name)
|
|
512 {
|
|
513 return x_locate_pixmap_file (name);
|
|
514 }
|
|
515
|
|
516 #if 0
|
0
|
517 static void
|
|
518 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
|
|
519 {
|
251
|
520 Lisp_Object instream, outstream;
|
|
521 Lstream *istr, *ostr;
|
|
522 char tempbuf[1024]; /* some random amount */
|
|
523 int fubar = 0;
|
|
524 FILE *tmpfil;
|
265
|
525 static Extbyte_dynarr *conversion_out_dynarr;
|
251
|
526 Bytecount bstart, bend;
|
|
527 struct gcpro gcpro1, gcpro2;
|
259
|
528 #ifdef FILE_CODING
|
251
|
529 Lisp_Object conv_out_stream;
|
|
530 Lstream *costr;
|
|
531 struct gcpro gcpro3;
|
|
532 #endif
|
|
533
|
|
534 /* This function can GC */
|
|
535 if (!conversion_out_dynarr)
|
|
536 conversion_out_dynarr = Dynarr_new (Extbyte);
|
|
537 else
|
|
538 Dynarr_reset (conversion_out_dynarr);
|
|
539
|
|
540 /* Create the temporary file ... */
|
0
|
541 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
|
|
542 mktemp (filename_out);
|
251
|
543 tmpfil = fopen (filename_out, "w");
|
|
544 if (!tmpfil)
|
0
|
545 {
|
251
|
546 if (tmpfil)
|
0
|
547 {
|
|
548 int old_errno = errno;
|
251
|
549 fclose (tmpfil);
|
0
|
550 unlink (filename_out);
|
|
551 errno = old_errno;
|
|
552 }
|
|
553 report_file_error ("Creating temp file",
|
|
554 list1 (build_string (filename_out)));
|
|
555 }
|
|
556
|
251
|
557 CHECK_STRING (string);
|
|
558 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
|
|
559 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
560 instream = make_lisp_string_input_stream (string, bstart, bend);
|
|
561 istr = XLSTREAM (instream);
|
|
562 /* setup the out stream */
|
|
563 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
|
|
564 ostr = XLSTREAM (outstream);
|
259
|
565 #ifdef FILE_CODING
|
251
|
566 /* setup the conversion stream */
|
|
567 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
|
|
568 costr = XLSTREAM (conv_out_stream);
|
|
569 GCPRO3 (instream, outstream, conv_out_stream);
|
|
570 #else
|
|
571 GCPRO2 (instream, outstream);
|
|
572 #endif
|
|
573
|
|
574 /* Get the data while doing the conversion */
|
269
|
575 while (1)
|
|
576 {
|
|
577 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
|
|
578 if (!size_in_bytes)
|
|
579 break;
|
|
580 /* It does seem the flushes are necessary... */
|
259
|
581 #ifdef FILE_CODING
|
269
|
582 Lstream_write (costr, tempbuf, size_in_bytes);
|
|
583 Lstream_flush (costr);
|
251
|
584 #else
|
269
|
585 Lstream_write (ostr, tempbuf, size_in_bytes);
|
251
|
586 #endif
|
269
|
587 Lstream_flush (ostr);
|
|
588 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
|
|
589 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
|
|
590 {
|
|
591 fubar = 1;
|
|
592 break;
|
|
593 }
|
|
594 /* reset the dynarr */
|
|
595 Lstream_rewind(ostr);
|
|
596 }
|
251
|
597
|
|
598 if (fclose (tmpfil) != 0)
|
|
599 fubar = 1;
|
|
600 Lstream_close (istr);
|
259
|
601 #ifdef FILE_CODING
|
251
|
602 Lstream_close (costr);
|
|
603 #endif
|
|
604 Lstream_close (ostr);
|
272
|
605
|
251
|
606 UNGCPRO;
|
|
607 Lstream_delete (istr);
|
|
608 Lstream_delete (ostr);
|
259
|
609 #ifdef FILE_CODING
|
251
|
610 Lstream_delete (costr);
|
|
611 #endif
|
259
|
612
|
251
|
613 if (fubar)
|
|
614 report_file_error ("Writing temp file",
|
|
615 list1 (build_string (filename_out)));
|
0
|
616 }
|
272
|
617 #endif /* 0 */
|
0
|
618
|
|
619
|
|
620 /************************************************************************/
|
|
621 /* cursor functions */
|
|
622 /************************************************************************/
|
|
623
|
|
624 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
|
|
625 not, signal an error. INSTANTIATOR is only used in the error
|
|
626 message. */
|
|
627
|
|
628 static void
|
|
629 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
|
|
630 Lisp_Object instantiator)
|
|
631 {
|
|
632 unsigned int best_width, best_height;
|
|
633 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
|
|
634 width, height, &best_width, &best_height))
|
|
635 /* this means that an X error of some sort occurred (we trap
|
|
636 these so they're not fatal). */
|
|
637 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
|
|
638
|
|
639 if (width > best_width || height > best_height)
|
|
640 error_with_frob (instantiator,
|
|
641 "pointer too large (%dx%d): "
|
|
642 "server requires %dx%d or smaller",
|
|
643 width, height, best_width, best_height);
|
|
644 }
|
|
645
|
|
646
|
|
647 static void
|
|
648 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
|
|
649 Lisp_Object *background, XColor *xfg, XColor *xbg)
|
|
650 {
|
|
651 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
|
|
652 *foreground =
|
|
653 Fmake_color_instance (*foreground, device,
|
|
654 encode_error_behavior_flag (ERROR_ME));
|
|
655 if (COLOR_INSTANCEP (*foreground))
|
|
656 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
|
|
657 else
|
|
658 {
|
|
659 xfg->pixel = 0;
|
|
660 xfg->red = xfg->green = xfg->blue = 0;
|
|
661 }
|
185
|
662
|
0
|
663 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
|
|
664 *background =
|
|
665 Fmake_color_instance (*background, device,
|
|
666 encode_error_behavior_flag (ERROR_ME));
|
|
667 if (COLOR_INSTANCEP (*background))
|
|
668 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
|
|
669 else
|
|
670 {
|
|
671 xbg->pixel = 0;
|
|
672 xbg->red = xbg->green = xbg->blue = ~0;
|
|
673 }
|
|
674 }
|
|
675
|
|
676 static void
|
|
677 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
|
|
678 Lisp_Object background)
|
|
679 {
|
|
680 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
681 XColor xfg, xbg;
|
|
682
|
|
683 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
|
|
684 if (!NILP (foreground) || !NILP (background))
|
|
685 {
|
|
686 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
|
|
687 XIMAGE_INSTANCE_X_CURSOR (image_instance),
|
|
688 &xfg, &xbg);
|
|
689 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
690 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
691 }
|
|
692 }
|
|
693
|
|
694
|
|
695 /************************************************************************/
|
|
696 /* color pixmap functions */
|
|
697 /************************************************************************/
|
|
698
|
|
699 /* Initialize an image instance from an XImage.
|
|
700
|
|
701 DEST_MASK specifies the mask of allowed image types.
|
|
702
|
|
703 PIXELS and NPIXELS specify an array of pixels that are used in
|
|
704 the image. These need to be kept around for the duration of the
|
|
705 image. When the image instance is freed, XFreeColors() will
|
|
706 automatically be called on all the pixels specified here; thus,
|
|
707 you should have allocated the pixels yourself using XAllocColor()
|
|
708 or the like. The array passed in is used directly without
|
|
709 being copied, so it should be heap data created with xmalloc().
|
|
710 It will be freed using xfree() when the image instance is
|
|
711 destroyed.
|
|
712
|
|
713 If this fails, signal an error. INSTANTIATOR is only used
|
|
714 in the error message.
|
|
715
|
|
716 #### This should be able to handle conversion into `pointer'.
|
|
717 Use the same code as for `xpm'. */
|
|
718
|
|
719 static void
|
|
720 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
|
|
721 XImage *ximage,
|
|
722 int dest_mask,
|
269
|
723 Colormap cmap,
|
0
|
724 unsigned long *pixels,
|
|
725 int npixels,
|
|
726 Lisp_Object instantiator)
|
|
727 {
|
|
728 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
729 Display *dpy;
|
|
730 GC gc;
|
|
731 Drawable d;
|
|
732 Pixmap pixmap;
|
|
733
|
|
734 if (!DEVICE_X_P (XDEVICE (device)))
|
|
735 signal_simple_error ("Not an X device", device);
|
|
736
|
|
737 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
738 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
739
|
|
740 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
741 incompatible_image_types (instantiator, dest_mask,
|
|
742 IMAGE_COLOR_PIXMAP_MASK);
|
185
|
743
|
0
|
744 pixmap = XCreatePixmap (dpy, d, ximage->width,
|
|
745 ximage->height, ximage->depth);
|
|
746 if (!pixmap)
|
|
747 signal_simple_error ("Unable to create pixmap", instantiator);
|
|
748
|
|
749 gc = XCreateGC (dpy, pixmap, 0, NULL);
|
|
750 if (!gc)
|
|
751 {
|
|
752 XFreePixmap (dpy, pixmap);
|
|
753 signal_simple_error ("Unable to create GC", instantiator);
|
|
754 }
|
185
|
755
|
0
|
756 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
|
|
757 ximage->width, ximage->height);
|
185
|
758
|
0
|
759 XFreeGC (dpy, gc);
|
|
760
|
|
761 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
|
|
762
|
|
763 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
764 find_keyword_in_vector (instantiator, Q_file);
|
185
|
765
|
0
|
766 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
767 IMAGE_INSTANCE_X_MASK (ii) = 0;
|
|
768 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
|
|
769 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
|
|
770 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
|
269
|
771 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
772 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
773 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
774 }
|
|
775
|
278
|
776 static void
|
|
777 x_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
|
|
778 int width, int height,
|
|
779 unsigned char *eimage,
|
|
780 int dest_mask,
|
|
781 Lisp_Object instantiator,
|
|
782 Lisp_Object domain)
|
|
783 {
|
|
784 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
785 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
280
|
786 unsigned long *pixtbl = NULL;
|
|
787 int npixels = 0;
|
278
|
788 XImage* ximage;
|
|
789
|
|
790 ximage = convert_EImage_to_XImage (device, width, height, eimage,
|
280
|
791 &pixtbl, &npixels);
|
278
|
792 if (!ximage)
|
280
|
793 {
|
|
794 if (pixtbl) xfree (pixtbl);
|
|
795 signal_image_error("EImage to XImage conversion failed", instantiator);
|
|
796 }
|
|
797
|
278
|
798 /* Now create the pixmap and set up the image instance */
|
|
799 init_image_instance_from_x_image (ii, ximage, dest_mask,
|
|
800 cmap, pixtbl, npixels,
|
|
801 instantiator);
|
|
802
|
|
803 if (ximage)
|
|
804 {
|
|
805 if (ximage->data)
|
|
806 {
|
|
807 xfree (ximage->data);
|
|
808 ximage->data = 0;
|
|
809 }
|
|
810 XDestroyImage (ximage);
|
|
811 }
|
|
812 }
|
|
813
|
288
|
814 int read_bitmap_data_from_file (CONST char *filename, unsigned int *width,
|
|
815 unsigned int *height, unsigned char **datap,
|
|
816 int *x_hot, int *y_hot)
|
0
|
817 {
|
288
|
818 return XmuReadBitmapDataFromFile (filename, width, height,
|
|
819 datap, x_hot, y_hot);
|
0
|
820 }
|
|
821
|
|
822 /* Given inline data for a mono pixmap, create and return the
|
|
823 corresponding X object. */
|
|
824
|
|
825 static Pixmap
|
|
826 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
|
|
827 /* Note that data is in ext-format! */
|
|
828 CONST Extbyte *bits)
|
|
829 {
|
219
|
830 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
|
|
831 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
|
0
|
832 (char *) bits, width, height,
|
|
833 1, 0, 1);
|
|
834 }
|
|
835
|
|
836 /* Given inline data for a mono pixmap, initialize the given
|
|
837 image instance accordingly. */
|
|
838
|
|
839 static void
|
|
840 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
|
|
841 int width, int height,
|
|
842 /* Note that data is in ext-format! */
|
|
843 CONST char *bits,
|
|
844 Lisp_Object instantiator,
|
|
845 Lisp_Object pointer_fg,
|
|
846 Lisp_Object pointer_bg,
|
|
847 int dest_mask,
|
|
848 Pixmap mask,
|
|
849 Lisp_Object mask_filename)
|
|
850 {
|
|
851 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
852 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
853 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
|
|
854 Display *dpy;
|
|
855 Screen *scr;
|
219
|
856 Drawable draw;
|
0
|
857 enum image_instance_type type;
|
|
858
|
|
859 if (!DEVICE_X_P (XDEVICE (device)))
|
|
860 signal_simple_error ("Not an X device", device);
|
|
861
|
|
862 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
219
|
863 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
|
0
|
864 scr = DefaultScreenOfDisplay (dpy);
|
|
865
|
|
866 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
|
|
867 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
868 {
|
|
869 if (!NILP (foreground) || !NILP (background))
|
|
870 type = IMAGE_COLOR_PIXMAP;
|
|
871 else
|
|
872 type = IMAGE_MONO_PIXMAP;
|
|
873 }
|
|
874 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
875 type = IMAGE_MONO_PIXMAP;
|
|
876 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
877 type = IMAGE_COLOR_PIXMAP;
|
|
878 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
879 type = IMAGE_POINTER;
|
|
880 else
|
|
881 incompatible_image_types (instantiator, dest_mask,
|
|
882 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
883 | IMAGE_POINTER_MASK);
|
|
884
|
|
885 x_initialize_pixmap_image_instance (ii, type);
|
|
886 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
887 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
888 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
889 find_keyword_in_vector (instantiator, Q_file);
|
|
890
|
|
891 switch (type)
|
|
892 {
|
|
893 case IMAGE_MONO_PIXMAP:
|
|
894 {
|
|
895 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
|
896 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
|
|
897 }
|
|
898 break;
|
|
899
|
|
900 case IMAGE_COLOR_PIXMAP:
|
|
901 {
|
219
|
902 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
|
0
|
903 unsigned long fg = BlackPixelOfScreen (scr);
|
|
904 unsigned long bg = WhitePixelOfScreen (scr);
|
|
905
|
|
906 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
|
|
907 foreground =
|
|
908 Fmake_color_instance (foreground, device,
|
|
909 encode_error_behavior_flag (ERROR_ME));
|
|
910
|
|
911 if (COLOR_INSTANCEP (foreground))
|
|
912 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
|
|
913
|
|
914 if (!NILP (background) && !COLOR_INSTANCEP (background))
|
|
915 background =
|
|
916 Fmake_color_instance (background, device,
|
|
917 encode_error_behavior_flag (ERROR_ME));
|
|
918
|
|
919 if (COLOR_INSTANCEP (background))
|
|
920 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
|
|
921
|
|
922 /* We used to duplicate the pixels using XAllocColor(), to protect
|
|
923 against their getting freed. Just as easy to just store the
|
|
924 color instances here and GC-protect them, so this doesn't
|
|
925 happen. */
|
|
926 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
927 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
928 IMAGE_INSTANCE_X_PIXMAP (ii) =
|
219
|
929 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
930 (char *) bits, width, height,
|
|
931 fg, bg, d);
|
|
932 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
933 }
|
|
934 break;
|
|
935
|
|
936 case IMAGE_POINTER:
|
207
|
937 {
|
0
|
938 XColor fg_color, bg_color;
|
|
939 Pixmap source;
|
|
940
|
|
941 check_pointer_sizes (scr, width, height, instantiator);
|
|
942
|
|
943 source =
|
219
|
944 XCreatePixmapFromBitmapData (dpy, draw,
|
0
|
945 (char *) bits, width, height,
|
|
946 1, 0, 1);
|
|
947
|
|
948 if (NILP (foreground))
|
|
949 foreground = pointer_fg;
|
|
950 if (NILP (background))
|
|
951 background = pointer_bg;
|
|
952 generate_cursor_fg_bg (device, &foreground, &background,
|
|
953 &fg_color, &bg_color);
|
|
954
|
|
955 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
956 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
957 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
|
|
958 find_keyword_in_vector (instantiator, Q_hotspot_x);
|
|
959 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
|
|
960 find_keyword_in_vector (instantiator, Q_hotspot_y);
|
|
961 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
962 XCreatePixmapCursor
|
|
963 (dpy, source, mask, &fg_color, &bg_color,
|
|
964 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
|
|
965 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
|
|
966 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
|
|
967 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
|
|
968 }
|
|
969 break;
|
|
970
|
|
971 default:
|
|
972 abort ();
|
|
973 }
|
|
974 }
|
|
975
|
|
976 static void
|
|
977 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
978 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
979 int dest_mask, int width, int height,
|
|
980 /* Note that data is in ext-format! */
|
|
981 CONST char *bits)
|
|
982 {
|
|
983 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
|
|
984 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
|
|
985 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
986 Pixmap mask = 0;
|
|
987 CONST char *gcc_may_you_rot_in_hell;
|
|
988
|
|
989 if (!NILP (mask_data))
|
269
|
990 {
|
0
|
991 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
|
|
992 gcc_may_you_rot_in_hell);
|
|
993 mask =
|
|
994 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
|
|
995 XINT (XCAR (mask_data)),
|
|
996 XINT (XCAR (XCDR (mask_data))),
|
|
997 (CONST unsigned char *)
|
|
998 gcc_may_you_rot_in_hell);
|
288
|
999 }
|
0
|
1000
|
|
1001 init_image_instance_from_xbm_inline (ii, width, height, bits,
|
|
1002 instantiator, pointer_fg, pointer_bg,
|
|
1003 dest_mask, mask, mask_file);
|
|
1004 }
|
|
1005
|
|
1006 /* Instantiate method for XBM's. */
|
|
1007
|
|
1008 static void
|
288
|
1009 x_xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1010 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1011 int dest_mask, Lisp_Object domain)
|
0
|
1012 {
|
|
1013 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1014 CONST char *gcc_go_home;
|
|
1015
|
|
1016 assert (!NILP (data));
|
|
1017
|
|
1018 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
|
|
1019 gcc_go_home);
|
|
1020
|
|
1021 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1022 pointer_bg, dest_mask, XINT (XCAR (data)),
|
|
1023 XINT (XCAR (XCDR (data))), gcc_go_home);
|
|
1024 }
|
|
1025
|
|
1026
|
|
1027 #ifdef HAVE_XPM
|
|
1028
|
|
1029 /**********************************************************************
|
|
1030 * XPM *
|
|
1031 **********************************************************************/
|
|
1032 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
|
|
1033 There was no version number in xpm.h before 3.3, but this should do.
|
|
1034 */
|
|
1035 #if (XpmVersion >= 3) || defined(XpmExactColors)
|
|
1036 # define XPM_DOES_BUFFERS
|
|
1037 #endif
|
|
1038
|
|
1039 #ifndef XPM_DOES_BUFFERS
|
|
1040 Your version of XPM is too old. You cannot compile with it.
|
|
1041 Upgrade to version 3.2g or better or compile with --with-xpm=no.
|
|
1042 #endif /* !XPM_DOES_BUFFERS */
|
|
1043
|
|
1044 static XpmColorSymbol *
|
|
1045 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
|
124
|
1046 Lisp_Object domain,
|
0
|
1047 Lisp_Object color_symbol_alist)
|
|
1048 {
|
|
1049 /* This function can GC */
|
219
|
1050 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
|
|
1051 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
0
|
1052 XColor color;
|
|
1053 Lisp_Object rest;
|
|
1054 Lisp_Object results = Qnil;
|
|
1055 int i;
|
|
1056 XpmColorSymbol *symbols;
|
|
1057 struct gcpro gcpro1, gcpro2;
|
|
1058
|
|
1059 GCPRO2 (results, device);
|
|
1060
|
|
1061 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
1062 error happens we don't lose any malloc()ed data, or more importantly,
|
|
1063 leave any pixels allocated in the server. */
|
|
1064 i = 0;
|
|
1065 LIST_LOOP (rest, color_symbol_alist)
|
|
1066 {
|
|
1067 Lisp_Object cons = XCAR (rest);
|
|
1068 Lisp_Object name = XCAR (cons);
|
|
1069 Lisp_Object value = XCDR (cons);
|
|
1070 if (NILP (value))
|
|
1071 continue;
|
|
1072 if (STRINGP (value))
|
|
1073 value =
|
|
1074 Fmake_color_instance
|
|
1075 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
1076 else
|
|
1077 {
|
|
1078 assert (COLOR_SPECIFIERP (value));
|
124
|
1079 value = Fspecifier_instance (value, domain, Qnil, Qnil);
|
0
|
1080 }
|
|
1081 if (NILP (value))
|
|
1082 continue;
|
|
1083 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
1084 i++;
|
|
1085 }
|
|
1086 UNGCPRO; /* no more evaluation */
|
|
1087
|
|
1088 if (i == 0) return 0;
|
|
1089
|
185
|
1090 symbols = xnew_array (XpmColorSymbol, i);
|
0
|
1091 xpmattrs->valuemask |= XpmColorSymbols;
|
|
1092 xpmattrs->colorsymbols = symbols;
|
|
1093 xpmattrs->numsymbols = i;
|
|
1094
|
|
1095 while (--i >= 0)
|
|
1096 {
|
|
1097 Lisp_Object cons = XCAR (results);
|
|
1098 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
1099 /* Duplicate the pixel value so that we still have a lock on it if
|
|
1100 the pixel we were passed is later freed. */
|
|
1101 if (! XAllocColor (dpy, cmap, &color))
|
|
1102 abort (); /* it must be allocable since we're just duplicating it */
|
|
1103
|
14
|
1104 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
|
0
|
1105 symbols [i].pixel = color.pixel;
|
|
1106 symbols [i].value = 0;
|
|
1107 free_cons (XCONS (cons));
|
|
1108 cons = results;
|
|
1109 results = XCDR (results);
|
|
1110 free_cons (XCONS (cons));
|
|
1111 }
|
|
1112 return symbols;
|
|
1113 }
|
|
1114
|
|
1115 static void
|
|
1116 xpm_free (XpmAttributes *xpmattrs)
|
|
1117 {
|
|
1118 /* Could conceivably lose if XpmXXX returned an error without first
|
|
1119 initializing this structure, if we didn't know that initializing it
|
|
1120 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
|
|
1121 multiple times, since it zeros slots as it frees them...) */
|
|
1122 XpmFreeAttributes (xpmattrs);
|
|
1123 }
|
|
1124
|
280
|
1125 static void
|
276
|
1126 x_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1127 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1128 int dest_mask, Lisp_Object domain)
|
0
|
1129 {
|
|
1130 /* This function can GC */
|
|
1131 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
276
|
1132 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
0
|
1133 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1134 Display *dpy;
|
|
1135 Screen *xs;
|
219
|
1136 Colormap cmap;
|
|
1137 int depth;
|
280
|
1138 Visual *visual;
|
0
|
1139 Pixmap pixmap;
|
|
1140 Pixmap mask = 0;
|
|
1141 XpmAttributes xpmattrs;
|
|
1142 int result;
|
|
1143 XpmColorSymbol *color_symbols;
|
|
1144 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
1145 Q_color_symbols);
|
|
1146 enum image_instance_type type;
|
|
1147 int force_mono;
|
|
1148 unsigned int w, h;
|
|
1149
|
|
1150 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1151 signal_simple_error ("Not an X device", device);
|
|
1152
|
|
1153 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1154 xs = DefaultScreenOfDisplay (dpy);
|
|
1155
|
|
1156 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1157 type = IMAGE_COLOR_PIXMAP;
|
|
1158 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1159 type = IMAGE_MONO_PIXMAP;
|
|
1160 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1161 type = IMAGE_POINTER;
|
|
1162 else
|
|
1163 incompatible_image_types (instantiator, dest_mask,
|
|
1164 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1165 | IMAGE_POINTER_MASK);
|
|
1166 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
1167
|
269
|
1168 #if 1
|
251
|
1169 /* Although I haven't found it documented yet, it appears that pointers are
|
280
|
1170 always colored via the default window colormap... Sigh. */
|
251
|
1171 if (type == IMAGE_POINTER)
|
|
1172 {
|
|
1173 cmap = DefaultColormap(dpy, DefaultScreen(dpy));
|
|
1174 depth = DefaultDepthOfScreen (xs);
|
280
|
1175 visual = DefaultVisualOfScreen (xs);
|
251
|
1176 }
|
|
1177 else
|
|
1178 {
|
|
1179 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1180 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
280
|
1181 visual = DEVICE_X_VISUAL (XDEVICE(device));
|
251
|
1182 }
|
|
1183 #else
|
|
1184 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
|
|
1185 depth = DEVICE_X_DEPTH (XDEVICE(device));
|
280
|
1186 visual = DEVICE_X_VISUAL (XDEVICE(device));
|
251
|
1187 #endif
|
|
1188
|
0
|
1189 x_initialize_pixmap_image_instance (ii, type);
|
|
1190
|
|
1191 assert (!NILP (data));
|
|
1192
|
|
1193 retry:
|
|
1194
|
272
|
1195 xzero (xpmattrs); /* want XpmInitAttributes() */
|
0
|
1196 xpmattrs.valuemask = XpmReturnPixels;
|
|
1197 if (force_mono)
|
|
1198 {
|
|
1199 /* Without this, we get a 1-bit version of the color image, which
|
|
1200 isn't quite right. With this, we get the mono image, which might
|
|
1201 be very different looking. */
|
|
1202 xpmattrs.valuemask |= XpmColorKey;
|
|
1203 xpmattrs.color_key = XPM_MONO;
|
|
1204 xpmattrs.depth = 1;
|
|
1205 xpmattrs.valuemask |= XpmDepth;
|
|
1206 }
|
|
1207 else
|
|
1208 {
|
|
1209 xpmattrs.closeness = 65535;
|
|
1210 xpmattrs.valuemask |= XpmCloseness;
|
219
|
1211 xpmattrs.depth = depth;
|
|
1212 xpmattrs.valuemask |= XpmDepth;
|
280
|
1213 xpmattrs.visual = visual;
|
219
|
1214 xpmattrs.valuemask |= XpmVisual;
|
|
1215 xpmattrs.colormap = cmap;
|
|
1216 xpmattrs.valuemask |= XpmColormap;
|
0
|
1217 }
|
185
|
1218
|
124
|
1219 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
|
0
|
1220 color_symbol_alist);
|
|
1221
|
|
1222 result = XpmCreatePixmapFromBuffer (dpy,
|
219
|
1223 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
|
14
|
1224 (char *) XSTRING_DATA (data),
|
0
|
1225 &pixmap, &mask, &xpmattrs);
|
|
1226
|
|
1227 if (color_symbols)
|
|
1228 {
|
|
1229 xfree (color_symbols);
|
|
1230 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
|
|
1231 xpmattrs.numsymbols = 0;
|
|
1232 }
|
|
1233
|
|
1234 switch (result)
|
|
1235 {
|
|
1236 case XpmSuccess:
|
|
1237 break;
|
|
1238 case XpmFileInvalid:
|
|
1239 {
|
|
1240 xpm_free (&xpmattrs);
|
269
|
1241 signal_image_error ("invalid XPM data", data);
|
0
|
1242 }
|
|
1243 case XpmColorFailed:
|
|
1244 case XpmColorError:
|
|
1245 {
|
|
1246 xpm_free (&xpmattrs);
|
|
1247 if (force_mono)
|
|
1248 {
|
|
1249 /* second time; blow out. */
|
|
1250 signal_double_file_error ("Reading pixmap data",
|
|
1251 "color allocation failed",
|
|
1252 data);
|
|
1253 }
|
|
1254 else
|
|
1255 {
|
|
1256 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
|
|
1257 {
|
|
1258 /* second time; blow out. */
|
|
1259 signal_double_file_error ("Reading pixmap data",
|
|
1260 "color allocation failed",
|
|
1261 data);
|
|
1262 }
|
|
1263 force_mono = 1;
|
|
1264 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
|
|
1265 goto retry;
|
|
1266 }
|
|
1267 }
|
|
1268 case XpmNoMemory:
|
|
1269 {
|
|
1270 xpm_free (&xpmattrs);
|
|
1271 signal_double_file_error ("Parsing pixmap data",
|
|
1272 "out of memory", data);
|
|
1273 }
|
|
1274 default:
|
|
1275 {
|
|
1276 xpm_free (&xpmattrs);
|
|
1277 signal_double_file_error_2 ("Parsing pixmap data",
|
|
1278 "unknown error code",
|
|
1279 make_int (result), data);
|
|
1280 }
|
|
1281 }
|
|
1282
|
|
1283 w = xpmattrs.width;
|
|
1284 h = xpmattrs.height;
|
|
1285
|
|
1286 {
|
|
1287 int npixels = xpmattrs.npixels;
|
185
|
1288 Pixel *pixels;
|
0
|
1289
|
|
1290 if (npixels != 0)
|
|
1291 {
|
185
|
1292 pixels = xnew_array (Pixel, npixels);
|
0
|
1293 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
|
|
1294 }
|
|
1295 else
|
185
|
1296 pixels = NULL;
|
0
|
1297
|
|
1298 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
|
|
1299 IMAGE_INSTANCE_X_MASK (ii) = mask;
|
269
|
1300 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
|
0
|
1301 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
|
|
1302 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
|
|
1303 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
1304 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
1305 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1306 find_keyword_in_vector (instantiator, Q_file);
|
|
1307 }
|
|
1308
|
|
1309 switch (type)
|
|
1310 {
|
|
1311 case IMAGE_MONO_PIXMAP:
|
|
1312 break;
|
|
1313
|
|
1314 case IMAGE_COLOR_PIXMAP:
|
|
1315 {
|
219
|
1316 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
0
|
1317 }
|
|
1318 break;
|
|
1319
|
|
1320 case IMAGE_POINTER:
|
|
1321 {
|
|
1322 int npixels = xpmattrs.npixels;
|
|
1323 Pixel *pixels = xpmattrs.pixels;
|
|
1324 XColor fg, bg;
|
|
1325 int i;
|
|
1326 int xhot = 0, yhot = 0;
|
|
1327
|
|
1328 if (xpmattrs.valuemask & XpmHotspot)
|
|
1329 {
|
|
1330 xhot = xpmattrs.x_hotspot;
|
|
1331 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
|
|
1332 }
|
|
1333 if (xpmattrs.valuemask & XpmHotspot)
|
|
1334 {
|
|
1335 yhot = xpmattrs.y_hotspot;
|
|
1336 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
|
|
1337 }
|
|
1338 check_pointer_sizes (xs, w, h, instantiator);
|
|
1339
|
|
1340 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
1341 XPM file), then use those as the default colors for the cursor we
|
|
1342 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
1343 */
|
|
1344 if (npixels >= 2)
|
|
1345 {
|
|
1346 /* With an XBM file, it's obvious which bit is foreground
|
|
1347 and which is background, or rather, it's implicit: in
|
|
1348 an XBM file, a 1 bit is foreground, and a 0 bit is
|
|
1349 background.
|
185
|
1350
|
0
|
1351 XCreatePixmapCursor() assumes this property of the
|
|
1352 pixmap it is called with as well; the `foreground'
|
|
1353 color argument is used for the 1 bits.
|
|
1354
|
|
1355 With an XPM file, it's tricker, since the elements of
|
|
1356 the pixmap don't represent FG and BG, but are actual
|
|
1357 pixel values. So we need to figure out which of those
|
|
1358 pixels is the foreground color and which is the
|
|
1359 background. We do it by comparing RGB and assuming
|
|
1360 that the darker color is the foreground. This works
|
|
1361 with the result of xbmtopbm|ppmtoxpm, at least.
|
185
|
1362
|
0
|
1363 It might be nice if there was some way to tag the
|
|
1364 colors in the XPM file with whether they are the
|
|
1365 foreground - perhaps with logical color names somehow?
|
185
|
1366
|
0
|
1367 Once we have decided which color is the foreground, we
|
|
1368 need to ensure that that color corresponds to a `1' bit
|
|
1369 in the Pixmap. The XPM library wrote into the (1-bit)
|
|
1370 pixmap with XPutPixel, which will ignore all but the
|
|
1371 least significant bit.
|
185
|
1372
|
0
|
1373 This means that a 1 bit in the image corresponds to
|
|
1374 `fg' only if `fg.pixel' is odd.
|
185
|
1375
|
0
|
1376 (This also means that the image will be all the same
|
|
1377 color if both `fg' and `bg' are odd or even, but we can
|
|
1378 safely assume that that won't happen if the XPM file is
|
|
1379 sensible I think.)
|
185
|
1380
|
0
|
1381 The desired result is that the image use `1' to
|
|
1382 represent the foreground color, and `0' to represent
|
|
1383 the background color. So, we may need to invert the
|
|
1384 image to accomplish this; we invert if fg is
|
|
1385 odd. (Remember that WhitePixel and BlackPixel are not
|
|
1386 necessarily 1 and 0 respectively, though I think it
|
|
1387 might be safe to assume that one of them is always 1
|
|
1388 and the other is always 0. We also pretty much need to
|
|
1389 assume that one is even and the other is odd.)
|
|
1390 */
|
|
1391
|
|
1392 fg.pixel = pixels[0]; /* pick a pixel at random. */
|
|
1393 bg.pixel = fg.pixel;
|
|
1394 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
|
|
1395 {
|
|
1396 bg.pixel = pixels[i];
|
|
1397 if (fg.pixel != bg.pixel)
|
|
1398 break;
|
|
1399 }
|
|
1400
|
|
1401 /* If (fg.pixel == bg.pixel) then probably something has
|
|
1402 gone wrong, but I don't think signalling an error would
|
|
1403 be appropriate. */
|
|
1404
|
219
|
1405 XQueryColor (dpy, cmap, &fg);
|
|
1406 XQueryColor (dpy, cmap, &bg);
|
0
|
1407
|
|
1408 /* If the foreground is lighter than the background, swap them.
|
|
1409 (This occurs semi-randomly, depending on the ordering of the
|
|
1410 color list in the XPM file.)
|
|
1411 */
|
|
1412 {
|
|
1413 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
|
|
1414 + (fg.blue / 3));
|
|
1415 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
|
|
1416 + (bg.blue / 3));
|
|
1417 if (fg_total > bg_total)
|
|
1418 {
|
|
1419 XColor swap;
|
|
1420 swap = fg;
|
|
1421 fg = bg;
|
|
1422 bg = swap;
|
|
1423 }
|
|
1424 }
|
185
|
1425
|
0
|
1426 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
|
|
1427 (This occurs (only?) on servers with Black=0, White=1.)
|
|
1428 */
|
|
1429 if ((fg.pixel & 1) == 0)
|
|
1430 {
|
|
1431 XGCValues gcv;
|
|
1432 GC gc;
|
|
1433 gcv.function = GXxor;
|
|
1434 gcv.foreground = 1;
|
|
1435 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
|
|
1436 &gcv);
|
|
1437 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
|
|
1438 XFreeGC (dpy, gc);
|
|
1439 }
|
|
1440 }
|
|
1441 else
|
|
1442 {
|
|
1443 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
1444 &fg, &bg);
|
|
1445 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
1446 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
1447 }
|
|
1448
|
|
1449 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1450 XCreatePixmapCursor
|
|
1451 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
|
|
1452 }
|
|
1453
|
|
1454 break;
|
|
1455
|
|
1456 default:
|
|
1457 abort ();
|
|
1458 }
|
185
|
1459
|
0
|
1460 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
|
|
1461 }
|
|
1462
|
|
1463 #endif /* HAVE_XPM */
|
|
1464
|
|
1465
|
|
1466 #ifdef HAVE_XFACE
|
|
1467
|
|
1468 /**********************************************************************
|
|
1469 * X-Face *
|
|
1470 **********************************************************************/
|
|
1471
|
|
1472 static void
|
|
1473 xface_validate (Lisp_Object instantiator)
|
|
1474 {
|
|
1475 file_or_data_must_be_present (instantiator);
|
|
1476 }
|
|
1477
|
|
1478 static Lisp_Object
|
|
1479 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1480 {
|
116
|
1481 /* This funcation can call lisp */
|
0
|
1482 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
1483 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1484 Lisp_Object alist = Qnil;
|
185
|
1485
|
0
|
1486 GCPRO3 (file, mask_file, alist);
|
|
1487
|
|
1488 /* Now, convert any file data into inline data for both the regular
|
|
1489 data and the mask data. At the end of this, `data' will contain
|
|
1490 the inline data (if any) or Qnil, and `file' will contain
|
|
1491 the name this data was derived from (if known) or Qnil.
|
|
1492 Likewise for `mask_file' and `mask_data'.
|
|
1493
|
|
1494 Note that if we cannot generate any regular inline data, we
|
|
1495 skip out. */
|
|
1496
|
278
|
1497 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1498 console_type);
|
0
|
1499 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
278
|
1500 Q_mask_data, console_type);
|
0
|
1501
|
|
1502 if (CONSP (file)) /* failure locating filename */
|
|
1503 signal_double_file_error ("Opening bitmap file",
|
|
1504 "no such file or directory",
|
|
1505 Fcar (file));
|
|
1506
|
|
1507 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
1508 RETURN_UNGCPRO (inst);
|
|
1509
|
|
1510 alist = tagged_vector_to_alist (inst);
|
|
1511
|
|
1512 {
|
|
1513 Lisp_Object data = make_string_from_file (file);
|
|
1514 alist = remassq_no_quit (Q_file, alist);
|
|
1515 /* there can't be a :data at this point. */
|
|
1516 alist = Fcons (Fcons (Q_file, file),
|
|
1517 Fcons (Fcons (Q_data, data), alist));
|
|
1518 }
|
|
1519
|
288
|
1520 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
0
|
1521
|
|
1522 {
|
|
1523 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
1524 free_alist (alist);
|
|
1525 RETURN_UNGCPRO (result);
|
|
1526 }
|
|
1527 }
|
|
1528
|
|
1529 static int
|
74
|
1530 xface_possible_dest_types (void)
|
0
|
1531 {
|
74
|
1532 return
|
|
1533 IMAGE_MONO_PIXMAP_MASK |
|
|
1534 IMAGE_COLOR_PIXMAP_MASK |
|
0
|
1535 IMAGE_POINTER_MASK;
|
|
1536 }
|
|
1537
|
|
1538 #if defined(EXTERN)
|
|
1539 /* This is about to get redefined! */
|
|
1540 #undef EXTERN
|
|
1541 #endif
|
|
1542 /* We have to define SYSV32 so that compface.h includes string.h
|
|
1543 instead of strings.h. */
|
|
1544 #define SYSV32
|
185
|
1545 #ifdef __cplusplus
|
|
1546 extern "C" {
|
|
1547 #endif
|
0
|
1548 #include <compface.h>
|
185
|
1549 #ifdef __cplusplus
|
|
1550 }
|
|
1551 #endif
|
0
|
1552 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
1553 to jmp_buf we end up with a conflicting type error with the
|
|
1554 definition in compface.h */
|
|
1555 extern jmp_buf comp_env;
|
|
1556 #undef SYSV32
|
|
1557
|
|
1558 static void
|
|
1559 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1560 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1561 int dest_mask, Lisp_Object domain)
|
0
|
1562 {
|
|
1563 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1564 int i, stattis;
|
|
1565 char *p, *bits, *bp;
|
16
|
1566 CONST char * volatile emsg = 0;
|
|
1567 CONST char * volatile dstring;
|
0
|
1568
|
|
1569 assert (!NILP (data));
|
|
1570
|
|
1571 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
|
|
1572
|
|
1573 if ((p = strchr (dstring, ':')))
|
|
1574 {
|
|
1575 dstring = p + 1;
|
|
1576 }
|
|
1577
|
|
1578 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
1579 if (!(stattis = setjmp (comp_env)))
|
|
1580 {
|
|
1581 UnCompAll ((char *) dstring);
|
|
1582 UnGenFace ();
|
|
1583 }
|
|
1584
|
|
1585 switch (stattis)
|
|
1586 {
|
|
1587 case -2:
|
|
1588 emsg = "uncompface: internal error";
|
|
1589 break;
|
|
1590 case -1:
|
|
1591 emsg = "uncompface: insufficient or invalid data";
|
|
1592 break;
|
|
1593 case 1:
|
|
1594 emsg = "uncompface: excess data ignored";
|
|
1595 break;
|
|
1596 }
|
|
1597
|
|
1598 if (emsg)
|
|
1599 signal_simple_error_2 (emsg, data, Qimage);
|
|
1600
|
|
1601 bp = bits = (char *) alloca (PIXELS / 8);
|
|
1602
|
|
1603 /* the compface library exports char F[], which uses a single byte per
|
|
1604 pixel to represent a 48x48 bitmap. Yuck. */
|
|
1605 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
1606 {
|
|
1607 int n, b;
|
|
1608 /* reverse the bit order of each byte... */
|
|
1609 for (b = n = 0; b < 8; ++b)
|
|
1610 {
|
|
1611 n |= ((*p++) << b);
|
|
1612 }
|
|
1613 *bp++ = (char) n;
|
|
1614 }
|
|
1615
|
|
1616 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1617 pointer_bg, dest_mask, 48, 48, bits);
|
|
1618 }
|
|
1619
|
|
1620 #endif /* HAVE_XFACE */
|
|
1621
|
|
1622
|
|
1623 /**********************************************************************
|
122
|
1624 * Autodetect *
|
0
|
1625 **********************************************************************/
|
|
1626
|
|
1627 static void
|
122
|
1628 autodetect_validate (Lisp_Object instantiator)
|
0
|
1629 {
|
|
1630 data_must_be_present (instantiator);
|
|
1631 }
|
|
1632
|
|
1633 static Lisp_Object
|
122
|
1634 autodetect_normalize (Lisp_Object instantiator,
|
120
|
1635 Lisp_Object console_type)
|
0
|
1636 {
|
|
1637 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
1638 Lisp_Object filename = Qnil;
|
|
1639 Lisp_Object data = Qnil;
|
|
1640 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1641 Lisp_Object alist = Qnil;
|
|
1642
|
|
1643 GCPRO3 (filename, data, alist);
|
|
1644
|
|
1645 if (NILP (file)) /* no conversion necessary */
|
|
1646 RETURN_UNGCPRO (instantiator);
|
|
1647
|
|
1648 alist = tagged_vector_to_alist (instantiator);
|
|
1649
|
|
1650 filename = locate_pixmap_file (file);
|
|
1651 if (!NILP (filename))
|
|
1652 {
|
|
1653 int xhot, yhot;
|
|
1654 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
1655 called by pixmap_to_lisp_data, don't return an error value
|
|
1656 if the given file is not a valid XPM file. Instead, they
|
|
1657 just seg fault. It is definitely caused by passing a
|
|
1658 bitmap. To try and avoid this we check for bitmaps first. */
|
185
|
1659
|
0
|
1660 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
1661
|
|
1662 if (!EQ (data, Qt))
|
|
1663 {
|
|
1664 alist = remassq_no_quit (Q_data, alist);
|
|
1665 alist = Fcons (Fcons (Q_file, filename),
|
|
1666 Fcons (Fcons (Q_data, data), alist));
|
|
1667 if (xhot != -1)
|
|
1668 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
1669 alist);
|
|
1670 if (yhot != -1)
|
|
1671 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
1672 alist);
|
|
1673
|
288
|
1674 alist = xbm_mask_file_munging (alist, filename, Qnil, console_type);
|
0
|
1675
|
|
1676 {
|
|
1677 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
1678 free_alist (alist);
|
|
1679 RETURN_UNGCPRO (result);
|
|
1680 }
|
|
1681 }
|
|
1682
|
|
1683 #ifdef HAVE_XPM
|
|
1684 data = pixmap_to_lisp_data (filename, 1);
|
|
1685
|
|
1686 if (!EQ (data, Qt))
|
|
1687 {
|
|
1688 alist = remassq_no_quit (Q_data, alist);
|
|
1689 alist = Fcons (Fcons (Q_file, filename),
|
|
1690 Fcons (Fcons (Q_data, data), alist));
|
|
1691 alist = Fcons (Fcons (Q_color_symbols,
|
|
1692 evaluate_xpm_color_symbols ()),
|
|
1693 alist);
|
|
1694 {
|
|
1695 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1696 free_alist (alist);
|
|
1697 RETURN_UNGCPRO (result);
|
|
1698 }
|
|
1699 }
|
|
1700 #endif
|
|
1701 }
|
|
1702
|
|
1703 /* If we couldn't convert it, just put it back as it is.
|
|
1704 We might try to further frob it later as a cursor-font
|
|
1705 specification. (We can't do that now because we don't know
|
|
1706 what dest-types it's going to be instantiated into.) */
|
|
1707 {
|
122
|
1708 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
0
|
1709 free_alist (alist);
|
|
1710 RETURN_UNGCPRO (result);
|
|
1711 }
|
|
1712 }
|
|
1713
|
|
1714 static int
|
122
|
1715 autodetect_possible_dest_types (void)
|
0
|
1716 {
|
74
|
1717 return
|
|
1718 IMAGE_MONO_PIXMAP_MASK |
|
|
1719 IMAGE_COLOR_PIXMAP_MASK |
|
|
1720 IMAGE_POINTER_MASK |
|
|
1721 IMAGE_TEXT_MASK;
|
0
|
1722 }
|
|
1723
|
|
1724 static void
|
122
|
1725 autodetect_instantiate (Lisp_Object image_instance,
|
120
|
1726 Lisp_Object instantiator,
|
|
1727 Lisp_Object pointer_fg,
|
|
1728 Lisp_Object pointer_bg,
|
124
|
1729 int dest_mask, Lisp_Object domain)
|
0
|
1730 {
|
|
1731 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1732 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1733 Lisp_Object alist = Qnil;
|
|
1734 Lisp_Object result = Qnil;
|
|
1735 int is_cursor_font = 0;
|
|
1736
|
|
1737 GCPRO3 (data, alist, result);
|
|
1738
|
|
1739 alist = tagged_vector_to_alist (instantiator);
|
|
1740 if (dest_mask & IMAGE_POINTER_MASK)
|
|
1741 {
|
|
1742 CONST char *name_ext;
|
|
1743 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
1744 if (XmuCursorNameToIndex (name_ext) != -1)
|
|
1745 {
|
|
1746 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
1747 is_cursor_font = 1;
|
|
1748 }
|
|
1749 }
|
|
1750
|
|
1751 if (!is_cursor_font)
|
|
1752 result = alist_to_tagged_vector (Qstring, alist);
|
|
1753 free_alist (alist);
|
|
1754
|
|
1755 if (is_cursor_font)
|
|
1756 cursor_font_instantiate (image_instance, result, pointer_fg,
|
124
|
1757 pointer_bg, dest_mask, domain);
|
0
|
1758 else
|
|
1759 string_instantiate (image_instance, result, pointer_fg,
|
124
|
1760 pointer_bg, dest_mask, domain);
|
0
|
1761
|
|
1762 UNGCPRO;
|
|
1763 }
|
|
1764
|
|
1765
|
|
1766 /**********************************************************************
|
|
1767 * Font *
|
|
1768 **********************************************************************/
|
|
1769
|
|
1770 static void
|
|
1771 font_validate (Lisp_Object instantiator)
|
|
1772 {
|
|
1773 data_must_be_present (instantiator);
|
|
1774 }
|
|
1775
|
|
1776 /* XmuCvtStringToCursor is bogus in the following ways:
|
|
1777
|
|
1778 - When it can't convert the given string to a real cursor, it will
|
|
1779 sometimes return a "success" value, after triggering a BadPixmap
|
|
1780 error. It then gives you a cursor that will itself generate BadCursor
|
|
1781 errors. So we install this error handler to catch/notice the X error
|
|
1782 and take that as meaning "couldn't convert."
|
|
1783
|
|
1784 - When you tell it to find a cursor file that doesn't exist, it prints
|
|
1785 an error message on stderr. You can't make it not do that.
|
|
1786
|
|
1787 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
|
|
1788 objects, or XPM files, or $XBMLANGPATH.
|
|
1789 */
|
|
1790
|
|
1791 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
|
|
1792
|
|
1793 static int XLoadFont_got_error;
|
|
1794
|
|
1795 static int
|
|
1796 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
|
|
1797 {
|
|
1798 XLoadFont_got_error = 1;
|
|
1799 return 0;
|
|
1800 }
|
|
1801
|
|
1802 static Font
|
|
1803 safe_XLoadFont (Display *dpy, char *name)
|
|
1804 {
|
|
1805 Font font;
|
|
1806 int (*old_handler) (Display *, XErrorEvent *);
|
|
1807 XLoadFont_got_error = 0;
|
|
1808 XSync (dpy, 0);
|
|
1809 old_handler = XSetErrorHandler (XLoadFont_error_handler);
|
|
1810 font = XLoadFont (dpy, name);
|
|
1811 XSync (dpy, 0);
|
|
1812 XSetErrorHandler (old_handler);
|
|
1813 if (XLoadFont_got_error) return 0;
|
|
1814 return font;
|
|
1815 }
|
|
1816
|
|
1817 static int
|
74
|
1818 font_possible_dest_types (void)
|
0
|
1819 {
|
|
1820 return IMAGE_POINTER_MASK;
|
|
1821 }
|
|
1822
|
|
1823 static void
|
|
1824 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1825 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1826 int dest_mask, Lisp_Object domain)
|
0
|
1827 {
|
|
1828 /* This function can GC */
|
|
1829 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1830 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1831 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1832 Display *dpy;
|
|
1833 XColor fg, bg;
|
|
1834 Font source, mask;
|
|
1835 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
1836 int source_char, mask_char;
|
|
1837 int count;
|
|
1838 Lisp_Object foreground, background;
|
|
1839
|
|
1840 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1841 signal_simple_error ("Not an X device", device);
|
|
1842
|
|
1843 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1844
|
|
1845 if (!STRINGP (data) ||
|
14
|
1846 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
0
|
1847 signal_simple_error ("Invalid font-glyph instantiator",
|
|
1848 instantiator);
|
|
1849
|
|
1850 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1851 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1852
|
|
1853 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1854 if (NILP (foreground))
|
|
1855 foreground = pointer_fg;
|
|
1856 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1857 if (NILP (background))
|
|
1858 background = pointer_bg;
|
|
1859
|
|
1860 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
1861
|
14
|
1862 count = sscanf ((char *) XSTRING_DATA (data),
|
0
|
1863 "FONT %s %d %s %d %c",
|
|
1864 source_name, &source_char,
|
|
1865 mask_name, &mask_char, &dummy);
|
|
1866 /* Allow "%s %d %d" as well... */
|
|
1867 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
1868 count = 4, mask_name[0] = 0;
|
|
1869
|
|
1870 if (count != 2 && count != 4)
|
|
1871 signal_simple_error ("invalid cursor specification", data);
|
|
1872 source = safe_XLoadFont (dpy, source_name);
|
|
1873 if (! source)
|
|
1874 signal_simple_error_2 ("couldn't load font",
|
|
1875 build_string (source_name),
|
|
1876 data);
|
|
1877 if (count == 2)
|
|
1878 mask = 0;
|
|
1879 else if (!mask_name[0])
|
|
1880 mask = source;
|
|
1881 else
|
|
1882 {
|
|
1883 mask = safe_XLoadFont (dpy, mask_name);
|
|
1884 if (!mask)
|
|
1885 /* continuable */
|
|
1886 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
|
|
1887 build_string (mask_name), data));
|
|
1888 }
|
|
1889 if (!mask)
|
|
1890 mask_char = 0;
|
|
1891
|
|
1892 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
1893
|
|
1894 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
1895 IMAGE_INSTANCE_X_CURSOR (ii) =
|
|
1896 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
1897 &fg, &bg);
|
|
1898 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
1899 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
1900 XUnloadFont (dpy, source);
|
|
1901 if (mask && mask != source) XUnloadFont (dpy, mask);
|
|
1902 }
|
|
1903
|
|
1904
|
|
1905 /**********************************************************************
|
|
1906 * Cursor-Font *
|
|
1907 **********************************************************************/
|
|
1908
|
|
1909 static void
|
|
1910 cursor_font_validate (Lisp_Object instantiator)
|
|
1911 {
|
|
1912 data_must_be_present (instantiator);
|
|
1913 }
|
|
1914
|
|
1915 static int
|
74
|
1916 cursor_font_possible_dest_types (void)
|
0
|
1917 {
|
|
1918 return IMAGE_POINTER_MASK;
|
|
1919 }
|
|
1920
|
|
1921 static void
|
|
1922 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1923 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1924 int dest_mask, Lisp_Object domain)
|
0
|
1925 {
|
|
1926 /* This function can GC */
|
|
1927 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1928 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1929 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1930 Display *dpy;
|
|
1931 int i;
|
|
1932 CONST char *name_ext;
|
|
1933 Lisp_Object foreground, background;
|
|
1934
|
|
1935 if (!DEVICE_X_P (XDEVICE (device)))
|
|
1936 signal_simple_error ("Not an X device", device);
|
|
1937
|
|
1938 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
|
|
1939
|
|
1940 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1941 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1942
|
|
1943 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
|
|
1944 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
|
|
1945 signal_simple_error ("Unrecognized cursor-font name", data);
|
|
1946
|
|
1947 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
|
|
1948 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
|
|
1949 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1950 if (NILP (foreground))
|
|
1951 foreground = pointer_fg;
|
|
1952 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1953 if (NILP (background))
|
|
1954 background = pointer_bg;
|
|
1955 maybe_recolor_cursor (image_instance, foreground, background);
|
|
1956 }
|
|
1957
|
|
1958 static int
|
|
1959 x_colorize_image_instance (Lisp_Object image_instance,
|
|
1960 Lisp_Object foreground, Lisp_Object background)
|
|
1961 {
|
|
1962 struct Lisp_Image_Instance *p;
|
|
1963
|
|
1964 p = XIMAGE_INSTANCE (image_instance);
|
|
1965
|
|
1966 switch (IMAGE_INSTANCE_TYPE (p))
|
|
1967 {
|
|
1968 case IMAGE_MONO_PIXMAP:
|
|
1969 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
1970 /* Make sure there aren't two pointers to the same mask, causing
|
|
1971 it to get freed twice. */
|
|
1972 IMAGE_INSTANCE_X_MASK (p) = 0;
|
|
1973 break;
|
|
1974
|
|
1975 default:
|
|
1976 return 0;
|
|
1977 }
|
|
1978
|
|
1979 {
|
|
1980 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
219
|
1981 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
1982 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
1983 Pixmap new = XCreatePixmap (dpy, draw,
|
0
|
1984 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
1985 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
|
|
1986 XColor color;
|
|
1987 XGCValues gcv;
|
|
1988 GC gc;
|
|
1989 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
|
|
1990 gcv.foreground = color.pixel;
|
|
1991 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
|
|
1992 gcv.background = color.pixel;
|
|
1993 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
|
|
1994 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
|
|
1995 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
1996 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
1997 0, 0, 1);
|
|
1998 XFreeGC (dpy, gc);
|
|
1999 IMAGE_INSTANCE_X_PIXMAP (p) = new;
|
|
2000 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
|
|
2001 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
2002 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
2003 return 1;
|
|
2004 }
|
|
2005 }
|
|
2006
|
|
2007
|
114
|
2008 #if HAVE_SUBWINDOWS
|
0
|
2009 /************************************************************************/
|
|
2010 /* subwindows */
|
|
2011 /************************************************************************/
|
|
2012
|
|
2013 Lisp_Object Qsubwindowp;
|
|
2014
|
|
2015 static Lisp_Object
|
|
2016 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2017 {
|
|
2018 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2019 return sw->frame;
|
|
2020 }
|
|
2021
|
|
2022 static void
|
|
2023 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
2024 {
|
|
2025 char buf[100];
|
|
2026 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
|
|
2027 struct frame *frm = XFRAME (sw->frame);
|
|
2028
|
|
2029 if (print_readably)
|
|
2030 error ("printing unreadable object #<subwindow 0x%x>",
|
|
2031 sw->header.uid);
|
|
2032
|
|
2033 write_c_string ("#<subwindow", printcharfun);
|
|
2034 sprintf (buf, " %dx%d", sw->width, sw->height);
|
|
2035 write_c_string (buf, printcharfun);
|
|
2036
|
|
2037 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
2038 are specific to a particular frame so we want to print in their
|
|
2039 description what that frame is. */
|
185
|
2040
|
0
|
2041 write_c_string (" on #<", printcharfun);
|
|
2042 if (!FRAME_LIVE_P (frm))
|
|
2043 write_c_string ("dead", printcharfun);
|
|
2044 else if (FRAME_TTY_P (frm))
|
|
2045 write_c_string ("tty", printcharfun);
|
|
2046 else if (FRAME_X_P (frm))
|
|
2047 write_c_string ("x", printcharfun);
|
|
2048 else
|
|
2049 write_c_string ("UNKNOWN", printcharfun);
|
|
2050 write_c_string ("-frame ", printcharfun);
|
|
2051 print_internal (frm->name, printcharfun, 1);
|
|
2052 sprintf (buf, " 0x%x>", frm->header.uid);
|
|
2053 write_c_string (buf, printcharfun);
|
|
2054
|
|
2055 sprintf (buf, ") 0x%x>", sw->header.uid);
|
|
2056 write_c_string (buf, printcharfun);
|
|
2057 }
|
|
2058
|
|
2059 static void
|
|
2060 finalize_subwindow (void *header, int for_disksave)
|
|
2061 {
|
|
2062 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
|
|
2063 if (for_disksave) finalose (sw);
|
|
2064 if (sw->subwindow)
|
|
2065 {
|
|
2066 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
|
|
2067 sw->subwindow = 0;
|
|
2068 }
|
|
2069 }
|
|
2070
|
|
2071 /* subwindows are equal iff they have the same window XID */
|
|
2072 static int
|
|
2073 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
2074 {
|
|
2075 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
|
|
2076 }
|
|
2077
|
|
2078 static unsigned long
|
|
2079 subwindow_hash (Lisp_Object obj, int depth)
|
|
2080 {
|
|
2081 return XSUBWINDOW (obj)->subwindow;
|
|
2082 }
|
|
2083
|
272
|
2084 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
|
|
2085 mark_subwindow, print_subwindow,
|
|
2086 finalize_subwindow, subwindow_equal,
|
|
2087 subwindow_hash, struct Lisp_Subwindow);
|
|
2088
|
0
|
2089 /* #### PROBLEM: The display routines assume that the glyph is only
|
|
2090 being displayed in one buffer. If it is in two different buffers
|
|
2091 which are both being displayed simultaneously you will lose big time.
|
|
2092 This can be dealt with in the new redisplay. */
|
|
2093
|
70
|
2094 /* #### These are completely un-re-implemented in 19.14. Get it done
|
|
2095 for 19.15. */
|
0
|
2096
|
20
|
2097 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
|
0
|
2098 Creates a new `subwindow' object of size WIDTH x HEIGHT.
|
|
2099 The default is a window of size 1x1, which is also the minimum allowed
|
|
2100 window size. Subwindows are per-frame. A buffer being shown in two
|
|
2101 different frames will only display a subwindow glyph in the frame in
|
|
2102 which it was actually created. If two windows on the same frame are
|
|
2103 displaying the buffer then the most recently used window will actually
|
|
2104 display the window. If the frame is not specified, the selected frame
|
|
2105 is used.
|
|
2106
|
|
2107 Subwindows are not currently implemented.
|
20
|
2108 */
|
|
2109 (width, height, frame))
|
0
|
2110 {
|
|
2111 Display *dpy;
|
|
2112 Screen *xs;
|
|
2113 Window pw;
|
|
2114 struct frame *f;
|
|
2115 unsigned int iw, ih;
|
|
2116 XSetWindowAttributes xswa;
|
|
2117 Mask valueMask = 0;
|
|
2118
|
140
|
2119 error ("subwindows are not functional in 20.2; they may be again someday");
|
0
|
2120
|
|
2121 f = decode_x_frame (frame);
|
|
2122
|
|
2123 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
|
|
2124 dpy = DisplayOfScreen (xs);
|
|
2125 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
|
|
2126
|
|
2127 if (NILP (width))
|
|
2128 iw = 1;
|
|
2129 else
|
|
2130 {
|
|
2131 CHECK_INT (width);
|
|
2132 iw = XINT (width);
|
|
2133 if (iw < 1) iw = 1;
|
|
2134 }
|
|
2135 if (NILP (height))
|
|
2136 ih = 1;
|
|
2137 else
|
|
2138 {
|
|
2139 CHECK_INT (height);
|
|
2140 ih = XINT (height);
|
|
2141 if (ih < 1) ih = 1;
|
|
2142 }
|
|
2143
|
|
2144 {
|
185
|
2145 struct Lisp_Subwindow *sw =
|
|
2146 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
|
0
|
2147 Lisp_Object val;
|
|
2148 sw->frame = frame;
|
|
2149 sw->xscreen = xs;
|
|
2150 sw->parent_window = pw;
|
|
2151 sw->height = ih;
|
|
2152 sw->width = iw;
|
|
2153
|
|
2154 xswa.backing_store = Always;
|
|
2155 valueMask |= CWBackingStore;
|
|
2156
|
|
2157 xswa.colormap = DefaultColormapOfScreen (xs);
|
|
2158 valueMask |= CWColormap;
|
|
2159
|
|
2160 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
|
|
2161 InputOutput, CopyFromParent, valueMask,
|
|
2162 &xswa);
|
|
2163
|
|
2164 XSETSUBWINDOW (val, sw);
|
|
2165 return val;
|
|
2166 }
|
|
2167 }
|
|
2168
|
|
2169 /* #### Should this function exist? */
|
20
|
2170 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
|
0
|
2171 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
|
|
2172 Subwindows are not currently implemented.
|
20
|
2173 */
|
|
2174 (subwindow, property, data))
|
0
|
2175 {
|
|
2176 Atom property_atom;
|
|
2177 struct Lisp_Subwindow *sw;
|
|
2178 Display *dpy;
|
|
2179
|
|
2180 CHECK_SUBWINDOW (subwindow);
|
|
2181 CHECK_STRING (property);
|
|
2182 CHECK_STRING (data);
|
|
2183
|
|
2184 sw = XSUBWINDOW (subwindow);
|
|
2185 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
|
|
2186 (FRAME_DEVICE (XFRAME (sw->frame))));
|
|
2187
|
16
|
2188 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
|
0
|
2189 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
|
16
|
2190 PropModeReplace,
|
|
2191 XSTRING_DATA (data),
|
14
|
2192 XSTRING_LENGTH (data));
|
0
|
2193
|
272
|
2194 return property;
|
0
|
2195 }
|
|
2196
|
20
|
2197 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
0
|
2198 Return non-nil if OBJECT is a subwindow.
|
|
2199 Subwindows are not currently implemented.
|
20
|
2200 */
|
|
2201 (object))
|
0
|
2202 {
|
272
|
2203 return SUBWINDOWP (object) ? Qt : Qnil;
|
0
|
2204 }
|
|
2205
|
20
|
2206 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
|
0
|
2207 Width of SUBWINDOW.
|
|
2208 Subwindows are not currently implemented.
|
20
|
2209 */
|
|
2210 (subwindow))
|
0
|
2211 {
|
|
2212 CHECK_SUBWINDOW (subwindow);
|
272
|
2213 return make_int (XSUBWINDOW (subwindow)->width);
|
0
|
2214 }
|
|
2215
|
20
|
2216 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
|
0
|
2217 Height of SUBWINDOW.
|
|
2218 Subwindows are not currently implemented.
|
20
|
2219 */
|
|
2220 (subwindow))
|
0
|
2221 {
|
|
2222 CHECK_SUBWINDOW (subwindow);
|
272
|
2223 return make_int (XSUBWINDOW (subwindow)->height);
|
0
|
2224 }
|
|
2225
|
20
|
2226 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
|
0
|
2227 Return the xid of SUBWINDOW as a number.
|
|
2228 Subwindows are not currently implemented.
|
20
|
2229 */
|
|
2230 (subwindow))
|
0
|
2231 {
|
|
2232 CHECK_SUBWINDOW (subwindow);
|
272
|
2233 return make_int (XSUBWINDOW (subwindow)->subwindow);
|
0
|
2234 }
|
|
2235
|
20
|
2236 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
0
|
2237 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
2238 If a value is nil that parameter is not changed.
|
|
2239 Subwindows are not currently implemented.
|
20
|
2240 */
|
|
2241 (subwindow, width, height))
|
0
|
2242 {
|
|
2243 int neww, newh;
|
|
2244 struct Lisp_Subwindow *sw;
|
|
2245
|
|
2246 CHECK_SUBWINDOW (subwindow);
|
|
2247 sw = XSUBWINDOW (subwindow);
|
|
2248
|
|
2249 if (NILP (width))
|
|
2250 neww = sw->width;
|
|
2251 else
|
|
2252 neww = XINT (width);
|
|
2253
|
|
2254 if (NILP (height))
|
|
2255 newh = sw->height;
|
|
2256 else
|
|
2257 newh = XINT (height);
|
|
2258
|
|
2259 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
|
|
2260
|
|
2261 sw->height = newh;
|
|
2262 sw->width = neww;
|
|
2263
|
|
2264 return subwindow;
|
|
2265 }
|
|
2266
|
20
|
2267 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
0
|
2268 Generate a Map event for SUBWINDOW.
|
|
2269 Subwindows are not currently implemented.
|
20
|
2270 */
|
|
2271 (subwindow))
|
0
|
2272 {
|
|
2273 CHECK_SUBWINDOW (subwindow);
|
|
2274
|
|
2275 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
|
|
2276 XSUBWINDOW (subwindow)->subwindow);
|
|
2277
|
|
2278 return subwindow;
|
|
2279 }
|
114
|
2280 #endif
|
0
|
2281
|
|
2282 /************************************************************************/
|
|
2283 /* initialization */
|
|
2284 /************************************************************************/
|
|
2285
|
|
2286 void
|
|
2287 syms_of_glyphs_x (void)
|
|
2288 {
|
114
|
2289 #if HAVE_SUBWINDOWS
|
0
|
2290 defsymbol (&Qsubwindowp, "subwindowp");
|
|
2291
|
20
|
2292 DEFSUBR (Fmake_subwindow);
|
|
2293 DEFSUBR (Fchange_subwindow_property);
|
|
2294 DEFSUBR (Fsubwindowp);
|
|
2295 DEFSUBR (Fsubwindow_width);
|
|
2296 DEFSUBR (Fsubwindow_height);
|
|
2297 DEFSUBR (Fsubwindow_xid);
|
|
2298 DEFSUBR (Fresize_subwindow);
|
|
2299 DEFSUBR (Fforce_subwindow_map);
|
114
|
2300 #endif
|
0
|
2301 }
|
|
2302
|
|
2303 void
|
|
2304 console_type_create_glyphs_x (void)
|
|
2305 {
|
|
2306 /* image methods */
|
|
2307
|
|
2308 CONSOLE_HAS_METHOD (x, print_image_instance);
|
|
2309 CONSOLE_HAS_METHOD (x, finalize_image_instance);
|
|
2310 CONSOLE_HAS_METHOD (x, image_instance_equal);
|
|
2311 CONSOLE_HAS_METHOD (x, image_instance_hash);
|
|
2312 CONSOLE_HAS_METHOD (x, colorize_image_instance);
|
278
|
2313 CONSOLE_HAS_METHOD (x, init_image_instance_from_eimage);
|
|
2314 CONSOLE_HAS_METHOD (x, locate_pixmap_file);
|
280
|
2315 #ifdef HAVE_XPM
|
|
2316 CONSOLE_HAS_METHOD (x, xpm_instantiate);
|
|
2317 #endif
|
288
|
2318 CONSOLE_HAS_METHOD (x, xbm_instantiate);
|
0
|
2319 }
|
|
2320
|
|
2321 void
|
|
2322 image_instantiator_format_create_glyphs_x (void)
|
|
2323 {
|
|
2324
|
|
2325 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
2326
|
|
2327 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
2328 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
2329 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
2330
|
|
2331 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
2332 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
2333 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
2334
|
|
2335 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
2336
|
|
2337 IIFORMAT_HAS_METHOD (font, validate);
|
|
2338 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
2339 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
2340
|
|
2341 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
2342 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
2343 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
2344
|
|
2345 #ifdef HAVE_XFACE
|
|
2346 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
2347
|
|
2348 IIFORMAT_HAS_METHOD (xface, validate);
|
|
2349 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
2350 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
2351 IIFORMAT_HAS_METHOD (xface, instantiate);
|
|
2352
|
|
2353 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
2354 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
2355 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
2356 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
2357 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
2358 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
185
|
2359 #endif
|
0
|
2360
|
122
|
2361 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
|
|
2362 "autodetect");
|
|
2363
|
|
2364 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
2365 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
2366 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
2367 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
2368
|
|
2369 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
0
|
2370 }
|
|
2371
|
|
2372 void
|
|
2373 vars_of_glyphs_x (void)
|
|
2374 {
|
|
2375 #ifdef HAVE_XFACE
|
|
2376 Fprovide (Qxface);
|
185
|
2377 #endif
|
0
|
2378
|
|
2379 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
|
|
2380 A list of the directories in which X bitmap files may be found.
|
185
|
2381 If nil, this is initialized from the "*bitmapFilePath" resource.
|
0
|
2382 This is used by the `make-image-instance' function (however, note that if
|
|
2383 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
2384 */ );
|
|
2385 Vx_bitmap_file_path = Qnil;
|
|
2386 }
|
|
2387
|
|
2388 void
|
|
2389 complex_vars_of_glyphs_x (void)
|
|
2390 {
|
|
2391 #define BUILD_GLYPH_INST(variable, name) \
|
|
2392 Fadd_spec_to_specifier \
|
|
2393 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
2394 vector3 (Qxbm, Q_data, \
|
|
2395 list3 (make_int (name##_width), \
|
|
2396 make_int (name##_height), \
|
|
2397 make_ext_string (name##_bits, \
|
|
2398 sizeof (name##_bits), \
|
|
2399 FORMAT_BINARY))), \
|
|
2400 Qglobal, Qx, Qnil)
|
|
2401
|
|
2402 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
2403 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
2404 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
74
|
2405 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
0
|
2406
|
|
2407 #undef BUILD_GLYPH_INST
|
|
2408 }
|