0
|
1 /* Generic glyph/image implementation + display tables
|
|
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995 Tinker Systems
|
|
4 Copyright (C) 1995, 1996 Ben Wing
|
|
5 Copyright (C) 1995 Sun Microsystems
|
173
|
6
|
0
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
13
|
|
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
17 for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: Not in FSF. */
|
|
25
|
|
26 /* Written by Ben Wing and Chuck Thompson */
|
|
27
|
|
28 #include <config.h>
|
|
29 #include "lisp.h"
|
|
30
|
|
31 #include "buffer.h"
|
|
32 #include "device.h"
|
|
33 #include "elhash.h"
|
|
34 #include "faces.h"
|
|
35 #include "frame.h"
|
276
|
36 #include "insdel.h"
|
0
|
37 #include "glyphs.h"
|
|
38 #include "objects.h"
|
|
39 #include "redisplay.h"
|
|
40 #include "window.h"
|
|
41
|
276
|
42 #ifdef HAVE_XPM
|
|
43 #include <X11/xpm.h>
|
|
44 #endif
|
|
45
|
269
|
46 Lisp_Object Qimage_conversion_error;
|
|
47
|
0
|
48 Lisp_Object Qglyphp, Qcontrib_p, Qbaseline;
|
|
49 Lisp_Object Qbuffer_glyph_p, Qpointer_glyph_p, Qicon_glyph_p;
|
|
50 Lisp_Object Qnothing_image_instance_p, Qtext_image_instance_p;
|
|
51 Lisp_Object Qmono_pixmap_image_instance_p;
|
|
52 Lisp_Object Qcolor_pixmap_image_instance_p;
|
|
53 Lisp_Object Qpointer_image_instance_p;
|
|
54 Lisp_Object Qsubwindow_image_instance_p;
|
|
55 Lisp_Object Qconst_glyph_variable;
|
|
56 Lisp_Object Qmono_pixmap, Qcolor_pixmap, Qsubwindow;
|
272
|
57 Lisp_Object Q_file, Q_data, Q_face;
|
|
58 Lisp_Object Qformatted_string;
|
0
|
59
|
|
60 Lisp_Object Vcurrent_display_table;
|
|
61 Lisp_Object Vtruncation_glyph, Vcontinuation_glyph, Voctal_escape_glyph;
|
|
62 Lisp_Object Vcontrol_arrow_glyph, Vinvisible_text_glyph, Vhscroll_glyph;
|
|
63 Lisp_Object Vxemacs_logo;
|
|
64 Lisp_Object Vthe_nothing_vector;
|
272
|
65 Lisp_Object Vimage_instantiator_format_list;
|
|
66 Lisp_Object Vimage_instance_type_list;
|
|
67 Lisp_Object Vglyph_type_list;
|
|
68
|
0
|
69 DEFINE_IMAGE_INSTANTIATOR_FORMAT (nothing);
|
|
70 DEFINE_IMAGE_INSTANTIATOR_FORMAT (inherit);
|
|
71 DEFINE_IMAGE_INSTANTIATOR_FORMAT (string);
|
|
72 DEFINE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
|
|
73
|
288
|
74 #ifdef HAVE_WINDOW_SYSTEM
|
|
75 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
|
|
76 Lisp_Object Qxbm;
|
|
77
|
|
78 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
|
|
79 Lisp_Object Q_foreground, Q_background;
|
|
80 #ifndef BitmapSuccess
|
|
81 #define BitmapSuccess 0
|
|
82 #define BitmapOpenFailed 1
|
|
83 #define BitmapFileInvalid 2
|
|
84 #define BitmapNoMemory 3
|
|
85 #endif
|
|
86 #endif
|
278
|
87
|
276
|
88 #ifdef HAVE_XPM
|
|
89 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
|
|
90 Lisp_Object Qxpm;
|
|
91 Lisp_Object Q_color_symbols;
|
|
92 #endif
|
|
93
|
185
|
94 typedef struct image_instantiator_format_entry image_instantiator_format_entry;
|
0
|
95 struct image_instantiator_format_entry
|
|
96 {
|
|
97 Lisp_Object symbol;
|
|
98 struct image_instantiator_methods *meths;
|
|
99 };
|
|
100
|
185
|
101 typedef struct
|
0
|
102 {
|
|
103 Dynarr_declare (struct image_instantiator_format_entry);
|
|
104 } image_instantiator_format_entry_dynarr;
|
|
105
|
|
106 image_instantiator_format_entry_dynarr *
|
|
107 the_image_instantiator_format_entry_dynarr;
|
|
108
|
|
109 static Lisp_Object allocate_image_instance (Lisp_Object device);
|
|
110 static void image_validate (Lisp_Object instantiator);
|
|
111 static void glyph_property_was_changed (Lisp_Object glyph,
|
|
112 Lisp_Object property,
|
|
113 Lisp_Object locale);
|
272
|
114 EXFUN (Fimage_instance_type, 1);
|
|
115 EXFUN (Fglyph_type, 1);
|
0
|
116
|
|
117
|
|
118 /****************************************************************************
|
|
119 * Image Instantiators *
|
|
120 ****************************************************************************/
|
|
121
|
|
122 static struct image_instantiator_methods *
|
|
123 decode_image_instantiator_format (Lisp_Object format, Error_behavior errb)
|
|
124 {
|
|
125 int i;
|
|
126
|
|
127 if (!SYMBOLP (format))
|
|
128 {
|
|
129 if (ERRB_EQ (errb, ERROR_ME))
|
|
130 CHECK_SYMBOL (format);
|
|
131 return 0;
|
|
132 }
|
|
133
|
|
134 for (i = 0; i < Dynarr_length (the_image_instantiator_format_entry_dynarr);
|
|
135 i++)
|
|
136 {
|
|
137 if (EQ (format,
|
|
138 Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
|
|
139 symbol))
|
|
140 return Dynarr_at (the_image_instantiator_format_entry_dynarr, i).meths;
|
|
141 }
|
|
142
|
|
143 maybe_signal_simple_error ("Invalid image-instantiator format", format,
|
|
144 Qimage, errb);
|
|
145
|
|
146 return 0;
|
|
147 }
|
|
148
|
|
149 static int
|
|
150 valid_image_instantiator_format_p (Lisp_Object format)
|
|
151 {
|
272
|
152 return (decode_image_instantiator_format (format, ERROR_ME_NOT) != 0);
|
0
|
153 }
|
|
154
|
284
|
155 DEFUN ("valid-image-instantiator-format-p", Fvalid_image_instantiator_format_p,
|
|
156 1, 1, 0, /*
|
0
|
157 Given an IMAGE-INSTANTIATOR-FORMAT, return non-nil if it is valid.
|
120
|
158 Valid formats are some subset of 'nothing, 'string, 'formatted-string,
|
|
159 'xpm, 'xbm, 'xface, 'gif, 'jpeg, 'png, 'tiff, 'cursor-font, 'font,
|
272
|
160 'autodetect, and 'subwindow, depending on how XEmacs was compiled.
|
20
|
161 */
|
|
162 (image_instantiator_format))
|
0
|
163 {
|
272
|
164 return valid_image_instantiator_format_p (image_instantiator_format) ?
|
|
165 Qt : Qnil;
|
0
|
166 }
|
|
167
|
284
|
168 DEFUN ("image-instantiator-format-list", Fimage_instantiator_format_list,
|
|
169 0, 0, 0, /*
|
0
|
170 Return a list of valid image-instantiator formats.
|
20
|
171 */
|
|
172 ())
|
0
|
173 {
|
|
174 return Fcopy_sequence (Vimage_instantiator_format_list);
|
|
175 }
|
|
176
|
|
177 void
|
|
178 add_entry_to_image_instantiator_format_list (Lisp_Object symbol,
|
|
179 struct
|
|
180 image_instantiator_methods *meths)
|
|
181 {
|
|
182 struct image_instantiator_format_entry entry;
|
|
183
|
|
184 entry.symbol = symbol;
|
|
185 entry.meths = meths;
|
|
186 Dynarr_add (the_image_instantiator_format_entry_dynarr, entry);
|
|
187 Vimage_instantiator_format_list =
|
|
188 Fcons (symbol, Vimage_instantiator_format_list);
|
|
189 }
|
|
190
|
|
191 static Lisp_Object *
|
|
192 get_image_conversion_list (Lisp_Object console_type)
|
|
193 {
|
|
194 return &decode_console_type (console_type, ERROR_ME)->image_conversion_list;
|
|
195 }
|
|
196
|
284
|
197 DEFUN ("set-console-type-image-conversion-list", Fset_console_type_image_conversion_list,
|
|
198 2, 2, 0, /*
|
0
|
199 Set the image-conversion-list for consoles of the given TYPE.
|
|
200 The image-conversion-list specifies how image instantiators that
|
|
201 are strings should be interpreted. Each element of the list should be
|
|
202 a list of two elements (a regular expression string and a vector) or
|
|
203 a list of three elements (the preceding two plus an integer index into
|
|
204 the vector). The string is converted to the vector associated with the
|
|
205 first matching regular expression. If a vector index is specified, the
|
|
206 string itself is substituted into that position in the vector.
|
|
207
|
|
208 Note: The conversion above is applied when the image instantiator is
|
|
209 added to an image specifier, not when the specifier is actually
|
|
210 instantiated. Therefore, changing the image-conversion-list only affects
|
|
211 newly-added instantiators. Existing instantiators in glyphs and image
|
|
212 specifiers will not be affected.
|
20
|
213 */
|
|
214 (console_type, list))
|
0
|
215 {
|
|
216 Lisp_Object tail;
|
|
217 Lisp_Object *imlist = get_image_conversion_list (console_type);
|
|
218
|
|
219 /* Check the list to make sure that it only has valid entries. */
|
|
220
|
|
221 EXTERNAL_LIST_LOOP (tail, list)
|
|
222 {
|
|
223 Lisp_Object mapping = XCAR (tail);
|
|
224
|
|
225 /* Mapping form should be (STRING VECTOR) or (STRING VECTOR INTEGER) */
|
|
226 if (!CONSP (mapping) ||
|
|
227 !CONSP (XCDR (mapping)) ||
|
|
228 (!NILP (XCDR (XCDR (mapping))) &&
|
|
229 (!CONSP (XCDR (XCDR (mapping))) ||
|
|
230 !NILP (XCDR (XCDR (XCDR (mapping)))))))
|
|
231 signal_simple_error ("Invalid mapping form", mapping);
|
|
232 else
|
|
233 {
|
|
234 Lisp_Object exp = XCAR (mapping);
|
|
235 Lisp_Object typevec = XCAR (XCDR (mapping));
|
|
236 Lisp_Object pos = Qnil;
|
|
237 Lisp_Object newvec;
|
|
238 struct gcpro gcpro1;
|
|
239
|
|
240 CHECK_STRING (exp);
|
|
241 CHECK_VECTOR (typevec);
|
|
242 if (!NILP (XCDR (XCDR (mapping))))
|
|
243 {
|
|
244 pos = XCAR (XCDR (XCDR (mapping)));
|
|
245 CHECK_INT (pos);
|
|
246 if (XINT (pos) < 0 ||
|
173
|
247 XINT (pos) >= XVECTOR_LENGTH (typevec))
|
0
|
248 args_out_of_range_3
|
173
|
249 (pos, Qzero, make_int (XVECTOR_LENGTH (typevec) - 1));
|
0
|
250 }
|
173
|
251
|
0
|
252 newvec = Fcopy_sequence (typevec);
|
|
253 if (INTP (pos))
|
173
|
254 XVECTOR_DATA (newvec)[XINT (pos)] = exp;
|
0
|
255 GCPRO1 (newvec);
|
|
256 image_validate (newvec);
|
|
257 UNGCPRO;
|
|
258 }
|
|
259 }
|
|
260
|
|
261 *imlist = Fcopy_tree (list, Qt);
|
|
262 return list;
|
|
263 }
|
|
264
|
284
|
265 DEFUN ("console-type-image-conversion-list", Fconsole_type_image_conversion_list,
|
|
266 1, 1, 0, /*
|
0
|
267 Return the image-conversion-list for devices of the given TYPE.
|
|
268 The image-conversion-list specifies how to interpret image string
|
|
269 instantiators for the specified console type. See
|
|
270 `set-console-type-image-conversion-list' for a description of its syntax.
|
20
|
271 */
|
|
272 (console_type))
|
0
|
273 {
|
|
274 return Fcopy_tree (*get_image_conversion_list (console_type), Qt);
|
|
275 }
|
|
276
|
185
|
277 /* Process a string instantiator according to the image-conversion-list for
|
0
|
278 CONSOLE_TYPE. Returns a vector. */
|
|
279
|
|
280 static Lisp_Object
|
|
281 process_image_string_instantiator (Lisp_Object data,
|
|
282 Lisp_Object console_type,
|
|
283 int dest_mask)
|
|
284 {
|
|
285 Lisp_Object tail;
|
|
286
|
|
287 LIST_LOOP (tail, *get_image_conversion_list (console_type))
|
|
288 {
|
|
289 Lisp_Object mapping = XCAR (tail);
|
|
290 Lisp_Object exp = XCAR (mapping);
|
|
291 Lisp_Object typevec = XCAR (XCDR (mapping));
|
|
292
|
|
293 /* if the result is of a type that can't be instantiated
|
|
294 (e.g. a string when we're dealing with a pointer glyph),
|
|
295 skip it. */
|
|
296 if (!(dest_mask &
|
|
297 IIFORMAT_METH (decode_image_instantiator_format
|
173
|
298 (XVECTOR_DATA (typevec)[0], ERROR_ME),
|
0
|
299 possible_dest_types, ())))
|
|
300 continue;
|
|
301 if (fast_string_match (exp, 0, data, 0, -1, 0, ERROR_ME, 0) >= 0)
|
|
302 {
|
|
303 if (!NILP (XCDR (XCDR (mapping))))
|
|
304 {
|
|
305 int pos = XINT (XCAR (XCDR (XCDR (mapping))));
|
|
306 Lisp_Object newvec = Fcopy_sequence (typevec);
|
173
|
307 XVECTOR_DATA (newvec)[pos] = data;
|
0
|
308 return newvec;
|
|
309 }
|
|
310 else
|
|
311 return typevec;
|
|
312 }
|
|
313 }
|
|
314
|
|
315 /* Oh well. */
|
|
316 signal_simple_error ("Unable to interpret glyph instantiator",
|
|
317 data);
|
173
|
318
|
0
|
319 return Qnil;
|
|
320 }
|
|
321
|
|
322 Lisp_Object
|
|
323 find_keyword_in_vector_or_given (Lisp_Object vector, Lisp_Object keyword,
|
173
|
324 Lisp_Object default_)
|
0
|
325 {
|
|
326 Lisp_Object *elt;
|
|
327 int instantiator_len;
|
|
328
|
173
|
329 elt = XVECTOR_DATA (vector);
|
|
330 instantiator_len = XVECTOR_LENGTH (vector);
|
0
|
331
|
|
332 elt++;
|
|
333 instantiator_len--;
|
|
334
|
|
335 while (instantiator_len > 0)
|
|
336 {
|
|
337 if (EQ (elt[0], keyword))
|
|
338 return elt[1];
|
|
339 elt += 2;
|
|
340 instantiator_len -= 2;
|
|
341 }
|
|
342
|
173
|
343 return default_;
|
0
|
344 }
|
|
345
|
|
346 Lisp_Object
|
|
347 find_keyword_in_vector (Lisp_Object vector, Lisp_Object keyword)
|
|
348 {
|
|
349 return find_keyword_in_vector_or_given (vector, keyword, Qnil);
|
|
350 }
|
|
351
|
|
352 void
|
|
353 check_valid_string (Lisp_Object data)
|
|
354 {
|
|
355 CHECK_STRING (data);
|
|
356 }
|
|
357
|
|
358 static void
|
|
359 check_valid_face (Lisp_Object data)
|
|
360 {
|
|
361 Fget_face (data);
|
|
362 }
|
|
363
|
|
364 void
|
|
365 check_valid_int (Lisp_Object data)
|
|
366 {
|
|
367 CHECK_INT (data);
|
|
368 }
|
|
369
|
|
370 void
|
|
371 file_or_data_must_be_present (Lisp_Object instantiator)
|
|
372 {
|
|
373 if (NILP (find_keyword_in_vector (instantiator, Q_file)) &&
|
|
374 NILP (find_keyword_in_vector (instantiator, Q_data)))
|
|
375 signal_simple_error ("Must supply either :file or :data",
|
|
376 instantiator);
|
|
377 }
|
|
378
|
|
379 void
|
|
380 data_must_be_present (Lisp_Object instantiator)
|
|
381 {
|
|
382 if (NILP (find_keyword_in_vector (instantiator, Q_data)))
|
|
383 signal_simple_error ("Must supply :data", instantiator);
|
|
384 }
|
|
385
|
|
386 static void
|
|
387 face_must_be_present (Lisp_Object instantiator)
|
|
388 {
|
|
389 if (NILP (find_keyword_in_vector (instantiator, Q_face)))
|
|
390 signal_simple_error ("Must supply :face", instantiator);
|
|
391 }
|
|
392
|
|
393 /* utility function useful in retrieving data from a file. */
|
|
394
|
|
395 Lisp_Object
|
|
396 make_string_from_file (Lisp_Object file)
|
|
397 {
|
116
|
398 /* This function can call lisp */
|
0
|
399 int count = specpdl_depth ();
|
|
400 Lisp_Object temp_buffer;
|
|
401 struct gcpro gcpro1;
|
|
402 Lisp_Object data;
|
173
|
403
|
0
|
404 specbind (Qinhibit_quit, Qt);
|
|
405 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
406 temp_buffer = Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
407 GCPRO1 (temp_buffer);
|
|
408 set_buffer_internal (XBUFFER (temp_buffer));
|
223
|
409 Ferase_buffer (Qnil);
|
169
|
410 specbind (intern ("format-alist"), Qnil);
|
70
|
411 Finsert_file_contents_internal (file, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil);
|
223
|
412 data = Fbuffer_substring (Qnil, Qnil, Qnil);
|
0
|
413 unbind_to (count, Qnil);
|
|
414 UNGCPRO;
|
|
415 return data;
|
|
416 }
|
|
417
|
|
418 /* The following two functions are provided to make it easier for
|
|
419 the normalize methods to work with keyword-value vectors.
|
|
420 Hash tables are kind of heavyweight for this purpose.
|
|
421 (If vectors were resizable, we could avoid this problem;
|
|
422 but they're not.) An alternative approach that might be
|
|
423 more efficient but require more work is to use a type of
|
|
424 assoc-Dynarr and provide primitives for deleting elements out
|
|
425 of it. (However, you'd also have to add an unwind-protect
|
|
426 to make sure the Dynarr got freed in case of an error in
|
|
427 the normalization process.) */
|
|
428
|
|
429 Lisp_Object
|
|
430 tagged_vector_to_alist (Lisp_Object vector)
|
|
431 {
|
173
|
432 Lisp_Object *elt = XVECTOR_DATA (vector);
|
|
433 int len = XVECTOR_LENGTH (vector);
|
0
|
434 Lisp_Object result = Qnil;
|
|
435
|
|
436 assert (len & 1);
|
|
437 for (len -= 2; len >= 1; len -= 2)
|
|
438 result = Fcons (Fcons (elt[len], elt[len+1]), result);
|
|
439
|
|
440 return result;
|
|
441 }
|
|
442
|
|
443 Lisp_Object
|
|
444 alist_to_tagged_vector (Lisp_Object tag, Lisp_Object alist)
|
|
445 {
|
|
446 int len = 1 + 2 * XINT (Flength (alist));
|
185
|
447 Lisp_Object *elt = alloca_array (Lisp_Object, len);
|
0
|
448 int i;
|
|
449 Lisp_Object rest;
|
|
450
|
|
451 i = 0;
|
|
452 elt[i++] = tag;
|
|
453 LIST_LOOP (rest, alist)
|
|
454 {
|
|
455 Lisp_Object pair = XCAR (rest);
|
|
456 elt[i] = XCAR (pair);
|
|
457 elt[i+1] = XCDR (pair);
|
|
458 i += 2;
|
|
459 }
|
|
460
|
|
461 return Fvector (len, elt);
|
|
462 }
|
|
463
|
|
464 static Lisp_Object
|
|
465 normalize_image_instantiator (Lisp_Object instantiator,
|
|
466 Lisp_Object contype,
|
|
467 Lisp_Object dest_mask)
|
|
468 {
|
|
469 if (IMAGE_INSTANCEP (instantiator))
|
|
470 return instantiator;
|
|
471
|
|
472 if (STRINGP (instantiator))
|
|
473 instantiator = process_image_string_instantiator (instantiator, contype,
|
|
474 XINT (dest_mask));
|
|
475
|
|
476 assert (VECTORP (instantiator));
|
|
477 /* We have to always store the actual pixmap data and not the
|
|
478 filename even though this is a potential memory pig. We have to
|
|
479 do this because it is quite possible that we will need to
|
|
480 instantiate a new instance of the pixmap and the file will no
|
|
481 longer exist (e.g. w3 pixmaps are almost always from temporary
|
|
482 files). */
|
272
|
483 {
|
|
484 struct image_instantiator_methods * meths =
|
|
485 decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
|
|
486 ERROR_ME);
|
|
487 return IIFORMAT_METH_OR_GIVEN (meths, normalize,
|
|
488 (instantiator, contype),
|
|
489 instantiator);
|
|
490 }
|
0
|
491 }
|
|
492
|
|
493 static Lisp_Object
|
124
|
494 instantiate_image_instantiator (Lisp_Object device, Lisp_Object domain,
|
|
495 Lisp_Object instantiator,
|
0
|
496 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
497 int dest_mask)
|
|
498 {
|
272
|
499 Lisp_Object ii = allocate_image_instance (device);
|
|
500 struct image_instantiator_methods *meths;
|
0
|
501 struct gcpro gcpro1;
|
|
502
|
|
503 GCPRO1 (ii);
|
272
|
504 meths = decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
|
|
505 ERROR_ME);
|
|
506 if (!HAS_IIFORMAT_METH_P (meths, instantiate))
|
|
507 signal_simple_error
|
|
508 ("Don't know how to instantiate this image instantiator?",
|
|
509 instantiator);
|
|
510 IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
|
|
511 pointer_bg, dest_mask, domain));
|
0
|
512 UNGCPRO;
|
|
513
|
|
514 return ii;
|
|
515 }
|
|
516
|
|
517
|
|
518 /****************************************************************************
|
|
519 * Image-Instance Object *
|
|
520 ****************************************************************************/
|
|
521
|
|
522 Lisp_Object Qimage_instancep;
|
272
|
523
|
0
|
524 static Lisp_Object
|
|
525 mark_image_instance (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
526 {
|
|
527 struct Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
|
|
528
|
|
529 (markobj) (i->name);
|
|
530 switch (IMAGE_INSTANCE_TYPE (i))
|
|
531 {
|
|
532 case IMAGE_TEXT:
|
|
533 (markobj) (IMAGE_INSTANCE_TEXT_STRING (i));
|
|
534 break;
|
|
535 case IMAGE_MONO_PIXMAP:
|
|
536 case IMAGE_COLOR_PIXMAP:
|
|
537 (markobj) (IMAGE_INSTANCE_PIXMAP_FILENAME (i));
|
|
538 (markobj) (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i));
|
|
539 (markobj) (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i));
|
|
540 (markobj) (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i));
|
|
541 (markobj) (IMAGE_INSTANCE_PIXMAP_FG (i));
|
|
542 (markobj) (IMAGE_INSTANCE_PIXMAP_BG (i));
|
|
543 break;
|
|
544 case IMAGE_SUBWINDOW:
|
|
545 /* #### implement me */
|
|
546 break;
|
|
547 default:
|
|
548 break;
|
|
549 }
|
|
550
|
|
551 MAYBE_DEVMETH (XDEVICE (i->device), mark_image_instance, (i, markobj));
|
|
552
|
173
|
553 return i->device;
|
0
|
554 }
|
|
555
|
|
556 static void
|
|
557 print_image_instance (Lisp_Object obj, Lisp_Object printcharfun,
|
|
558 int escapeflag)
|
|
559 {
|
|
560 char buf[100];
|
|
561 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (obj);
|
|
562
|
|
563 if (print_readably)
|
|
564 error ("printing unreadable object #<image-instance 0x%x>",
|
|
565 ii->header.uid);
|
|
566 write_c_string ("#<image-instance (", printcharfun);
|
|
567 print_internal (Fimage_instance_type (obj), printcharfun, 0);
|
|
568 write_c_string (") ", printcharfun);
|
|
569 if (!NILP (ii->name))
|
|
570 {
|
|
571 print_internal (ii->name, printcharfun, 1);
|
|
572 write_c_string (" ", printcharfun);
|
|
573 }
|
|
574 write_c_string ("on ", printcharfun);
|
|
575 print_internal (ii->device, printcharfun, 0);
|
|
576 write_c_string (" ", printcharfun);
|
|
577 switch (IMAGE_INSTANCE_TYPE (ii))
|
|
578 {
|
|
579 case IMAGE_NOTHING:
|
|
580 break;
|
|
581
|
|
582 case IMAGE_TEXT:
|
|
583 print_internal (IMAGE_INSTANCE_TEXT_STRING (ii), printcharfun, 1);
|
|
584 break;
|
|
585
|
|
586 case IMAGE_MONO_PIXMAP:
|
|
587 case IMAGE_COLOR_PIXMAP:
|
|
588 case IMAGE_POINTER:
|
|
589 if (STRINGP (IMAGE_INSTANCE_PIXMAP_FILENAME (ii)))
|
|
590 {
|
|
591 char *s;
|
|
592 Lisp_Object filename = IMAGE_INSTANCE_PIXMAP_FILENAME (ii);
|
14
|
593 s = strrchr ((char *) XSTRING_DATA (filename), '/');
|
0
|
594 if (s)
|
|
595 print_internal (build_string (s + 1), printcharfun, 1);
|
|
596 else
|
|
597 print_internal (filename, printcharfun, 1);
|
|
598 }
|
|
599 if (IMAGE_INSTANCE_PIXMAP_DEPTH (ii) > 1)
|
|
600 sprintf (buf, " %dx%dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
|
|
601 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii),
|
|
602 IMAGE_INSTANCE_PIXMAP_DEPTH (ii));
|
|
603 else
|
|
604 sprintf (buf, " %dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
|
|
605 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii));
|
|
606 write_c_string (buf, printcharfun);
|
|
607 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ||
|
|
608 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
|
|
609 {
|
|
610 write_c_string (" @", printcharfun);
|
|
611 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)))
|
|
612 {
|
276
|
613 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)));
|
0
|
614 write_c_string (buf, printcharfun);
|
|
615 }
|
|
616 else
|
|
617 write_c_string ("??", printcharfun);
|
|
618 write_c_string (",", printcharfun);
|
|
619 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
|
|
620 {
|
276
|
621 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)));
|
0
|
622 write_c_string (buf, printcharfun);
|
|
623 }
|
|
624 else
|
|
625 write_c_string ("??", printcharfun);
|
|
626 }
|
|
627 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)) ||
|
|
628 !NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
|
|
629 {
|
|
630 write_c_string (" (", printcharfun);
|
|
631 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)))
|
|
632 {
|
|
633 print_internal
|
|
634 (XCOLOR_INSTANCE
|
|
635 (IMAGE_INSTANCE_PIXMAP_FG (ii))->name, printcharfun, 0);
|
|
636 }
|
|
637 write_c_string ("/", printcharfun);
|
|
638 if (!NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
|
|
639 {
|
|
640 print_internal
|
|
641 (XCOLOR_INSTANCE
|
|
642 (IMAGE_INSTANCE_PIXMAP_BG (ii))->name, printcharfun, 0);
|
|
643 }
|
|
644 write_c_string (")", printcharfun);
|
|
645 }
|
|
646 break;
|
|
647
|
|
648 case IMAGE_SUBWINDOW:
|
|
649 /* #### implement me */
|
|
650 break;
|
|
651
|
|
652 default:
|
|
653 abort ();
|
|
654 }
|
|
655
|
|
656 MAYBE_DEVMETH (XDEVICE (ii->device), print_image_instance,
|
|
657 (ii, printcharfun, escapeflag));
|
|
658 sprintf (buf, " 0x%x>", ii->header.uid);
|
|
659 write_c_string (buf, printcharfun);
|
|
660 }
|
|
661
|
|
662 static void
|
|
663 finalize_image_instance (void *header, int for_disksave)
|
|
664 {
|
|
665 struct Lisp_Image_Instance *i = (struct Lisp_Image_Instance *) header;
|
|
666
|
|
667 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_NOTHING)
|
|
668 /* objects like this exist at dump time, so don't bomb out. */
|
|
669 return;
|
|
670 if (for_disksave) finalose (i);
|
|
671
|
|
672 MAYBE_DEVMETH (XDEVICE (i->device), finalize_image_instance, (i));
|
|
673 }
|
|
674
|
|
675 static int
|
|
676 image_instance_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
677 {
|
|
678 struct Lisp_Image_Instance *i1 = XIMAGE_INSTANCE (o1);
|
|
679 struct Lisp_Image_Instance *i2 = XIMAGE_INSTANCE (o2);
|
|
680 struct device *d1 = XDEVICE (i1->device);
|
|
681 struct device *d2 = XDEVICE (i2->device);
|
|
682
|
|
683 if (d1 != d2)
|
|
684 return 0;
|
|
685 if (IMAGE_INSTANCE_TYPE (i1) != IMAGE_INSTANCE_TYPE (i2))
|
|
686 return 0;
|
|
687 if (!internal_equal (IMAGE_INSTANCE_NAME (i1), IMAGE_INSTANCE_NAME (i2),
|
|
688 depth + 1))
|
|
689 return 0;
|
|
690
|
|
691 switch (IMAGE_INSTANCE_TYPE (i1))
|
|
692 {
|
|
693 case IMAGE_NOTHING:
|
|
694 break;
|
|
695
|
|
696 case IMAGE_TEXT:
|
|
697 if (!internal_equal (IMAGE_INSTANCE_TEXT_STRING (i1),
|
|
698 IMAGE_INSTANCE_TEXT_STRING (i2),
|
|
699 depth + 1))
|
|
700 return 0;
|
|
701 break;
|
|
702
|
|
703 case IMAGE_MONO_PIXMAP:
|
|
704 case IMAGE_COLOR_PIXMAP:
|
|
705 case IMAGE_POINTER:
|
|
706 if (!(IMAGE_INSTANCE_PIXMAP_WIDTH (i1) ==
|
|
707 IMAGE_INSTANCE_PIXMAP_WIDTH (i2) &&
|
|
708 IMAGE_INSTANCE_PIXMAP_HEIGHT (i1) ==
|
|
709 IMAGE_INSTANCE_PIXMAP_HEIGHT (i2) &&
|
|
710 IMAGE_INSTANCE_PIXMAP_DEPTH (i1) ==
|
|
711 IMAGE_INSTANCE_PIXMAP_DEPTH (i2) &&
|
|
712 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i1),
|
|
713 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i2)) &&
|
|
714 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i1),
|
|
715 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i2)) &&
|
|
716 internal_equal (IMAGE_INSTANCE_PIXMAP_FILENAME (i1),
|
|
717 IMAGE_INSTANCE_PIXMAP_FILENAME (i2),
|
|
718 depth + 1) &&
|
|
719 internal_equal (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i1),
|
|
720 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i2),
|
|
721 depth + 1)))
|
|
722 return 0;
|
|
723 break;
|
|
724
|
|
725 case IMAGE_SUBWINDOW:
|
|
726 /* #### implement me */
|
|
727 break;
|
|
728
|
|
729 default:
|
|
730 abort ();
|
|
731 }
|
|
732
|
|
733 return DEVMETH_OR_GIVEN (d1, image_instance_equal, (i1, i2, depth), 1);
|
|
734 }
|
|
735
|
|
736 static unsigned long
|
|
737 image_instance_hash (Lisp_Object obj, int depth)
|
|
738 {
|
|
739 struct Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
|
|
740 struct device *d = XDEVICE (i->device);
|
|
741 unsigned long hash = (unsigned long) d;
|
|
742
|
|
743 switch (IMAGE_INSTANCE_TYPE (i))
|
|
744 {
|
|
745 case IMAGE_NOTHING:
|
|
746 break;
|
|
747
|
|
748 case IMAGE_TEXT:
|
|
749 hash = HASH2 (hash, internal_hash (IMAGE_INSTANCE_TEXT_STRING (i),
|
|
750 depth + 1));
|
|
751 break;
|
|
752
|
|
753 case IMAGE_MONO_PIXMAP:
|
|
754 case IMAGE_COLOR_PIXMAP:
|
|
755 case IMAGE_POINTER:
|
|
756 hash = HASH5 (hash, IMAGE_INSTANCE_PIXMAP_WIDTH (i),
|
|
757 IMAGE_INSTANCE_PIXMAP_HEIGHT (i),
|
|
758 IMAGE_INSTANCE_PIXMAP_DEPTH (i),
|
|
759 internal_hash (IMAGE_INSTANCE_PIXMAP_FILENAME (i),
|
|
760 depth + 1));
|
|
761 break;
|
|
762
|
|
763 case IMAGE_SUBWINDOW:
|
|
764 /* #### implement me */
|
|
765 break;
|
|
766
|
|
767 default:
|
|
768 abort ();
|
|
769 }
|
|
770
|
|
771 return HASH2 (hash, DEVMETH_OR_GIVEN (d, image_instance_hash, (i, depth),
|
|
772 0));
|
|
773 }
|
|
774
|
272
|
775 DEFINE_LRECORD_IMPLEMENTATION ("image-instance", image_instance,
|
|
776 mark_image_instance, print_image_instance,
|
|
777 finalize_image_instance, image_instance_equal,
|
|
778 image_instance_hash,
|
|
779 struct Lisp_Image_Instance);
|
|
780
|
0
|
781 static Lisp_Object
|
|
782 allocate_image_instance (Lisp_Object device)
|
|
783 {
|
|
784 struct Lisp_Image_Instance *lp =
|
185
|
785 alloc_lcrecord_type (struct Lisp_Image_Instance, lrecord_image_instance);
|
272
|
786 Lisp_Object val;
|
0
|
787
|
|
788 zero_lcrecord (lp);
|
|
789 lp->device = device;
|
|
790 lp->type = IMAGE_NOTHING;
|
|
791 lp->name = Qnil;
|
|
792 XSETIMAGE_INSTANCE (val, lp);
|
|
793 return val;
|
|
794 }
|
|
795
|
|
796 static enum image_instance_type
|
|
797 decode_image_instance_type (Lisp_Object type, Error_behavior errb)
|
|
798 {
|
|
799 if (ERRB_EQ (errb, ERROR_ME))
|
|
800 CHECK_SYMBOL (type);
|
|
801
|
185
|
802 if (EQ (type, Qnothing)) return IMAGE_NOTHING;
|
|
803 if (EQ (type, Qtext)) return IMAGE_TEXT;
|
|
804 if (EQ (type, Qmono_pixmap)) return IMAGE_MONO_PIXMAP;
|
|
805 if (EQ (type, Qcolor_pixmap)) return IMAGE_COLOR_PIXMAP;
|
|
806 if (EQ (type, Qpointer)) return IMAGE_POINTER;
|
|
807 if (EQ (type, Qsubwindow)) return IMAGE_SUBWINDOW;
|
0
|
808
|
|
809 maybe_signal_simple_error ("Invalid image-instance type", type,
|
|
810 Qimage, errb);
|
185
|
811
|
|
812 return IMAGE_UNKNOWN; /* not reached */
|
0
|
813 }
|
|
814
|
|
815 static Lisp_Object
|
|
816 encode_image_instance_type (enum image_instance_type type)
|
|
817 {
|
|
818 switch (type)
|
|
819 {
|
185
|
820 case IMAGE_NOTHING: return Qnothing;
|
|
821 case IMAGE_TEXT: return Qtext;
|
|
822 case IMAGE_MONO_PIXMAP: return Qmono_pixmap;
|
|
823 case IMAGE_COLOR_PIXMAP: return Qcolor_pixmap;
|
|
824 case IMAGE_POINTER: return Qpointer;
|
|
825 case IMAGE_SUBWINDOW: return Qsubwindow;
|
0
|
826 default:
|
|
827 abort ();
|
|
828 }
|
|
829
|
|
830 return Qnil; /* not reached */
|
|
831 }
|
|
832
|
|
833 static int
|
|
834 image_instance_type_to_mask (enum image_instance_type type)
|
|
835 {
|
|
836 /* This depends on the fact that enums are assigned consecutive
|
|
837 integers starting at 0. (Remember that IMAGE_UNKNOWN is the
|
|
838 first enum.) I'm fairly sure this behavior in ANSI-mandated,
|
|
839 so there should be no portability problems here. */
|
|
840 return (1 << ((int) (type) - 1));
|
|
841 }
|
|
842
|
|
843 static int
|
|
844 decode_image_instance_type_list (Lisp_Object list)
|
|
845 {
|
|
846 Lisp_Object rest;
|
|
847 int mask = 0;
|
|
848
|
|
849 if (NILP (list))
|
|
850 return ~0;
|
|
851
|
|
852 if (!CONSP (list))
|
|
853 {
|
|
854 enum image_instance_type type =
|
|
855 decode_image_instance_type (list, ERROR_ME);
|
|
856 return image_instance_type_to_mask (type);
|
|
857 }
|
|
858
|
|
859 EXTERNAL_LIST_LOOP (rest, list)
|
|
860 {
|
|
861 enum image_instance_type type =
|
|
862 decode_image_instance_type (XCAR (rest), ERROR_ME);
|
|
863 mask |= image_instance_type_to_mask (type);
|
|
864 }
|
|
865
|
|
866 return mask;
|
|
867 }
|
|
868
|
|
869 static Lisp_Object
|
|
870 encode_image_instance_type_list (int mask)
|
|
871 {
|
|
872 int count = 0;
|
|
873 Lisp_Object result = Qnil;
|
|
874
|
|
875 while (mask)
|
|
876 {
|
|
877 count++;
|
|
878 if (mask & 1)
|
|
879 result = Fcons (encode_image_instance_type
|
|
880 ((enum image_instance_type) count), result);
|
|
881 mask >>= 1;
|
|
882 }
|
|
883
|
|
884 return Fnreverse (result);
|
|
885 }
|
|
886
|
|
887 DOESNT_RETURN
|
|
888 incompatible_image_types (Lisp_Object instantiator, int given_dest_mask,
|
|
889 int desired_dest_mask)
|
|
890 {
|
|
891 signal_error
|
|
892 (Qerror,
|
|
893 list2
|
|
894 (emacs_doprnt_string_lisp_2
|
|
895 ((CONST Bufbyte *)
|
|
896 "No compatible image-instance types given: wanted one of %s, got %s",
|
|
897 Qnil, -1, 2,
|
|
898 encode_image_instance_type_list (desired_dest_mask),
|
|
899 encode_image_instance_type_list (given_dest_mask)),
|
|
900 instantiator));
|
|
901 }
|
|
902
|
|
903 static int
|
|
904 valid_image_instance_type_p (Lisp_Object type)
|
|
905 {
|
185
|
906 return !NILP (memq_no_quit (type, Vimage_instance_type_list));
|
0
|
907 }
|
|
908
|
20
|
909 DEFUN ("valid-image-instance-type-p", Fvalid_image_instance_type_p, 1, 1, 0, /*
|
0
|
910 Given an IMAGE-INSTANCE-TYPE, return non-nil if it is valid.
|
|
911 Valid types are some subset of 'nothing, 'text, 'mono-pixmap, 'color-pixmap,
|
|
912 'pointer, and 'subwindow, depending on how XEmacs was compiled.
|
20
|
913 */
|
|
914 (image_instance_type))
|
0
|
915 {
|
185
|
916 return valid_image_instance_type_p (image_instance_type) ? Qt : Qnil;
|
0
|
917 }
|
|
918
|
20
|
919 DEFUN ("image-instance-type-list", Fimage_instance_type_list, 0, 0, 0, /*
|
0
|
920 Return a list of valid image-instance types.
|
20
|
921 */
|
|
922 ())
|
0
|
923 {
|
|
924 return Fcopy_sequence (Vimage_instance_type_list);
|
|
925 }
|
|
926
|
|
927 Error_behavior
|
|
928 decode_error_behavior_flag (Lisp_Object no_error)
|
|
929 {
|
185
|
930 if (NILP (no_error)) return ERROR_ME;
|
|
931 else if (EQ (no_error, Qt)) return ERROR_ME_NOT;
|
|
932 else return ERROR_ME_WARN;
|
0
|
933 }
|
|
934
|
|
935 Lisp_Object
|
|
936 encode_error_behavior_flag (Error_behavior errb)
|
|
937 {
|
|
938 if (ERRB_EQ (errb, ERROR_ME))
|
|
939 return Qnil;
|
|
940 else if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
941 return Qt;
|
|
942 else
|
|
943 {
|
|
944 assert (ERRB_EQ (errb, ERROR_ME_WARN));
|
|
945 return Qwarning;
|
|
946 }
|
|
947 }
|
|
948
|
|
949 static Lisp_Object
|
|
950 make_image_instance_1 (Lisp_Object data, Lisp_Object device,
|
|
951 Lisp_Object dest_types)
|
|
952 {
|
|
953 Lisp_Object ii;
|
|
954 struct gcpro gcpro1;
|
|
955 int dest_mask;
|
|
956
|
|
957 XSETDEVICE (device, decode_device (device));
|
|
958 /* instantiate_image_instantiator() will abort if given an
|
|
959 image instance ... */
|
|
960 if (IMAGE_INSTANCEP (data))
|
|
961 signal_simple_error ("image instances not allowed here", data);
|
|
962 image_validate (data);
|
|
963 dest_mask = decode_image_instance_type_list (dest_types);
|
|
964 data = normalize_image_instantiator (data, DEVICE_TYPE (XDEVICE (device)),
|
|
965 make_int (dest_mask));
|
|
966 GCPRO1 (data);
|
173
|
967 if (VECTORP (data) && EQ (XVECTOR_DATA (data)[0], Qinherit))
|
0
|
968 signal_simple_error ("inheritance not allowed here", data);
|
124
|
969 ii = instantiate_image_instantiator (device, device, data,
|
|
970 Qnil, Qnil, dest_mask);
|
0
|
971 RETURN_UNGCPRO (ii);
|
|
972 }
|
|
973
|
20
|
974 DEFUN ("make-image-instance", Fmake_image_instance, 1, 4, 0, /*
|
272
|
975 Return a new `image-instance' object.
|
0
|
976
|
|
977 Image-instance objects encapsulate the way a particular image (pixmap,
|
|
978 etc.) is displayed on a particular device. In most circumstances, you
|
|
979 do not need to directly create image instances; use a glyph instead.
|
|
980 However, it may occasionally be useful to explicitly create image
|
|
981 instances, if you want more control over the instantiation process.
|
|
982
|
|
983 DATA is an image instantiator, which describes the image; see
|
|
984 `image-specifier-p' for a description of the allowed values.
|
|
985
|
|
986 DEST-TYPES should be a list of allowed image instance types that can
|
|
987 be generated. The recognized image instance types are
|
|
988
|
|
989 'nothing
|
|
990 Nothing is displayed.
|
|
991 'text
|
|
992 Displayed as text. The foreground and background colors and the
|
|
993 font of the text are specified independent of the pixmap. Typically
|
|
994 these attributes will come from the face of the surrounding text,
|
|
995 unless a face is specified for the glyph in which the image appears.
|
|
996 'mono-pixmap
|
|
997 Displayed as a mono pixmap (a pixmap with only two colors where the
|
|
998 foreground and background can be specified independent of the pixmap;
|
|
999 typically the pixmap assumes the foreground and background colors of
|
|
1000 the text around it, unless a face is specified for the glyph in which
|
|
1001 the image appears).
|
|
1002 'color-pixmap
|
|
1003 Displayed as a color pixmap.
|
|
1004 'pointer
|
|
1005 Used as the mouse pointer for a window.
|
|
1006 'subwindow
|
|
1007 A child window that is treated as an image. This allows (e.g.)
|
|
1008 another program to be responsible for drawing into the window.
|
|
1009 Not currently implemented.
|
|
1010
|
|
1011 The DEST-TYPES list is unordered. If multiple destination types
|
185
|
1012 are possible for a given instantiator, the "most natural" type
|
0
|
1013 for the instantiator's format is chosen. (For XBM, the most natural
|
|
1014 types are `mono-pixmap', followed by `color-pixmap', followed by
|
|
1015 `pointer'. For the other normal image formats, the most natural
|
|
1016 types are `color-pixmap', followed by `mono-pixmap', followed by
|
|
1017 `pointer'. For the string and formatted-string formats, the most
|
|
1018 natural types are `text', followed by `mono-pixmap' (not currently
|
|
1019 implemented), followed by `color-pixmap' (not currently implemented).
|
|
1020 The other formats can only be instantiated as one type. (If you
|
|
1021 want to control more specifically the order of the types into which
|
|
1022 an image is instantiated, just call `make-image-instance' repeatedly
|
|
1023 until it succeeds, passing less and less preferred destination types
|
|
1024 each time.
|
|
1025
|
|
1026 If DEST-TYPES is omitted, all possible types are allowed.
|
|
1027
|
|
1028 NO-ERROR controls what happens when the image cannot be generated.
|
|
1029 If nil, an error message is generated. If t, no messages are
|
|
1030 generated and this function returns nil. If anything else, a warning
|
|
1031 message is generated and this function returns nil.
|
20
|
1032 */
|
|
1033 (data, device, dest_types, no_error))
|
0
|
1034 {
|
|
1035 Error_behavior errb = decode_error_behavior_flag (no_error);
|
|
1036
|
74
|
1037 return call_with_suspended_errors ((lisp_fn_t) make_image_instance_1,
|
0
|
1038 Qnil, Qimage, errb,
|
|
1039 3, data, device, dest_types);
|
|
1040 }
|
|
1041
|
20
|
1042 DEFUN ("image-instance-p", Fimage_instance_p, 1, 1, 0, /*
|
0
|
1043 Return non-nil if OBJECT is an image instance.
|
20
|
1044 */
|
|
1045 (object))
|
0
|
1046 {
|
173
|
1047 return IMAGE_INSTANCEP (object) ? Qt : Qnil;
|
0
|
1048 }
|
|
1049
|
20
|
1050 DEFUN ("image-instance-type", Fimage_instance_type, 1, 1, 0, /*
|
0
|
1051 Return the type of the given image instance.
|
|
1052 The return value will be one of 'nothing, 'text, 'mono-pixmap,
|
|
1053 'color-pixmap, 'pointer, or 'subwindow.
|
20
|
1054 */
|
|
1055 (image_instance))
|
0
|
1056 {
|
|
1057 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1058 return encode_image_instance_type (XIMAGE_INSTANCE_TYPE (image_instance));
|
|
1059 }
|
|
1060
|
20
|
1061 DEFUN ("image-instance-name", Fimage_instance_name, 1, 1, 0, /*
|
0
|
1062 Return the name of the given image instance.
|
20
|
1063 */
|
|
1064 (image_instance))
|
0
|
1065 {
|
|
1066 CHECK_IMAGE_INSTANCE (image_instance);
|
173
|
1067 return XIMAGE_INSTANCE_NAME (image_instance);
|
0
|
1068 }
|
|
1069
|
20
|
1070 DEFUN ("image-instance-string", Fimage_instance_string, 1, 1, 0, /*
|
0
|
1071 Return the string of the given image instance.
|
|
1072 This will only be non-nil for text image instances.
|
20
|
1073 */
|
|
1074 (image_instance))
|
0
|
1075 {
|
|
1076 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1077 if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_TEXT)
|
173
|
1078 return XIMAGE_INSTANCE_TEXT_STRING (image_instance);
|
0
|
1079 else
|
|
1080 return Qnil;
|
|
1081 }
|
|
1082
|
20
|
1083 DEFUN ("image-instance-file-name", Fimage_instance_file_name, 1, 1, 0, /*
|
0
|
1084 Return the file name from which IMAGE-INSTANCE was read, if known.
|
20
|
1085 */
|
|
1086 (image_instance))
|
0
|
1087 {
|
|
1088 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1089
|
|
1090 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1091 {
|
|
1092 case IMAGE_MONO_PIXMAP:
|
|
1093 case IMAGE_COLOR_PIXMAP:
|
|
1094 case IMAGE_POINTER:
|
|
1095 return XIMAGE_INSTANCE_PIXMAP_FILENAME (image_instance);
|
|
1096
|
|
1097 default:
|
|
1098 return Qnil;
|
|
1099 }
|
|
1100 }
|
|
1101
|
20
|
1102 DEFUN ("image-instance-mask-file-name", Fimage_instance_mask_file_name, 1, 1, 0, /*
|
0
|
1103 Return the file name from which IMAGE-INSTANCE's mask was read, if known.
|
20
|
1104 */
|
|
1105 (image_instance))
|
0
|
1106 {
|
|
1107 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1108
|
|
1109 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1110 {
|
|
1111 case IMAGE_MONO_PIXMAP:
|
|
1112 case IMAGE_COLOR_PIXMAP:
|
|
1113 case IMAGE_POINTER:
|
|
1114 return XIMAGE_INSTANCE_PIXMAP_MASK_FILENAME (image_instance);
|
|
1115
|
|
1116 default:
|
|
1117 return Qnil;
|
|
1118 }
|
|
1119 }
|
|
1120
|
20
|
1121 DEFUN ("image-instance-depth", Fimage_instance_depth, 1, 1, 0, /*
|
0
|
1122 Return the depth of the image instance.
|
|
1123 This is 0 for a bitmap, or a positive integer for a pixmap.
|
20
|
1124 */
|
|
1125 (image_instance))
|
0
|
1126 {
|
|
1127 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1128
|
|
1129 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1130 {
|
|
1131 case IMAGE_MONO_PIXMAP:
|
|
1132 case IMAGE_COLOR_PIXMAP:
|
|
1133 case IMAGE_POINTER:
|
173
|
1134 return make_int (XIMAGE_INSTANCE_PIXMAP_DEPTH (image_instance));
|
0
|
1135
|
|
1136 default:
|
|
1137 return Qnil;
|
|
1138 }
|
|
1139 }
|
|
1140
|
20
|
1141 DEFUN ("image-instance-height", Fimage_instance_height, 1, 1, 0, /*
|
0
|
1142 Return the height of the image instance, in pixels.
|
20
|
1143 */
|
|
1144 (image_instance))
|
0
|
1145 {
|
|
1146 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1147
|
|
1148 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1149 {
|
|
1150 case IMAGE_MONO_PIXMAP:
|
|
1151 case IMAGE_COLOR_PIXMAP:
|
|
1152 case IMAGE_POINTER:
|
173
|
1153 return make_int (XIMAGE_INSTANCE_PIXMAP_HEIGHT (image_instance));
|
0
|
1154
|
|
1155 default:
|
|
1156 return Qnil;
|
|
1157 }
|
|
1158 }
|
|
1159
|
20
|
1160 DEFUN ("image-instance-width", Fimage_instance_width, 1, 1, 0, /*
|
0
|
1161 Return the width of the image instance, in pixels.
|
20
|
1162 */
|
|
1163 (image_instance))
|
0
|
1164 {
|
|
1165 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1166
|
|
1167 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1168 {
|
|
1169 case IMAGE_MONO_PIXMAP:
|
|
1170 case IMAGE_COLOR_PIXMAP:
|
|
1171 case IMAGE_POINTER:
|
173
|
1172 return make_int (XIMAGE_INSTANCE_PIXMAP_WIDTH (image_instance));
|
0
|
1173
|
|
1174 default:
|
|
1175 return Qnil;
|
|
1176 }
|
|
1177 }
|
|
1178
|
20
|
1179 DEFUN ("image-instance-hotspot-x", Fimage_instance_hotspot_x, 1, 1, 0, /*
|
0
|
1180 Return the X coordinate of the image instance's hotspot, if known.
|
|
1181 This is a point relative to the origin of the pixmap. When an image is
|
|
1182 used as a mouse pointer, the hotspot is the point on the image that sits
|
|
1183 over the location that the pointer points to. This is, for example, the
|
|
1184 tip of the arrow or the center of the crosshairs.
|
|
1185 This will always be nil for a non-pointer image instance.
|
20
|
1186 */
|
|
1187 (image_instance))
|
0
|
1188 {
|
|
1189 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1190
|
|
1191 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1192 {
|
|
1193 case IMAGE_MONO_PIXMAP:
|
|
1194 case IMAGE_COLOR_PIXMAP:
|
|
1195 case IMAGE_POINTER:
|
|
1196 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (image_instance);
|
|
1197
|
|
1198 default:
|
|
1199 return Qnil;
|
|
1200 }
|
|
1201 }
|
|
1202
|
20
|
1203 DEFUN ("image-instance-hotspot-y", Fimage_instance_hotspot_y, 1, 1, 0, /*
|
0
|
1204 Return the Y coordinate of the image instance's hotspot, if known.
|
|
1205 This is a point relative to the origin of the pixmap. When an image is
|
|
1206 used as a mouse pointer, the hotspot is the point on the image that sits
|
|
1207 over the location that the pointer points to. This is, for example, the
|
|
1208 tip of the arrow or the center of the crosshairs.
|
|
1209 This will always be nil for a non-pointer image instance.
|
20
|
1210 */
|
|
1211 (image_instance))
|
0
|
1212 {
|
|
1213 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1214
|
|
1215 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1216 {
|
|
1217 case IMAGE_MONO_PIXMAP:
|
|
1218 case IMAGE_COLOR_PIXMAP:
|
|
1219 case IMAGE_POINTER:
|
|
1220 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (image_instance);
|
|
1221
|
|
1222 default:
|
|
1223 return Qnil;
|
|
1224 }
|
|
1225 }
|
|
1226
|
20
|
1227 DEFUN ("image-instance-foreground", Fimage_instance_foreground, 1, 1, 0, /*
|
0
|
1228 Return the foreground color of IMAGE-INSTANCE, if applicable.
|
|
1229 This will be a color instance or nil. (It will only be non-nil for
|
|
1230 colorized mono pixmaps and for pointers.)
|
20
|
1231 */
|
|
1232 (image_instance))
|
0
|
1233 {
|
|
1234 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1235
|
|
1236 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1237 {
|
|
1238 case IMAGE_MONO_PIXMAP:
|
|
1239 case IMAGE_COLOR_PIXMAP:
|
|
1240 case IMAGE_POINTER:
|
|
1241 return XIMAGE_INSTANCE_PIXMAP_FG (image_instance);
|
|
1242
|
|
1243 default:
|
|
1244 return Qnil;
|
|
1245 }
|
|
1246 }
|
|
1247
|
20
|
1248 DEFUN ("image-instance-background", Fimage_instance_background, 1, 1, 0, /*
|
0
|
1249 Return the background color of IMAGE-INSTANCE, if applicable.
|
|
1250 This will be a color instance or nil. (It will only be non-nil for
|
|
1251 colorized mono pixmaps and for pointers.)
|
20
|
1252 */
|
|
1253 (image_instance))
|
0
|
1254 {
|
|
1255 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1256
|
|
1257 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1258 {
|
|
1259 case IMAGE_MONO_PIXMAP:
|
|
1260 case IMAGE_COLOR_PIXMAP:
|
|
1261 case IMAGE_POINTER:
|
|
1262 return XIMAGE_INSTANCE_PIXMAP_BG (image_instance);
|
|
1263
|
|
1264 default:
|
|
1265 return Qnil;
|
|
1266 }
|
|
1267 }
|
|
1268
|
|
1269
|
20
|
1270 DEFUN ("colorize-image-instance", Fcolorize_image_instance, 3, 3, 0, /*
|
0
|
1271 Make the image instance be displayed in the given colors.
|
|
1272 This function returns a new image instance that is exactly like the
|
|
1273 specified one except that (if possible) the foreground and background
|
|
1274 colors and as specified. Currently, this only does anything if the image
|
|
1275 instance is a mono pixmap; otherwise, the same image instance is returned.
|
20
|
1276 */
|
|
1277 (image_instance, foreground, background))
|
0
|
1278 {
|
|
1279 Lisp_Object new;
|
|
1280 Lisp_Object device;
|
|
1281
|
|
1282 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1283 CHECK_COLOR_INSTANCE (foreground);
|
|
1284 CHECK_COLOR_INSTANCE (background);
|
|
1285
|
|
1286 device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
1287 if (!HAS_DEVMETH_P (XDEVICE (device), colorize_image_instance))
|
|
1288 return image_instance;
|
|
1289
|
|
1290 new = allocate_image_instance (device);
|
|
1291 copy_lcrecord (XIMAGE_INSTANCE (new), XIMAGE_INSTANCE (image_instance));
|
|
1292 /* note that if this method returns non-zero, this method MUST
|
|
1293 copy any window-system resources, so that when one image instance is
|
|
1294 freed, the other one is not hosed. */
|
|
1295 if (!DEVMETH (XDEVICE (device), colorize_image_instance, (new, foreground,
|
|
1296 background)))
|
|
1297 return image_instance;
|
|
1298 return new;
|
|
1299 }
|
|
1300
|
|
1301
|
276
|
1302 /************************************************************************/
|
|
1303 /* error helpers */
|
|
1304 /************************************************************************/
|
|
1305 DOESNT_RETURN
|
|
1306 signal_image_error (CONST char *reason, Lisp_Object frob)
|
|
1307 {
|
|
1308 signal_error (Qimage_conversion_error,
|
|
1309 list2 (build_translated_string (reason), frob));
|
|
1310 }
|
|
1311
|
|
1312 DOESNT_RETURN
|
|
1313 signal_image_error_2 (CONST char *reason, Lisp_Object frob0, Lisp_Object frob1)
|
|
1314 {
|
|
1315 signal_error (Qimage_conversion_error,
|
|
1316 list3 (build_translated_string (reason), frob0, frob1));
|
|
1317 }
|
|
1318
|
0
|
1319 /****************************************************************************
|
|
1320 * nothing *
|
|
1321 ****************************************************************************/
|
|
1322
|
|
1323 static int
|
74
|
1324 nothing_possible_dest_types (void)
|
0
|
1325 {
|
|
1326 return IMAGE_NOTHING_MASK;
|
|
1327 }
|
|
1328
|
|
1329 static void
|
|
1330 nothing_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1331 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1332 int dest_mask, Lisp_Object domain)
|
0
|
1333 {
|
|
1334 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1335
|
|
1336 if (dest_mask & IMAGE_NOTHING_MASK)
|
|
1337 IMAGE_INSTANCE_TYPE (ii) = IMAGE_NOTHING;
|
|
1338 else
|
|
1339 incompatible_image_types (instantiator, dest_mask, IMAGE_NOTHING_MASK);
|
|
1340 }
|
|
1341
|
|
1342
|
|
1343 /****************************************************************************
|
|
1344 * inherit *
|
|
1345 ****************************************************************************/
|
|
1346
|
|
1347 static void
|
|
1348 inherit_validate (Lisp_Object instantiator)
|
|
1349 {
|
|
1350 face_must_be_present (instantiator);
|
|
1351 }
|
|
1352
|
|
1353 static Lisp_Object
|
|
1354 inherit_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1355 {
|
|
1356 Lisp_Object face;
|
|
1357
|
173
|
1358 assert (XVECTOR_LENGTH (inst) == 3);
|
|
1359 face = XVECTOR_DATA (inst)[2];
|
0
|
1360 if (!FACEP (face))
|
|
1361 inst = vector3 (Qinherit, Q_face, Fget_face (face));
|
|
1362 return inst;
|
|
1363 }
|
|
1364
|
|
1365 static int
|
74
|
1366 inherit_possible_dest_types (void)
|
0
|
1367 {
|
|
1368 return IMAGE_MONO_PIXMAP_MASK;
|
|
1369 }
|
|
1370
|
|
1371 static void
|
|
1372 inherit_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1373 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1374 int dest_mask, Lisp_Object domain)
|
0
|
1375 {
|
|
1376 /* handled specially in image_instantiate */
|
|
1377 abort ();
|
|
1378 }
|
|
1379
|
|
1380
|
|
1381 /****************************************************************************
|
|
1382 * string *
|
|
1383 ****************************************************************************/
|
|
1384
|
|
1385 static void
|
|
1386 string_validate (Lisp_Object instantiator)
|
|
1387 {
|
|
1388 data_must_be_present (instantiator);
|
|
1389 }
|
|
1390
|
|
1391 static int
|
74
|
1392 string_possible_dest_types (void)
|
0
|
1393 {
|
|
1394 return IMAGE_TEXT_MASK;
|
|
1395 }
|
|
1396
|
|
1397 /* called from autodetect_instantiate() */
|
|
1398 void
|
|
1399 string_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1400 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1401 int dest_mask, Lisp_Object domain)
|
0
|
1402 {
|
|
1403 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1404 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1405
|
|
1406 assert (!NILP (data));
|
|
1407 if (dest_mask & IMAGE_TEXT_MASK)
|
|
1408 {
|
|
1409 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
|
|
1410 IMAGE_INSTANCE_TEXT_STRING (ii) = data;
|
|
1411 }
|
|
1412 else
|
|
1413 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
|
|
1414 }
|
|
1415
|
|
1416
|
|
1417 /****************************************************************************
|
|
1418 * formatted-string *
|
|
1419 ****************************************************************************/
|
|
1420
|
|
1421 static void
|
|
1422 formatted_string_validate (Lisp_Object instantiator)
|
|
1423 {
|
|
1424 data_must_be_present (instantiator);
|
|
1425 }
|
|
1426
|
|
1427 static int
|
74
|
1428 formatted_string_possible_dest_types (void)
|
0
|
1429 {
|
|
1430 return IMAGE_TEXT_MASK;
|
|
1431 }
|
|
1432
|
|
1433 static void
|
|
1434 formatted_string_instantiate (Lisp_Object image_instance,
|
|
1435 Lisp_Object instantiator,
|
|
1436 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
124
|
1437 int dest_mask, Lisp_Object domain)
|
0
|
1438 {
|
|
1439 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1440 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1441
|
|
1442 assert (!NILP (data));
|
|
1443 /* #### implement this */
|
|
1444 warn_when_safe (Qunimplemented, Qnotice,
|
|
1445 "`formatted-string' not yet implemented; assuming `string'");
|
|
1446 if (dest_mask & IMAGE_TEXT_MASK)
|
|
1447 {
|
|
1448 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
|
|
1449 IMAGE_INSTANCE_TEXT_STRING (ii) = data;
|
|
1450 }
|
|
1451 else
|
|
1452 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
|
|
1453 }
|
|
1454
|
|
1455
|
278
|
1456 /************************************************************************/
|
|
1457 /* pixmap file functions */
|
|
1458 /************************************************************************/
|
|
1459
|
|
1460 /* If INSTANTIATOR refers to inline data, return Qnil.
|
|
1461 If INSTANTIATOR refers to data in a file, return the full filename
|
|
1462 if it exists; otherwise, return a cons of (filename).
|
|
1463
|
|
1464 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
|
|
1465 keywords used to look up the file and inline data,
|
|
1466 respectively, in the instantiator. Normally these would
|
|
1467 be Q_file and Q_data, but might be different for mask data. */
|
|
1468
|
|
1469 Lisp_Object
|
|
1470 potential_pixmap_file_instantiator (Lisp_Object instantiator,
|
|
1471 Lisp_Object file_keyword,
|
|
1472 Lisp_Object data_keyword,
|
|
1473 Lisp_Object console_type)
|
|
1474 {
|
|
1475 Lisp_Object file;
|
|
1476 Lisp_Object data;
|
|
1477
|
|
1478 assert (VECTORP (instantiator));
|
|
1479
|
|
1480 data = find_keyword_in_vector (instantiator, data_keyword);
|
|
1481 file = find_keyword_in_vector (instantiator, file_keyword);
|
|
1482
|
|
1483 if (!NILP (file) && NILP (data))
|
|
1484 {
|
|
1485 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
|
|
1486 (decode_console_type(console_type, ERROR_ME),
|
|
1487 locate_pixmap_file, (file));
|
|
1488
|
|
1489 if (!NILP (retval))
|
|
1490 return retval;
|
|
1491 else
|
|
1492 return Fcons (file, Qnil); /* should have been file */
|
|
1493 }
|
|
1494
|
|
1495 return Qnil;
|
|
1496 }
|
|
1497
|
|
1498 Lisp_Object
|
|
1499 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
1500 Lisp_Object image_type_tag)
|
|
1501 {
|
|
1502 /* This function can call lisp */
|
|
1503 Lisp_Object file = Qnil;
|
|
1504 struct gcpro gcpro1, gcpro2;
|
|
1505 Lisp_Object alist = Qnil;
|
|
1506
|
|
1507 GCPRO2 (file, alist);
|
|
1508
|
|
1509 /* Now, convert any file data into inline data. At the end of this,
|
|
1510 `data' will contain the inline data (if any) or Qnil, and `file'
|
|
1511 will contain the name this data was derived from (if known) or
|
|
1512 Qnil.
|
|
1513
|
|
1514 Note that if we cannot generate any regular inline data, we
|
|
1515 skip out. */
|
|
1516
|
|
1517 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1518 console_type);
|
|
1519
|
|
1520 if (CONSP (file)) /* failure locating filename */
|
|
1521 signal_double_file_error ("Opening pixmap file",
|
|
1522 "no such file or directory",
|
|
1523 Fcar (file));
|
|
1524
|
|
1525 if (NILP (file)) /* no conversion necessary */
|
|
1526 RETURN_UNGCPRO (inst);
|
|
1527
|
|
1528 alist = tagged_vector_to_alist (inst);
|
|
1529
|
|
1530 {
|
|
1531 Lisp_Object data = make_string_from_file (file);
|
|
1532 alist = remassq_no_quit (Q_file, alist);
|
|
1533 /* there can't be a :data at this point. */
|
|
1534 alist = Fcons (Fcons (Q_file, file),
|
|
1535 Fcons (Fcons (Q_data, data), alist));
|
|
1536 }
|
|
1537
|
|
1538 {
|
|
1539 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
|
|
1540 free_alist (alist);
|
|
1541 RETURN_UNGCPRO (result);
|
|
1542 }
|
|
1543 }
|
|
1544
|
|
1545
|
288
|
1546 #ifdef HAVE_WINDOW_SYSTEM
|
|
1547 /**********************************************************************
|
|
1548 * XBM *
|
|
1549 **********************************************************************/
|
|
1550
|
|
1551 /* Check if DATA represents a valid inline XBM spec (i.e. a list
|
|
1552 of (width height bits), with checking done on the dimensions).
|
|
1553 If not, signal an error. */
|
|
1554
|
|
1555 static void
|
|
1556 check_valid_xbm_inline (Lisp_Object data)
|
|
1557 {
|
|
1558 Lisp_Object width, height, bits;
|
|
1559
|
|
1560 if (!CONSP (data) ||
|
|
1561 !CONSP (XCDR (data)) ||
|
|
1562 !CONSP (XCDR (XCDR (data))) ||
|
|
1563 !NILP (XCDR (XCDR (XCDR (data)))))
|
|
1564 signal_simple_error ("Must be list of 3 elements", data);
|
|
1565
|
|
1566 width = XCAR (data);
|
|
1567 height = XCAR (XCDR (data));
|
|
1568 bits = XCAR (XCDR (XCDR (data)));
|
|
1569
|
|
1570 CHECK_STRING (bits);
|
|
1571
|
|
1572 if (!NATNUMP (width))
|
|
1573 signal_simple_error ("Width must be a natural number", width);
|
|
1574
|
|
1575 if (!NATNUMP (height))
|
|
1576 signal_simple_error ("Height must be a natural number", height);
|
|
1577
|
|
1578 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
|
|
1579 signal_simple_error ("data is too short for width and height",
|
|
1580 vector3 (width, height, bits));
|
|
1581 }
|
|
1582
|
|
1583 /* Validate method for XBM's. */
|
|
1584
|
|
1585 static void
|
|
1586 xbm_validate (Lisp_Object instantiator)
|
|
1587 {
|
|
1588 file_or_data_must_be_present (instantiator);
|
|
1589 }
|
|
1590
|
|
1591 /* Given a filename that is supposed to contain XBM data, return
|
|
1592 the inline representation of it as (width height bits). Return
|
|
1593 the hotspot through XHOT and YHOT, if those pointers are not 0.
|
|
1594 If there is no hotspot, XHOT and YHOT will contain -1.
|
|
1595
|
|
1596 If the function fails:
|
|
1597
|
|
1598 -- if OK_IF_DATA_INVALID is set and the data was invalid,
|
|
1599 return Qt.
|
|
1600 -- maybe return an error, or return Qnil.
|
|
1601 */
|
|
1602
|
|
1603
|
|
1604 Lisp_Object
|
|
1605 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
|
|
1606 int ok_if_data_invalid)
|
|
1607 {
|
|
1608 unsigned int w, h;
|
|
1609 Extbyte *data;
|
|
1610 int result;
|
|
1611 CONST char *filename_ext;
|
|
1612
|
|
1613 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
|
|
1614 result = read_bitmap_data_from_file (filename_ext, &w, &h,
|
|
1615 &data, xhot, yhot);
|
|
1616
|
|
1617 if (result == BitmapSuccess)
|
|
1618 {
|
|
1619 Lisp_Object retval;
|
|
1620 int len = (w + 7) / 8 * h;
|
|
1621
|
|
1622 retval = list3 (make_int (w), make_int (h),
|
|
1623 make_ext_string (data, len, FORMAT_BINARY));
|
|
1624 XFree ((char *) data);
|
|
1625 return retval;
|
|
1626 }
|
|
1627
|
|
1628 switch (result)
|
|
1629 {
|
|
1630 case BitmapOpenFailed:
|
|
1631 {
|
|
1632 /* should never happen */
|
|
1633 signal_double_file_error ("Opening bitmap file",
|
|
1634 "no such file or directory",
|
|
1635 name);
|
|
1636 }
|
|
1637 case BitmapFileInvalid:
|
|
1638 {
|
|
1639 if (ok_if_data_invalid)
|
|
1640 return Qt;
|
|
1641 signal_double_file_error ("Reading bitmap file",
|
|
1642 "invalid data in file",
|
|
1643 name);
|
|
1644 }
|
|
1645 case BitmapNoMemory:
|
|
1646 {
|
|
1647 signal_double_file_error ("Reading bitmap file",
|
|
1648 "out of memory",
|
|
1649 name);
|
|
1650 }
|
|
1651 default:
|
|
1652 {
|
|
1653 signal_double_file_error_2 ("Reading bitmap file",
|
|
1654 "unknown error code",
|
|
1655 make_int (result), name);
|
|
1656 }
|
|
1657 }
|
|
1658
|
|
1659 return Qnil; /* not reached */
|
|
1660 }
|
|
1661
|
|
1662 Lisp_Object
|
|
1663 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
|
|
1664 Lisp_Object mask_file, Lisp_Object console_type)
|
|
1665 {
|
|
1666 /* This is unclean but it's fairly standard -- a number of the
|
|
1667 bitmaps in /usr/include/X11/bitmaps use it -- so we support
|
|
1668 it. */
|
|
1669 if (NILP (mask_file)
|
|
1670 /* don't override explicitly specified mask data. */
|
|
1671 && NILP (assq_no_quit (Q_mask_data, alist))
|
|
1672 && !NILP (file))
|
|
1673 {
|
|
1674 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
1675 (decode_console_type(console_type, ERROR_ME),
|
|
1676 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
|
|
1677 if (NILP (mask_file))
|
|
1678 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
1679 (decode_console_type(console_type, ERROR_ME),
|
|
1680 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
|
|
1681 }
|
|
1682
|
|
1683 if (!NILP (mask_file))
|
|
1684 {
|
|
1685 Lisp_Object mask_data =
|
|
1686 bitmap_to_lisp_data (mask_file, 0, 0, 0);
|
|
1687 alist = remassq_no_quit (Q_mask_file, alist);
|
|
1688 /* there can't be a :mask-data at this point. */
|
|
1689 alist = Fcons (Fcons (Q_mask_file, mask_file),
|
|
1690 Fcons (Fcons (Q_mask_data, mask_data), alist));
|
|
1691 }
|
|
1692
|
|
1693 return alist;
|
|
1694 }
|
|
1695
|
|
1696 /* Normalize method for XBM's. */
|
|
1697
|
|
1698 static Lisp_Object
|
|
1699 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1700 {
|
|
1701 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
1702 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1703 Lisp_Object alist = Qnil;
|
|
1704
|
|
1705 GCPRO3 (file, mask_file, alist);
|
|
1706
|
|
1707 /* Now, convert any file data into inline data for both the regular
|
|
1708 data and the mask data. At the end of this, `data' will contain
|
|
1709 the inline data (if any) or Qnil, and `file' will contain
|
|
1710 the name this data was derived from (if known) or Qnil.
|
|
1711 Likewise for `mask_file' and `mask_data'.
|
|
1712
|
|
1713 Note that if we cannot generate any regular inline data, we
|
|
1714 skip out. */
|
|
1715
|
|
1716 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1717 console_type);
|
|
1718 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
1719 Q_mask_data, console_type);
|
|
1720
|
|
1721 if (CONSP (file)) /* failure locating filename */
|
|
1722 signal_double_file_error ("Opening bitmap file",
|
|
1723 "no such file or directory",
|
|
1724 Fcar (file));
|
|
1725
|
|
1726 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
1727 RETURN_UNGCPRO (inst);
|
|
1728
|
|
1729 alist = tagged_vector_to_alist (inst);
|
|
1730
|
|
1731 if (!NILP (file))
|
|
1732 {
|
|
1733 int xhot, yhot;
|
|
1734 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
|
|
1735 alist = remassq_no_quit (Q_file, alist);
|
|
1736 /* there can't be a :data at this point. */
|
|
1737 alist = Fcons (Fcons (Q_file, file),
|
|
1738 Fcons (Fcons (Q_data, data), alist));
|
|
1739
|
|
1740 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
|
|
1741 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
1742 alist);
|
|
1743 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
|
|
1744 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
1745 alist);
|
|
1746 }
|
|
1747
|
|
1748 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
|
1749
|
|
1750 {
|
|
1751 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
1752 free_alist (alist);
|
|
1753 RETURN_UNGCPRO (result);
|
|
1754 }
|
|
1755 }
|
|
1756
|
|
1757
|
|
1758 static int
|
|
1759 xbm_possible_dest_types (void)
|
|
1760 {
|
|
1761 return
|
|
1762 IMAGE_MONO_PIXMAP_MASK |
|
|
1763 IMAGE_COLOR_PIXMAP_MASK |
|
|
1764 IMAGE_POINTER_MASK;
|
|
1765 }
|
|
1766
|
|
1767 static void
|
|
1768 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1769 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1770 int dest_mask, Lisp_Object domain)
|
|
1771 {
|
|
1772 Lisp_Object device= IMAGE_INSTANCE_DEVICE (XIMAGE_INSTANCE (image_instance));
|
|
1773
|
|
1774 MAYBE_DEVMETH (XDEVICE (device),
|
|
1775 xbm_instantiate,
|
|
1776 (image_instance, instantiator, pointer_fg,
|
|
1777 pointer_bg, dest_mask, domain));
|
|
1778 }
|
|
1779
|
|
1780 #endif
|
|
1781
|
|
1782
|
276
|
1783 #ifdef HAVE_XPM
|
|
1784
|
|
1785 /**********************************************************************
|
|
1786 * XPM *
|
|
1787 **********************************************************************/
|
|
1788
|
280
|
1789 Lisp_Object
|
|
1790 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
1791 {
|
|
1792 char **data;
|
|
1793 int result;
|
|
1794
|
|
1795 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
|
|
1796
|
|
1797 if (result == XpmSuccess)
|
|
1798 {
|
|
1799 Lisp_Object retval = Qnil;
|
|
1800 struct buffer *old_buffer = current_buffer;
|
|
1801 Lisp_Object temp_buffer =
|
|
1802 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
1803 int elt;
|
|
1804 int height, width, ncolors;
|
|
1805 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1806 int speccount = specpdl_depth ();
|
|
1807
|
|
1808 GCPRO3 (name, retval, temp_buffer);
|
|
1809
|
|
1810 specbind (Qinhibit_quit, Qt);
|
|
1811 set_buffer_internal (XBUFFER (temp_buffer));
|
|
1812 Ferase_buffer (Qnil);
|
|
1813
|
|
1814 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
1815 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
1816
|
|
1817 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
1818 for (elt = 0; elt <= width + ncolors; elt++)
|
|
1819 {
|
|
1820 buffer_insert_c_string (current_buffer, "\"");
|
|
1821 buffer_insert_c_string (current_buffer, data[elt]);
|
|
1822
|
|
1823 if (elt < width + ncolors)
|
|
1824 buffer_insert_c_string (current_buffer, "\",\r");
|
|
1825 else
|
|
1826 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
1827 }
|
|
1828
|
|
1829 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
|
|
1830 XpmFree (data);
|
|
1831
|
|
1832 set_buffer_internal (old_buffer);
|
|
1833 unbind_to (speccount, Qnil);
|
|
1834
|
|
1835 RETURN_UNGCPRO (retval);
|
|
1836 }
|
|
1837
|
|
1838 switch (result)
|
|
1839 {
|
|
1840 case XpmFileInvalid:
|
|
1841 {
|
|
1842 if (ok_if_data_invalid)
|
|
1843 return Qt;
|
|
1844 signal_image_error ("invalid XPM data in file", name);
|
|
1845 }
|
|
1846 case XpmNoMemory:
|
|
1847 {
|
|
1848 signal_double_file_error ("Reading pixmap file",
|
|
1849 "out of memory", name);
|
|
1850 }
|
|
1851 case XpmOpenFailed:
|
|
1852 {
|
|
1853 /* should never happen? */
|
|
1854 signal_double_file_error ("Opening pixmap file",
|
|
1855 "no such file or directory", name);
|
|
1856 }
|
|
1857 default:
|
|
1858 {
|
|
1859 signal_double_file_error_2 ("Parsing pixmap file",
|
|
1860 "unknown error code",
|
|
1861 make_int (result), name);
|
|
1862 break;
|
|
1863 }
|
|
1864 }
|
|
1865
|
|
1866 return Qnil; /* not reached */
|
|
1867 }
|
|
1868
|
276
|
1869 static void
|
|
1870 check_valid_xpm_color_symbols (Lisp_Object data)
|
|
1871 {
|
|
1872 Lisp_Object rest;
|
|
1873
|
|
1874 for (rest = data; !NILP (rest); rest = XCDR (rest))
|
|
1875 {
|
|
1876 if (!CONSP (rest) ||
|
|
1877 !CONSP (XCAR (rest)) ||
|
|
1878 !STRINGP (XCAR (XCAR (rest))) ||
|
|
1879 (!STRINGP (XCDR (XCAR (rest))) &&
|
|
1880 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
|
|
1881 signal_simple_error ("Invalid color symbol alist", data);
|
|
1882 }
|
|
1883 }
|
|
1884
|
|
1885 static void
|
|
1886 xpm_validate (Lisp_Object instantiator)
|
|
1887 {
|
|
1888 file_or_data_must_be_present (instantiator);
|
|
1889 }
|
|
1890
|
|
1891 Lisp_Object Vxpm_color_symbols;
|
|
1892
|
|
1893 Lisp_Object
|
|
1894 evaluate_xpm_color_symbols (void)
|
|
1895 {
|
|
1896 Lisp_Object rest, results = Qnil;
|
|
1897 struct gcpro gcpro1, gcpro2;
|
|
1898
|
|
1899 GCPRO2 (rest, results);
|
|
1900 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
|
|
1901 {
|
|
1902 Lisp_Object name, value, cons;
|
|
1903
|
|
1904 CHECK_CONS (rest);
|
|
1905 cons = XCAR (rest);
|
|
1906 CHECK_CONS (cons);
|
|
1907 name = XCAR (cons);
|
|
1908 CHECK_STRING (name);
|
|
1909 value = XCDR (cons);
|
|
1910 CHECK_CONS (value);
|
|
1911 value = XCAR (value);
|
|
1912 value = Feval (value);
|
|
1913 if (NILP (value))
|
|
1914 continue;
|
|
1915 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
|
|
1916 signal_simple_error
|
|
1917 ("Result from xpm-color-symbols eval must be nil, string, or color",
|
|
1918 value);
|
|
1919 results = Fcons (Fcons (name, value), results);
|
|
1920 }
|
|
1921 UNGCPRO; /* no more evaluation */
|
|
1922 return results;
|
|
1923 }
|
|
1924
|
|
1925 static Lisp_Object
|
|
1926 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
|
|
1927 {
|
280
|
1928 Lisp_Object file = Qnil;
|
|
1929 Lisp_Object color_symbols;
|
|
1930 struct gcpro gcpro1, gcpro2;
|
|
1931 Lisp_Object alist = Qnil;
|
|
1932
|
|
1933 GCPRO2 (file, alist);
|
|
1934
|
|
1935 /* Now, convert any file data into inline data. At the end of this,
|
|
1936 `data' will contain the inline data (if any) or Qnil, and
|
|
1937 `file' will contain the name this data was derived from (if
|
|
1938 known) or Qnil.
|
|
1939
|
|
1940 Note that if we cannot generate any regular inline data, we
|
|
1941 skip out. */
|
|
1942
|
|
1943 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
1944 console_type);
|
|
1945
|
|
1946 if (CONSP (file)) /* failure locating filename */
|
|
1947 signal_double_file_error ("Opening pixmap file",
|
|
1948 "no such file or directory",
|
|
1949 Fcar (file));
|
|
1950
|
|
1951 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
1952 Qunbound);
|
|
1953
|
|
1954 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
1955 /* no conversion necessary */
|
|
1956 RETURN_UNGCPRO (inst);
|
|
1957
|
|
1958 alist = tagged_vector_to_alist (inst);
|
|
1959
|
|
1960 if (!NILP (file))
|
|
1961 {
|
|
1962 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
1963 alist = remassq_no_quit (Q_file, alist);
|
|
1964 /* there can't be a :data at this point. */
|
|
1965 alist = Fcons (Fcons (Q_file, file),
|
|
1966 Fcons (Fcons (Q_data, data), alist));
|
|
1967 }
|
|
1968
|
|
1969 if (UNBOUNDP (color_symbols))
|
|
1970 {
|
|
1971 color_symbols = evaluate_xpm_color_symbols ();
|
|
1972 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
1973 alist);
|
|
1974 }
|
|
1975
|
|
1976 {
|
|
1977 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1978 free_alist (alist);
|
|
1979 RETURN_UNGCPRO (result);
|
|
1980 }
|
276
|
1981 }
|
|
1982
|
|
1983 static int
|
|
1984 xpm_possible_dest_types (void)
|
|
1985 {
|
|
1986 return
|
|
1987 IMAGE_MONO_PIXMAP_MASK |
|
|
1988 IMAGE_COLOR_PIXMAP_MASK |
|
|
1989 IMAGE_POINTER_MASK;
|
|
1990 }
|
|
1991
|
|
1992 static void
|
|
1993 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1994 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1995 int dest_mask, Lisp_Object domain)
|
|
1996 {
|
|
1997 Lisp_Object device= IMAGE_INSTANCE_DEVICE (XIMAGE_INSTANCE (image_instance));
|
280
|
1998
|
|
1999 MAYBE_DEVMETH (XDEVICE (device),
|
|
2000 xpm_instantiate,
|
|
2001 (image_instance, instantiator, pointer_fg,
|
|
2002 pointer_bg, dest_mask, domain));
|
276
|
2003 }
|
|
2004
|
|
2005 #endif /* HAVE_XPM */
|
|
2006
|
|
2007
|
0
|
2008 /****************************************************************************
|
|
2009 * Image Specifier Object *
|
|
2010 ****************************************************************************/
|
|
2011
|
|
2012 DEFINE_SPECIFIER_TYPE (image);
|
|
2013
|
|
2014 static void
|
|
2015 image_create (Lisp_Object obj)
|
|
2016 {
|
|
2017 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
|
2018
|
|
2019 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
|
|
2020 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
|
|
2021 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
|
|
2022 }
|
|
2023
|
|
2024 static void
|
|
2025 image_mark (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2026 {
|
|
2027 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
|
2028
|
|
2029 ((markobj) (IMAGE_SPECIFIER_ATTACHEE (image)));
|
|
2030 ((markobj) (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image)));
|
|
2031 }
|
|
2032
|
|
2033 static Lisp_Object
|
|
2034 image_instantiate_cache_result (Lisp_Object locative)
|
|
2035 {
|
272
|
2036 /* locative = (instance instantiator . subtable) */
|
|
2037 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
|
0
|
2038 free_cons (XCONS (XCDR (locative)));
|
|
2039 free_cons (XCONS (locative));
|
|
2040 return Qnil;
|
|
2041 }
|
|
2042
|
|
2043 /* Given a specification for an image, return an instance of
|
|
2044 the image which matches the given instantiator and which can be
|
|
2045 displayed in the given domain. */
|
|
2046
|
|
2047 static Lisp_Object
|
|
2048 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
|
|
2049 Lisp_Object domain, Lisp_Object instantiator,
|
|
2050 Lisp_Object depth)
|
|
2051 {
|
|
2052 Lisp_Object device = DFW_DEVICE (domain);
|
|
2053 struct device *d = XDEVICE (device);
|
|
2054 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
|
|
2055 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
|
|
2056
|
|
2057 if (IMAGE_INSTANCEP (instantiator))
|
|
2058 {
|
|
2059 /* make sure that the image instance's device and type are
|
|
2060 matching. */
|
|
2061
|
|
2062 if (EQ (device, XIMAGE_INSTANCE_DEVICE (instantiator)))
|
|
2063 {
|
|
2064 int mask =
|
|
2065 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
|
|
2066 if (mask & dest_mask)
|
|
2067 return instantiator;
|
|
2068 else
|
|
2069 signal_simple_error ("Type of image instance not allowed here",
|
|
2070 instantiator);
|
|
2071 }
|
|
2072 else
|
|
2073 signal_simple_error_2 ("Wrong device for image instance",
|
|
2074 instantiator, device);
|
|
2075 }
|
|
2076 else if (VECTORP (instantiator)
|
173
|
2077 && EQ (XVECTOR_DATA (instantiator)[0], Qinherit))
|
0
|
2078 {
|
173
|
2079 assert (XVECTOR_LENGTH (instantiator) == 3);
|
0
|
2080 return (FACE_PROPERTY_INSTANCE
|
173
|
2081 (Fget_face (XVECTOR_DATA (instantiator)[2]),
|
0
|
2082 Qbackground_pixmap, domain, 0, depth));
|
|
2083 }
|
|
2084 else
|
|
2085 {
|
|
2086 Lisp_Object instance;
|
|
2087 Lisp_Object subtable;
|
|
2088 Lisp_Object ls3 = Qnil;
|
|
2089 Lisp_Object pointer_fg = Qnil;
|
|
2090 Lisp_Object pointer_bg = Qnil;
|
|
2091
|
|
2092 if (pointerp)
|
|
2093 {
|
|
2094 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
|
|
2095 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
|
|
2096 ls3 = list3 (instantiator, pointer_fg, pointer_bg);
|
|
2097 }
|
|
2098
|
|
2099 /* First look in the hash table. */
|
|
2100 subtable = Fgethash (make_int (dest_mask), d->image_instance_cache,
|
|
2101 Qunbound);
|
|
2102 if (UNBOUNDP (subtable))
|
|
2103 {
|
|
2104 /* For the image instance cache, we do comparisons with EQ rather
|
|
2105 than with EQUAL, as we do for color and font names.
|
|
2106 The reasons are:
|
|
2107
|
|
2108 1) pixmap data can be very long, and thus the hashing and
|
|
2109 comparing will take awhile.
|
|
2110 2) It's not so likely that we'll run into things that are EQUAL
|
|
2111 but not EQ (that can happen a lot with faces, because their
|
|
2112 specifiers are copied around); but pixmaps tend not to be
|
|
2113 in faces.
|
|
2114
|
|
2115 However, if the image-instance could be a pointer, we have to
|
|
2116 use EQUAL because we massaged the instantiator into a cons3
|
|
2117 also containing the foreground and background of the
|
|
2118 pointer face.
|
|
2119 */
|
|
2120
|
|
2121 subtable = make_lisp_hashtable (20,
|
|
2122 pointerp ? HASHTABLE_KEY_CAR_WEAK
|
|
2123 : HASHTABLE_KEY_WEAK,
|
|
2124 pointerp ? HASHTABLE_EQUAL
|
|
2125 : HASHTABLE_EQ);
|
|
2126 Fputhash (make_int (dest_mask), subtable,
|
|
2127 d->image_instance_cache);
|
|
2128 instance = Qunbound;
|
|
2129 }
|
|
2130 else
|
|
2131 instance = Fgethash (pointerp ? ls3 : instantiator,
|
|
2132 subtable, Qunbound);
|
|
2133
|
|
2134 if (UNBOUNDP (instance))
|
|
2135 {
|
|
2136 Lisp_Object locative =
|
|
2137 noseeum_cons (Qnil,
|
|
2138 noseeum_cons (pointerp ? ls3 : instantiator,
|
|
2139 subtable));
|
|
2140 int speccount = specpdl_depth ();
|
|
2141
|
|
2142 /* make sure we cache the failures, too.
|
|
2143 Use an unwind-protect to catch such errors.
|
|
2144 If we fail, the unwind-protect records nil in
|
|
2145 the hash table. If we succeed, we change the
|
|
2146 car of the locative to the resulting instance,
|
|
2147 which gets recorded instead. */
|
|
2148 record_unwind_protect (image_instantiate_cache_result,
|
|
2149 locative);
|
|
2150 instance = instantiate_image_instantiator (device,
|
124
|
2151 domain,
|
0
|
2152 instantiator,
|
|
2153 pointer_fg, pointer_bg,
|
|
2154 dest_mask);
|
|
2155 Fsetcar (locative, instance);
|
|
2156 unbind_to (speccount, Qnil);
|
|
2157 }
|
|
2158 else
|
|
2159 free_list (ls3);
|
|
2160
|
|
2161 if (NILP (instance))
|
|
2162 signal_simple_error ("Can't instantiate image (probably cached)",
|
|
2163 instantiator);
|
|
2164 return instance;
|
|
2165 }
|
|
2166
|
|
2167 abort ();
|
|
2168 return Qnil; /* not reached */
|
|
2169 }
|
|
2170
|
|
2171 /* Validate an image instantiator. */
|
|
2172
|
|
2173 static void
|
|
2174 image_validate (Lisp_Object instantiator)
|
|
2175 {
|
|
2176 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
|
|
2177 return;
|
|
2178 else if (VECTORP (instantiator))
|
|
2179 {
|
173
|
2180 Lisp_Object *elt = XVECTOR_DATA (instantiator);
|
|
2181 int instantiator_len = XVECTOR_LENGTH (instantiator);
|
0
|
2182 struct image_instantiator_methods *meths;
|
|
2183 Lisp_Object already_seen = Qnil;
|
|
2184 struct gcpro gcpro1;
|
|
2185 int i;
|
|
2186
|
|
2187 if (instantiator_len < 1)
|
|
2188 signal_simple_error ("Vector length must be at least 1",
|
|
2189 instantiator);
|
|
2190
|
|
2191 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
|
|
2192 if (!(instantiator_len & 1))
|
|
2193 signal_simple_error
|
|
2194 ("Must have alternating keyword/value pairs", instantiator);
|
|
2195
|
|
2196 GCPRO1 (already_seen);
|
|
2197
|
|
2198 for (i = 1; i < instantiator_len; i += 2)
|
|
2199 {
|
|
2200 Lisp_Object keyword = elt[i];
|
|
2201 Lisp_Object value = elt[i+1];
|
|
2202 int j;
|
|
2203
|
|
2204 CHECK_SYMBOL (keyword);
|
|
2205 if (!SYMBOL_IS_KEYWORD (keyword))
|
|
2206 signal_simple_error ("Symbol must begin with a colon", keyword);
|
|
2207
|
|
2208 for (j = 0; j < Dynarr_length (meths->keywords); j++)
|
|
2209 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
|
|
2210 break;
|
|
2211
|
|
2212 if (j == Dynarr_length (meths->keywords))
|
|
2213 signal_simple_error ("Unrecognized keyword", keyword);
|
|
2214
|
|
2215 if (!Dynarr_at (meths->keywords, j).multiple_p)
|
|
2216 {
|
|
2217 if (!NILP (memq_no_quit (keyword, already_seen)))
|
|
2218 signal_simple_error
|
|
2219 ("Keyword may not appear more than once", keyword);
|
|
2220 already_seen = Fcons (keyword, already_seen);
|
|
2221 }
|
|
2222
|
|
2223 (Dynarr_at (meths->keywords, j).validate) (value);
|
|
2224 }
|
|
2225
|
|
2226 UNGCPRO;
|
|
2227
|
|
2228 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
|
|
2229 }
|
|
2230 else
|
|
2231 signal_simple_error ("Must be string or vector", instantiator);
|
|
2232 }
|
|
2233
|
|
2234 static void
|
|
2235 image_after_change (Lisp_Object specifier, Lisp_Object locale)
|
|
2236 {
|
|
2237 Lisp_Object attachee =
|
|
2238 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
|
|
2239 Lisp_Object property =
|
|
2240 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
|
|
2241 if (FACEP (attachee))
|
|
2242 face_property_was_changed (attachee, property, locale);
|
|
2243 else if (GLYPHP (attachee))
|
|
2244 glyph_property_was_changed (attachee, property, locale);
|
|
2245 }
|
|
2246
|
|
2247 void
|
|
2248 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
|
|
2249 Lisp_Object property)
|
|
2250 {
|
|
2251 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
|
2252
|
|
2253 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
|
|
2254 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
|
|
2255 }
|
|
2256
|
|
2257 static Lisp_Object
|
|
2258 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
|
|
2259 Lisp_Object tag_set, Lisp_Object instantiator)
|
|
2260 {
|
|
2261 Lisp_Object possible_console_types = Qnil;
|
|
2262 Lisp_Object rest;
|
|
2263 Lisp_Object retlist = Qnil;
|
|
2264 struct gcpro gcpro1, gcpro2;
|
|
2265
|
|
2266 LIST_LOOP (rest, Vconsole_type_list)
|
|
2267 {
|
|
2268 Lisp_Object contype = XCAR (rest);
|
|
2269 if (!NILP (memq_no_quit (contype, tag_set)))
|
|
2270 possible_console_types = Fcons (contype, possible_console_types);
|
|
2271 }
|
|
2272
|
|
2273 if (XINT (Flength (possible_console_types)) > 1)
|
|
2274 /* two conflicting console types specified */
|
|
2275 return Qnil;
|
|
2276
|
|
2277 if (NILP (possible_console_types))
|
|
2278 possible_console_types = Vconsole_type_list;
|
|
2279
|
|
2280 GCPRO2 (retlist, possible_console_types);
|
|
2281
|
|
2282 LIST_LOOP (rest, possible_console_types)
|
|
2283 {
|
|
2284 Lisp_Object contype = XCAR (rest);
|
272
|
2285 Lisp_Object newinst = call_with_suspended_errors
|
74
|
2286 ((lisp_fn_t) normalize_image_instantiator,
|
|
2287 Qnil, Qimage, ERROR_ME_NOT, 3, instantiator, contype,
|
|
2288 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
|
84
|
2289
|
0
|
2290 if (!NILP (newinst))
|
|
2291 {
|
|
2292 Lisp_Object newtag;
|
|
2293 if (NILP (memq_no_quit (contype, tag_set)))
|
|
2294 newtag = Fcons (contype, tag_set);
|
|
2295 else
|
|
2296 newtag = tag_set;
|
|
2297 retlist = Fcons (Fcons (newtag, newinst), retlist);
|
|
2298 }
|
|
2299 }
|
|
2300
|
|
2301 UNGCPRO;
|
|
2302
|
|
2303 return retlist;
|
|
2304 }
|
|
2305
|
20
|
2306 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
|
0
|
2307 Return non-nil if OBJECT is an image specifier.
|
|
2308
|
|
2309 An image specifier is used for images (pixmaps and the like). It is used
|
|
2310 to describe the actual image in a glyph. It is instanced as an image-
|
|
2311 instance.
|
|
2312
|
|
2313 Image instantiators come in many formats: `xbm', `xpm', `gif', `jpeg',
|
|
2314 etc. This describes the format of the data describing the image. The
|
|
2315 resulting image instances also come in many types -- `mono-pixmap',
|
|
2316 `color-pixmap', `text', `pointer', etc. This refers to the behavior of
|
|
2317 the image and the sorts of places it can appear. (For example, a
|
|
2318 color-pixmap image has fixed colors specified for it, while a
|
185
|
2319 mono-pixmap image comes in two unspecified shades "foreground" and
|
|
2320 "background" that are determined from the face of the glyph or
|
0
|
2321 surrounding text; a text image appears as a string of text and has an
|
|
2322 unspecified foreground, background, and font; a pointer image behaves
|
|
2323 like a mono-pixmap image but can only be used as a mouse pointer
|
|
2324 \[mono-pixmap images cannot be used as mouse pointers]; etc.) It is
|
|
2325 important to keep the distinction between image instantiator format and
|
|
2326 image instance type in mind. Typically, a given image instantiator
|
|
2327 format can result in many different image instance types (for example,
|
|
2328 `xpm' can be instanced as `color-pixmap', `mono-pixmap', or `pointer';
|
|
2329 whereas `cursor-font' can be instanced only as `pointer'), and a
|
|
2330 particular image instance type can be generated by many different
|
|
2331 image instantiator formats (e.g. `color-pixmap' can be generated by `xpm',
|
|
2332 `gif', `jpeg', etc.).
|
|
2333
|
|
2334 See `make-image-instance' for a more detailed discussion of image
|
|
2335 instance types.
|
|
2336
|
|
2337 An image instantiator should be a string or a vector of the form
|
|
2338
|
|
2339 [FORMAT :KEYWORD VALUE ...]
|
|
2340
|
|
2341 i.e. a format symbol followed by zero or more alternating keyword-value
|
|
2342 pairs. FORMAT should be one of
|
|
2343
|
|
2344 'nothing
|
|
2345 (Don't display anything; no keywords are valid for this.
|
|
2346 Can only be instanced as `nothing'.)
|
|
2347 'string
|
|
2348 (Display this image as a text string. Can only be instanced
|
|
2349 as `text', although support for instancing as `mono-pixmap'
|
|
2350 should be added.)
|
|
2351 'formatted-string
|
|
2352 (Display this image as a text string, with replaceable fields;
|
|
2353 not currently implemented.)
|
|
2354 'xbm
|
|
2355 (An X bitmap; only if X support was compiled into this XEmacs.
|
|
2356 Can be instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
|
|
2357 'xpm
|
|
2358 (An XPM pixmap; only if XPM support was compiled into this XEmacs.
|
|
2359 Can be instanced as `color-pixmap', `mono-pixmap', or `pointer'.)
|
|
2360 'xface
|
|
2361 (An X-Face bitmap, used to encode people's faces in e-mail messages;
|
|
2362 only if X-Face support was compiled into this XEmacs. Can be
|
|
2363 instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
|
|
2364 'gif
|
|
2365 (A GIF87 or GIF89 image; only if GIF support was compiled into this
|
|
2366 XEmacs. Can be instanced as `color-pixmap'.)
|
|
2367 'jpeg
|
|
2368 (A JPEG image; only if JPEG support was compiled into this XEmacs.
|
|
2369 Can be instanced as `color-pixmap'.)
|
|
2370 'png
|
|
2371 (A PNG/GIF24 image; only if PNG support was compiled into this XEmacs.
|
|
2372 Can be instanced as `color-pixmap'.)
|
|
2373 'tiff
|
|
2374 (A TIFF image; not currently implemented.)
|
|
2375 'cursor-font
|
185
|
2376 (One of the standard cursor-font names, such as "watch" or
|
|
2377 "right_ptr" under X. Under X, this is, more specifically, any
|
0
|
2378 of the standard cursor names from appendix B of the Xlib manual
|
|
2379 [also known as the file <X11/cursorfont.h>] minus the XC_ prefix.
|
|
2380 On other window systems, the valid names will be specific to the
|
|
2381 type of window system. Can only be instanced as `pointer'.)
|
|
2382 'font
|
|
2383 (A glyph from a font; i.e. the name of a font, and glyph index into it
|
185
|
2384 of the form "FONT fontname index [[mask-font] mask-index]".
|
0
|
2385 Currently can only be instanced as `pointer', although this should
|
|
2386 probably be fixed.)
|
|
2387 'subwindow
|
|
2388 (An embedded X window; not currently implemented.)
|
122
|
2389 'autodetect
|
0
|
2390 (XEmacs tries to guess what format the data is in. If X support
|
|
2391 exists, the data string will be checked to see if it names a filename.
|
|
2392 If so, and this filename contains XBM or XPM data, the appropriate
|
|
2393 sort of pixmap or pointer will be created. [This includes picking up
|
|
2394 any specified hotspot or associated mask file.] Otherwise, if `pointer'
|
|
2395 is one of the allowable image-instance types and the string names a
|
|
2396 valid cursor-font name, the image will be created as a pointer.
|
|
2397 Otherwise, the image will be displayed as text. If no X support
|
|
2398 exists, the image will always be displayed as text.)
|
|
2399 'inherit
|
|
2400 Inherit from the background-pixmap property of a face.
|
|
2401
|
|
2402 The valid keywords are:
|
|
2403
|
|
2404 :data
|
|
2405 (Inline data. For most formats above, this should be a string. For
|
|
2406 XBM images, this should be a list of three elements: width, height, and
|
|
2407 a string of bit data. This keyword is not valid for instantiator
|
|
2408 formats `nothing' and `inherit'.)
|
|
2409 :file
|
|
2410 (Data is contained in a file. The value is the name of this file.
|
|
2411 If both :data and :file are specified, the image is created from
|
|
2412 what is specified in :data and the string in :file becomes the
|
|
2413 value of the `image-instance-file-name' function when applied to
|
|
2414 the resulting image-instance. This keyword is not valid for
|
|
2415 instantiator formats `nothing', `string', `formatted-string',
|
122
|
2416 `cursor-font', `font', `autodetect', and `inherit'.)
|
0
|
2417 :foreground
|
|
2418 :background
|
|
2419 (For `xbm', `xface', `cursor-font', and `font'. These keywords
|
|
2420 allow you to explicitly specify foreground and background colors.
|
|
2421 The argument should be anything acceptable to `make-color-instance'.
|
|
2422 This will cause what would be a `mono-pixmap' to instead be colorized
|
|
2423 as a two-color color-pixmap, and specifies the foreground and/or
|
|
2424 background colors for a pointer instead of black and white.)
|
|
2425 :mask-data
|
|
2426 (For `xbm' and `xface'. This specifies a mask to be used with the
|
|
2427 bitmap. The format is a list of width, height, and bits, like for
|
|
2428 :data.)
|
|
2429 :mask-file
|
|
2430 (For `xbm' and `xface'. This specifies a file containing the mask data.
|
|
2431 If neither a mask file nor inline mask data is given for an XBM image,
|
|
2432 and the XBM image comes from a file, XEmacs will look for a mask file
|
185
|
2433 with the same name as the image file but with "Mask" or "msk"
|
|
2434 appended. For example, if you specify the XBM file "left_ptr"
|
|
2435 [usually located in "/usr/include/X11/bitmaps"], the associated
|
|
2436 mask file "left_ptrmsk" will automatically be picked up.)
|
0
|
2437 :hotspot-x
|
|
2438 :hotspot-y
|
|
2439 (For `xbm' and `xface'. These keywords specify a hotspot if the image
|
|
2440 is instantiated as a `pointer'. Note that if the XBM image file
|
|
2441 specifies a hotspot, it will automatically be picked up if no
|
|
2442 explicit hotspot is given.)
|
|
2443 :color-symbols
|
|
2444 (Only for `xpm'. This specifies an alist that maps strings
|
|
2445 that specify symbolic color names to the actual color to be used
|
|
2446 for that symbolic color (in the form of a string or a color-specifier
|
|
2447 object). If this is not specified, the contents of `xpm-color-symbols'
|
|
2448 are used to generate the alist.)
|
|
2449 :face
|
|
2450 (Only for `inherit'. This specifies the face to inherit from.)
|
|
2451
|
|
2452 If instead of a vector, the instantiator is a string, it will be
|
|
2453 converted into a vector by looking it up according to the specs in the
|
|
2454 `console-type-image-conversion-list' (q.v.) for the console type of
|
|
2455 the domain (usually a window; sometimes a frame or device) over which
|
|
2456 the image is being instantiated.
|
|
2457
|
|
2458 If the instantiator specifies data from a file, the data will be read
|
|
2459 in at the time that the instantiator is added to the image (which may
|
|
2460 be well before when the image is actually displayed), and the
|
|
2461 instantiator will be converted into one of the inline-data forms, with
|
|
2462 the filename retained using a :file keyword. This implies that the
|
|
2463 file must exist when the instantiator is added to the image, but does
|
|
2464 not need to exist at any other time (e.g. it may safely be a temporary
|
|
2465 file).
|
20
|
2466 */
|
|
2467 (object))
|
0
|
2468 {
|
173
|
2469 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
2470 }
|
|
2471
|
|
2472
|
|
2473 /****************************************************************************
|
|
2474 * Glyph Object *
|
|
2475 ****************************************************************************/
|
|
2476
|
|
2477 static Lisp_Object
|
|
2478 mark_glyph (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2479 {
|
272
|
2480 struct Lisp_Glyph *glyph = XGLYPH (obj);
|
0
|
2481
|
|
2482 ((markobj) (glyph->image));
|
|
2483 ((markobj) (glyph->contrib_p));
|
|
2484 ((markobj) (glyph->baseline));
|
|
2485 ((markobj) (glyph->face));
|
|
2486
|
173
|
2487 return glyph->plist;
|
0
|
2488 }
|
|
2489
|
|
2490 static void
|
|
2491 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
2492 {
|
|
2493 struct Lisp_Glyph *glyph = XGLYPH (obj);
|
|
2494 char buf[20];
|
|
2495
|
|
2496 if (print_readably)
|
|
2497 error ("printing unreadable object #<glyph 0x%x>", glyph->header.uid);
|
|
2498
|
|
2499 write_c_string ("#<glyph (", printcharfun);
|
|
2500 print_internal (Fglyph_type (obj), printcharfun, 0);
|
|
2501 write_c_string (") ", printcharfun);
|
|
2502 print_internal (glyph->image, printcharfun, 1);
|
|
2503 sprintf (buf, "0x%x>", glyph->header.uid);
|
|
2504 write_c_string (buf, printcharfun);
|
|
2505 }
|
|
2506
|
|
2507 /* Glyphs are equal if all of their display attributes are equal. We
|
|
2508 don't compare names or doc-strings, because that would make equal
|
|
2509 be eq.
|
|
2510
|
|
2511 This isn't concerned with "unspecified" attributes, that's what
|
|
2512 #'glyph-differs-from-default-p is for. */
|
|
2513 static int
|
|
2514 glyph_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
2515 {
|
|
2516 struct Lisp_Glyph *g1 = XGLYPH (o1);
|
|
2517 struct Lisp_Glyph *g2 = XGLYPH (o2);
|
|
2518
|
|
2519 depth++;
|
|
2520
|
185
|
2521 return (internal_equal (g1->image, g2->image, depth) &&
|
|
2522 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
|
|
2523 internal_equal (g1->baseline, g2->baseline, depth) &&
|
|
2524 internal_equal (g1->face, g2->face, depth) &&
|
|
2525 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
|
0
|
2526 }
|
|
2527
|
|
2528 static unsigned long
|
|
2529 glyph_hash (Lisp_Object obj, int depth)
|
|
2530 {
|
|
2531 depth++;
|
|
2532
|
|
2533 /* No need to hash all of the elements; that would take too long.
|
|
2534 Just hash the most common ones. */
|
185
|
2535 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
|
|
2536 internal_hash (XGLYPH (obj)->face, depth));
|
0
|
2537 }
|
|
2538
|
|
2539 static Lisp_Object
|
|
2540 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
|
|
2541 {
|
|
2542 struct Lisp_Glyph *g = XGLYPH (obj);
|
272
|
2543
|
185
|
2544 if (EQ (prop, Qimage)) return g->image;
|
|
2545 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
|
|
2546 if (EQ (prop, Qbaseline)) return g->baseline;
|
|
2547 if (EQ (prop, Qface)) return g->face;
|
0
|
2548
|
|
2549 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
|
|
2550 }
|
|
2551
|
|
2552 static int
|
|
2553 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
|
|
2554 {
|
185
|
2555 if ((EQ (prop, Qimage)) ||
|
|
2556 (EQ (prop, Qcontrib_p)) ||
|
|
2557 (EQ (prop, Qbaseline)))
|
|
2558 return 0;
|
0
|
2559
|
|
2560 if (EQ (prop, Qface))
|
|
2561 {
|
185
|
2562 XGLYPH (obj)->face = Fget_face (value);
|
0
|
2563 return 1;
|
|
2564 }
|
|
2565
|
185
|
2566 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
|
0
|
2567 return 1;
|
|
2568 }
|
|
2569
|
|
2570 static int
|
|
2571 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
|
|
2572 {
|
185
|
2573 if ((EQ (prop, Qimage)) ||
|
|
2574 (EQ (prop, Qcontrib_p)) ||
|
|
2575 (EQ (prop, Qbaseline)))
|
|
2576 return -1;
|
0
|
2577
|
|
2578 if (EQ (prop, Qface))
|
|
2579 {
|
185
|
2580 XGLYPH (obj)->face = Qnil;
|
0
|
2581 return 1;
|
|
2582 }
|
|
2583
|
185
|
2584 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
|
0
|
2585 }
|
|
2586
|
|
2587 static Lisp_Object
|
|
2588 glyph_plist (Lisp_Object obj)
|
|
2589 {
|
272
|
2590 struct Lisp_Glyph *glyph = XGLYPH (obj);
|
|
2591 Lisp_Object result = glyph->plist;
|
|
2592
|
|
2593 result = cons3 (Qface, glyph->face, result);
|
|
2594 result = cons3 (Qbaseline, glyph->baseline, result);
|
|
2595 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
|
|
2596 result = cons3 (Qimage, glyph->image, result);
|
|
2597
|
|
2598 return result;
|
0
|
2599 }
|
|
2600
|
272
|
2601 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
|
|
2602 mark_glyph, print_glyph, 0,
|
|
2603 glyph_equal, glyph_hash,
|
|
2604 glyph_getprop, glyph_putprop,
|
|
2605 glyph_remprop, glyph_plist,
|
|
2606 struct Lisp_Glyph);
|
|
2607
|
0
|
2608 Lisp_Object
|
|
2609 allocate_glyph (enum glyph_type type,
|
|
2610 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
|
|
2611 Lisp_Object locale))
|
|
2612 {
|
249
|
2613 /* This function can GC */
|
0
|
2614 Lisp_Object obj = Qnil;
|
|
2615 struct Lisp_Glyph *g =
|
185
|
2616 alloc_lcrecord_type (struct Lisp_Glyph, lrecord_glyph);
|
173
|
2617
|
0
|
2618 g->type = type;
|
249
|
2619 g->image = Fmake_specifier (Qimage); /* This function can GC */
|
0
|
2620 switch (g->type)
|
|
2621 {
|
|
2622 case GLYPH_BUFFER:
|
|
2623 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
|
2624 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK | IMAGE_MONO_PIXMAP_MASK |
|
|
2625 IMAGE_COLOR_PIXMAP_MASK | IMAGE_SUBWINDOW_MASK;
|
|
2626 break;
|
|
2627 case GLYPH_POINTER:
|
|
2628 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
|
2629 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
|
|
2630 break;
|
|
2631 case GLYPH_ICON:
|
|
2632 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
|
2633 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK;
|
|
2634 break;
|
|
2635 default:
|
|
2636 abort ();
|
|
2637 }
|
|
2638
|
249
|
2639 /* I think Fmake_specifier can GC. I think set_specifier_fallback can GC. */
|
|
2640 /* We're getting enough reports of odd behavior in this area it seems */
|
|
2641 /* best to GCPRO everything. */
|
|
2642 {
|
|
2643 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
|
|
2644 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
|
|
2645 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
|
|
2646 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
2647
|
|
2648 GCPRO4 (obj, tem1, tem2, tem3);
|
|
2649
|
|
2650 set_specifier_fallback (g->image, tem1);
|
|
2651 g->contrib_p = Fmake_specifier (Qboolean);
|
|
2652 set_specifier_fallback (g->contrib_p, tem2);
|
|
2653 /* #### should have a specifier for the following */
|
|
2654 g->baseline = Fmake_specifier (Qgeneric);
|
|
2655 set_specifier_fallback (g->baseline, tem3);
|
|
2656 g->face = Qnil;
|
|
2657 g->plist = Qnil;
|
|
2658 g->after_change = after_change;
|
|
2659 XSETGLYPH (obj, g);
|
|
2660
|
|
2661 set_image_attached_to (g->image, obj, Qimage);
|
|
2662 UNGCPRO;
|
|
2663 }
|
0
|
2664
|
|
2665 return obj;
|
|
2666 }
|
|
2667
|
|
2668 static enum glyph_type
|
|
2669 decode_glyph_type (Lisp_Object type, Error_behavior errb)
|
|
2670 {
|
|
2671 if (NILP (type))
|
|
2672 return GLYPH_BUFFER;
|
|
2673
|
|
2674 if (ERRB_EQ (errb, ERROR_ME))
|
|
2675 CHECK_SYMBOL (type);
|
|
2676
|
185
|
2677 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
|
|
2678 if (EQ (type, Qpointer)) return GLYPH_POINTER;
|
|
2679 if (EQ (type, Qicon)) return GLYPH_ICON;
|
0
|
2680
|
|
2681 maybe_signal_simple_error ("Invalid glyph type", type, Qimage, errb);
|
185
|
2682
|
0
|
2683 return GLYPH_UNKNOWN;
|
|
2684 }
|
|
2685
|
|
2686 static int
|
|
2687 valid_glyph_type_p (Lisp_Object type)
|
|
2688 {
|
185
|
2689 return !NILP (memq_no_quit (type, Vglyph_type_list));
|
0
|
2690 }
|
|
2691
|
20
|
2692 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
|
0
|
2693 Given a GLYPH-TYPE, return non-nil if it is valid.
|
|
2694 Valid types are `buffer', `pointer', and `icon'.
|
20
|
2695 */
|
|
2696 (glyph_type))
|
0
|
2697 {
|
185
|
2698 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
|
0
|
2699 }
|
|
2700
|
20
|
2701 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
|
0
|
2702 Return a list of valid glyph types.
|
20
|
2703 */
|
|
2704 ())
|
0
|
2705 {
|
|
2706 return Fcopy_sequence (Vglyph_type_list);
|
|
2707 }
|
|
2708
|
20
|
2709 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
|
272
|
2710 Create and return a new uninitialized glyph or type TYPE.
|
0
|
2711
|
|
2712 TYPE specifies the type of the glyph; this should be one of `buffer',
|
|
2713 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
|
|
2714 specifies in which contexts the glyph can be used, and controls the
|
|
2715 allowable image types into which the glyph's image can be
|
|
2716 instantiated.
|
|
2717
|
|
2718 `buffer' glyphs can be used as the begin-glyph or end-glyph of an
|
|
2719 extent, in the modeline, and in the toolbar. Their image can be
|
|
2720 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
|
|
2721 and `subwindow'.
|
|
2722
|
|
2723 `pointer' glyphs can be used to specify the mouse pointer. Their
|
|
2724 image can be instantiated as `pointer'.
|
|
2725
|
|
2726 `icon' glyphs can be used to specify the icon used when a frame is
|
|
2727 iconified. Their image can be instantiated as `mono-pixmap' and
|
|
2728 `color-pixmap'.
|
20
|
2729 */
|
|
2730 (type))
|
0
|
2731 {
|
|
2732 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
|
|
2733 return allocate_glyph (typeval, 0);
|
|
2734 }
|
|
2735
|
20
|
2736 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
|
0
|
2737 Return non-nil if OBJECT is a glyph.
|
|
2738
|
|
2739 A glyph is an object used for pixmaps and the like. It is used
|
|
2740 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
|
|
2741 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
|
|
2742 buttons, and the like. Its image is described using an image specifier --
|
|
2743 see `image-specifier-p'.
|
20
|
2744 */
|
|
2745 (object))
|
0
|
2746 {
|
|
2747 return GLYPHP (object) ? Qt : Qnil;
|
|
2748 }
|
|
2749
|
20
|
2750 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
|
0
|
2751 Return the type of the given glyph.
|
|
2752 The return value will be one of 'buffer, 'pointer, or 'icon.
|
20
|
2753 */
|
|
2754 (glyph))
|
0
|
2755 {
|
|
2756 CHECK_GLYPH (glyph);
|
|
2757 switch (XGLYPH_TYPE (glyph))
|
|
2758 {
|
185
|
2759 case GLYPH_BUFFER: return Qbuffer;
|
|
2760 case GLYPH_POINTER: return Qpointer;
|
|
2761 case GLYPH_ICON: return Qicon;
|
0
|
2762 default:
|
|
2763 abort ();
|
185
|
2764 return Qnil; /* not reached */
|
0
|
2765 }
|
|
2766 }
|
|
2767
|
|
2768 /*****************************************************************************
|
|
2769 glyph_width
|
|
2770
|
|
2771 Return the width of the given GLYPH on the given WINDOW. If the
|
|
2772 instance is a string then the width is calculated using the font of
|
|
2773 the given FACE, unless a face is defined by the glyph itself.
|
|
2774 ****************************************************************************/
|
|
2775 unsigned short
|
|
2776 glyph_width (Lisp_Object glyph, Lisp_Object frame_face,
|
|
2777 face_index window_findex, Lisp_Object window)
|
|
2778 {
|
|
2779 Lisp_Object instance;
|
|
2780 Lisp_Object frame = XWINDOW (window)->frame;
|
|
2781
|
|
2782 /* #### We somehow need to distinguish between the user causing this
|
|
2783 error condition and a bug causing it. */
|
|
2784 if (!GLYPHP (glyph))
|
|
2785 return 0;
|
|
2786 else
|
|
2787 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
|
|
2788
|
|
2789 if (!IMAGE_INSTANCEP (instance))
|
|
2790 return 0;
|
|
2791
|
|
2792 switch (XIMAGE_INSTANCE_TYPE (instance))
|
|
2793 {
|
|
2794 case IMAGE_TEXT:
|
|
2795 {
|
|
2796 Lisp_Object str = XIMAGE_INSTANCE_TEXT_STRING (instance);
|
|
2797 Lisp_Object private_face = XGLYPH_FACE(glyph);
|
|
2798
|
|
2799 if (!NILP (private_face))
|
173
|
2800 return redisplay_frame_text_width_string (XFRAME (frame),
|
|
2801 private_face,
|
|
2802 0, str, 0, -1);
|
0
|
2803 else
|
|
2804 if (!NILP (frame_face))
|
173
|
2805 return redisplay_frame_text_width_string (XFRAME (frame),
|
|
2806 frame_face,
|
|
2807 0, str, 0, -1);
|
0
|
2808 else
|
173
|
2809 return redisplay_text_width_string (XWINDOW (window),
|
|
2810 window_findex,
|
|
2811 0, str, 0, -1);
|
0
|
2812 }
|
|
2813
|
|
2814 case IMAGE_MONO_PIXMAP:
|
|
2815 case IMAGE_COLOR_PIXMAP:
|
|
2816 case IMAGE_POINTER:
|
|
2817 return XIMAGE_INSTANCE_PIXMAP_WIDTH (instance);
|
|
2818
|
|
2819 case IMAGE_NOTHING:
|
|
2820 return 0;
|
|
2821
|
|
2822 case IMAGE_SUBWINDOW:
|
|
2823 /* #### implement me */
|
|
2824 return 0;
|
|
2825
|
|
2826 default:
|
|
2827 abort ();
|
|
2828 return 0;
|
|
2829 }
|
|
2830 }
|
|
2831
|
20
|
2832 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
|
0
|
2833 Return the width of GLYPH on WINDOW.
|
|
2834 This may not be exact as it does not take into account all of the context
|
|
2835 that redisplay will.
|
20
|
2836 */
|
|
2837 (glyph, window))
|
0
|
2838 {
|
|
2839 XSETWINDOW (window, decode_window (window));
|
|
2840 CHECK_GLYPH (glyph);
|
|
2841
|
173
|
2842 return make_int (glyph_width (glyph, Qnil, DEFAULT_INDEX, window));
|
0
|
2843 }
|
|
2844
|
|
2845 #define RETURN_ASCENT 0
|
|
2846 #define RETURN_DESCENT 1
|
|
2847 #define RETURN_HEIGHT 2
|
|
2848
|
|
2849 Lisp_Object
|
|
2850 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
|
|
2851 Error_behavior errb, int no_quit)
|
|
2852 {
|
|
2853 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
|
|
2854
|
|
2855 /* This can never return Qunbound. All glyphs have 'nothing as
|
|
2856 a fallback. */
|
|
2857 return specifier_instance (specifier, Qunbound, domain, errb, no_quit, 0,
|
|
2858 Qzero);
|
|
2859 }
|
|
2860
|
|
2861 static unsigned short
|
|
2862 glyph_height_internal (Lisp_Object glyph, Lisp_Object frame_face,
|
|
2863 face_index window_findex, Lisp_Object window,
|
|
2864 int function)
|
|
2865 {
|
|
2866 Lisp_Object instance;
|
|
2867 Lisp_Object frame = XWINDOW (window)->frame;
|
|
2868
|
|
2869 if (!GLYPHP (glyph))
|
|
2870 return 0;
|
|
2871 else
|
|
2872 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
|
|
2873
|
|
2874 if (!IMAGE_INSTANCEP (instance))
|
|
2875 return 0;
|
|
2876
|
|
2877 switch (XIMAGE_INSTANCE_TYPE (instance))
|
|
2878 {
|
|
2879 case IMAGE_TEXT:
|
|
2880 {
|
|
2881 struct font_metric_info fm;
|
|
2882 Lisp_Object string = XIMAGE_INSTANCE_TEXT_STRING (instance);
|
|
2883 unsigned char charsets[NUM_LEADING_BYTES];
|
|
2884 struct face_cachel frame_cachel;
|
|
2885 struct face_cachel *cachel;
|
|
2886
|
|
2887 find_charsets_in_bufbyte_string (charsets,
|
82
|
2888 XSTRING_DATA (string),
|
14
|
2889 XSTRING_LENGTH (string));
|
0
|
2890
|
|
2891 if (!NILP (frame_face))
|
|
2892 {
|
|
2893 reset_face_cachel (&frame_cachel);
|
|
2894 update_face_cachel_data (&frame_cachel, frame, frame_face);
|
|
2895 cachel = &frame_cachel;
|
|
2896 }
|
|
2897 else
|
|
2898 cachel = WINDOW_FACE_CACHEL (XWINDOW (window), window_findex);
|
|
2899 ensure_face_cachel_complete (cachel, window, charsets);
|
|
2900
|
|
2901 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
|
173
|
2902
|
185
|
2903 switch (function)
|
|
2904 {
|
|
2905 case RETURN_ASCENT: return fm.ascent;
|
|
2906 case RETURN_DESCENT: return fm.descent;
|
|
2907 case RETURN_HEIGHT: return fm.ascent + fm.descent;
|
|
2908 default:
|
|
2909 abort ();
|
|
2910 return 0; /* not reached */
|
|
2911 }
|
0
|
2912 }
|
|
2913
|
|
2914 case IMAGE_MONO_PIXMAP:
|
|
2915 case IMAGE_COLOR_PIXMAP:
|
|
2916 case IMAGE_POINTER:
|
|
2917 /* #### Ugh ugh ugh -- temporary crap */
|
|
2918 if (function == RETURN_ASCENT || function == RETURN_HEIGHT)
|
|
2919 return XIMAGE_INSTANCE_PIXMAP_HEIGHT (instance);
|
|
2920 else
|
|
2921 return 0;
|
|
2922
|
|
2923 case IMAGE_NOTHING:
|
|
2924 return 0;
|
|
2925
|
|
2926 case IMAGE_SUBWINDOW:
|
|
2927 /* #### implement me */
|
|
2928 return 0;
|
|
2929
|
|
2930 default:
|
|
2931 abort ();
|
|
2932 return 0;
|
|
2933 }
|
|
2934 }
|
|
2935
|
|
2936 unsigned short
|
|
2937 glyph_ascent (Lisp_Object glyph, Lisp_Object frame_face,
|
|
2938 face_index window_findex, Lisp_Object window)
|
|
2939 {
|
|
2940 return glyph_height_internal (glyph, frame_face, window_findex, window,
|
|
2941 RETURN_ASCENT);
|
|
2942 }
|
|
2943
|
|
2944 unsigned short
|
|
2945 glyph_descent (Lisp_Object glyph, Lisp_Object frame_face,
|
|
2946 face_index window_findex, Lisp_Object window)
|
|
2947 {
|
|
2948 return glyph_height_internal (glyph, frame_face, window_findex, window,
|
|
2949 RETURN_DESCENT);
|
|
2950 }
|
|
2951
|
|
2952 /* strictly a convenience function. */
|
|
2953 unsigned short
|
|
2954 glyph_height (Lisp_Object glyph, Lisp_Object frame_face,
|
|
2955 face_index window_findex, Lisp_Object window)
|
|
2956 {
|
|
2957 return glyph_height_internal (glyph, frame_face, window_findex, window,
|
|
2958 RETURN_HEIGHT);
|
|
2959 }
|
|
2960
|
20
|
2961 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
|
0
|
2962 Return the ascent value of GLYPH on WINDOW.
|
|
2963 This may not be exact as it does not take into account all of the context
|
|
2964 that redisplay will.
|
20
|
2965 */
|
|
2966 (glyph, window))
|
0
|
2967 {
|
|
2968 XSETWINDOW (window, decode_window (window));
|
|
2969 CHECK_GLYPH (glyph);
|
|
2970
|
173
|
2971 return make_int (glyph_ascent (glyph, Qnil, DEFAULT_INDEX, window));
|
0
|
2972 }
|
|
2973
|
20
|
2974 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
|
0
|
2975 Return the descent value of GLYPH on WINDOW.
|
|
2976 This may not be exact as it does not take into account all of the context
|
|
2977 that redisplay will.
|
20
|
2978 */
|
|
2979 (glyph, window))
|
0
|
2980 {
|
|
2981 XSETWINDOW (window, decode_window (window));
|
|
2982 CHECK_GLYPH (glyph);
|
|
2983
|
173
|
2984 return make_int (glyph_descent (glyph, Qnil, DEFAULT_INDEX, window));
|
0
|
2985 }
|
|
2986
|
|
2987 /* This is redundant but I bet a lot of people expect it to exist. */
|
20
|
2988 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
|
0
|
2989 Return the height of GLYPH on WINDOW.
|
|
2990 This may not be exact as it does not take into account all of the context
|
|
2991 that redisplay will.
|
20
|
2992 */
|
|
2993 (glyph, window))
|
0
|
2994 {
|
|
2995 XSETWINDOW (window, decode_window (window));
|
|
2996 CHECK_GLYPH (glyph);
|
|
2997
|
173
|
2998 return make_int (glyph_height (glyph, Qnil, DEFAULT_INDEX, window));
|
0
|
2999 }
|
|
3000
|
|
3001 #undef RETURN_ASCENT
|
|
3002 #undef RETURN_DESCENT
|
|
3003 #undef RETURN_HEIGHT
|
|
3004
|
|
3005 /* #### do we need to cache this info to speed things up? */
|
|
3006
|
|
3007 Lisp_Object
|
|
3008 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
|
|
3009 {
|
|
3010 if (!GLYPHP (glyph))
|
|
3011 return Qnil;
|
|
3012 else
|
|
3013 {
|
|
3014 Lisp_Object retval =
|
|
3015 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
|
|
3016 /* #### look into ERROR_ME_NOT */
|
|
3017 Qunbound, domain, ERROR_ME_NOT,
|
|
3018 0, Qzero);
|
|
3019 if (!NILP (retval) && !INTP (retval))
|
|
3020 retval = Qnil;
|
|
3021 else if (INTP (retval))
|
|
3022 {
|
|
3023 if (XINT (retval) < 0)
|
|
3024 retval = Qzero;
|
|
3025 if (XINT (retval) > 100)
|
|
3026 retval = make_int (100);
|
|
3027 }
|
|
3028 return retval;
|
|
3029 }
|
|
3030 }
|
|
3031
|
|
3032 Lisp_Object
|
|
3033 glyph_face (Lisp_Object glyph, Lisp_Object domain)
|
|
3034 {
|
|
3035 /* #### Domain parameter not currently used but it will be */
|
185
|
3036 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
|
0
|
3037 }
|
|
3038
|
|
3039 int
|
|
3040 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
|
|
3041 {
|
|
3042 if (!GLYPHP (glyph))
|
|
3043 return 0;
|
|
3044 else
|
173
|
3045 return !NILP (specifier_instance_no_quit
|
|
3046 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
|
|
3047 /* #### look into ERROR_ME_NOT */
|
|
3048 ERROR_ME_NOT, 0, Qzero));
|
0
|
3049 }
|
|
3050
|
|
3051 static void
|
|
3052 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
|
|
3053 Lisp_Object locale)
|
|
3054 {
|
|
3055 if (XGLYPH (glyph)->after_change)
|
|
3056 (XGLYPH (glyph)->after_change) (glyph, property, locale);
|
|
3057 }
|
|
3058
|
|
3059
|
|
3060 /*****************************************************************************
|
|
3061 * glyph cachel functions *
|
|
3062 *****************************************************************************/
|
|
3063
|
|
3064 /*
|
|
3065 #### All of this is 95% copied from face cachels.
|
|
3066 Consider consolidating.
|
|
3067 #### We need to add a dirty flag to the glyphs.
|
|
3068 */
|
|
3069
|
|
3070 void
|
|
3071 mark_glyph_cachels (glyph_cachel_dynarr *elements,
|
|
3072 void (*markobj) (Lisp_Object))
|
|
3073 {
|
|
3074 int elt;
|
|
3075
|
|
3076 if (!elements)
|
|
3077 return;
|
|
3078
|
|
3079 for (elt = 0; elt < Dynarr_length (elements); elt++)
|
|
3080 {
|
|
3081 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
|
|
3082 ((markobj) (cachel->glyph));
|
|
3083 }
|
|
3084 }
|
|
3085
|
|
3086 static void
|
|
3087 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
|
|
3088 struct glyph_cachel *cachel)
|
|
3089 {
|
|
3090 /* #### This should be || !cachel->updated */
|
|
3091 if (NILP (cachel->glyph) || !EQ (cachel->glyph, glyph))
|
|
3092 {
|
272
|
3093 Lisp_Object window;
|
0
|
3094
|
|
3095 XSETWINDOW (window, w);
|
|
3096
|
|
3097 /* #### This could be sped up if we redid things to grab the glyph
|
|
3098 instantiation and passed it to the size functions. */
|
185
|
3099 cachel->glyph = glyph;
|
|
3100 cachel->width = glyph_width (glyph, Qnil, DEFAULT_INDEX, window);
|
|
3101 cachel->ascent = glyph_ascent (glyph, Qnil, DEFAULT_INDEX, window);
|
|
3102 cachel->descent = glyph_descent (glyph, Qnil, DEFAULT_INDEX, window);
|
0
|
3103 }
|
|
3104
|
|
3105 cachel->updated = 1;
|
|
3106 }
|
|
3107
|
|
3108 static void
|
|
3109 add_glyph_cachel (struct window *w, Lisp_Object glyph)
|
|
3110 {
|
|
3111 struct glyph_cachel new_cachel;
|
|
3112
|
272
|
3113 xzero (new_cachel);
|
0
|
3114 new_cachel.glyph = Qnil;
|
|
3115
|
|
3116 update_glyph_cachel_data (w, glyph, &new_cachel);
|
|
3117 Dynarr_add (w->glyph_cachels, new_cachel);
|
|
3118 }
|
|
3119
|
|
3120 static glyph_index
|
|
3121 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
|
|
3122 {
|
|
3123 int elt;
|
|
3124
|
|
3125 if (noninteractive)
|
|
3126 return 0;
|
|
3127
|
|
3128 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
3129 {
|
|
3130 struct glyph_cachel *cachel =
|
|
3131 Dynarr_atp (w->glyph_cachels, elt);
|
|
3132
|
|
3133 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
|
|
3134 {
|
|
3135 if (!cachel->updated)
|
|
3136 update_glyph_cachel_data (w, glyph, cachel);
|
|
3137 return elt;
|
|
3138 }
|
|
3139 }
|
|
3140
|
|
3141 /* If we didn't find the glyph, add it and then return its index. */
|
|
3142 add_glyph_cachel (w, glyph);
|
|
3143 return elt;
|
|
3144 }
|
|
3145
|
|
3146 void
|
|
3147 reset_glyph_cachels (struct window *w)
|
|
3148 {
|
|
3149 Dynarr_reset (w->glyph_cachels);
|
|
3150 get_glyph_cachel_index (w, Vcontinuation_glyph);
|
|
3151 get_glyph_cachel_index (w, Vtruncation_glyph);
|
|
3152 get_glyph_cachel_index (w, Vhscroll_glyph);
|
|
3153 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
|
|
3154 get_glyph_cachel_index (w, Voctal_escape_glyph);
|
|
3155 get_glyph_cachel_index (w, Vinvisible_text_glyph);
|
|
3156 }
|
|
3157
|
|
3158 void
|
|
3159 mark_glyph_cachels_as_not_updated (struct window *w)
|
|
3160 {
|
|
3161 int elt;
|
|
3162
|
|
3163 /* We need to have a dirty flag to tell if the glyph has changed.
|
|
3164 We can check to see if each glyph variable is actually a
|
|
3165 completely different glyph, though. */
|
|
3166 #define FROB(glyph_obj, gindex) \
|
|
3167 update_glyph_cachel_data (w, glyph_obj, \
|
|
3168 Dynarr_atp (w->glyph_cachels, gindex))
|
|
3169
|
|
3170 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
|
|
3171 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
|
|
3172 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
|
|
3173 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
|
|
3174 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
|
|
3175 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
|
|
3176 #undef FROB
|
|
3177
|
|
3178 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
3179 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
|
|
3180 }
|
|
3181
|
|
3182 #ifdef MEMORY_USAGE_STATS
|
|
3183
|
|
3184 int
|
|
3185 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
|
|
3186 struct overhead_stats *ovstats)
|
|
3187 {
|
|
3188 int total = 0;
|
|
3189
|
|
3190 if (glyph_cachels)
|
|
3191 total += Dynarr_memory_usage (glyph_cachels, ovstats);
|
|
3192
|
|
3193 return total;
|
|
3194 }
|
|
3195
|
|
3196 #endif /* MEMORY_USAGE_STATS */
|
|
3197
|
|
3198
|
|
3199 /*****************************************************************************
|
|
3200 * display tables *
|
|
3201 *****************************************************************************/
|
|
3202
|
|
3203 /* Get the display table for use currently on window W with face FACE.
|
|
3204 Precedence:
|
|
3205
|
|
3206 -- FACE's display table
|
|
3207 -- W's display table (comes from specifier `current-display-table')
|
|
3208
|
|
3209 Ignore the specified tables if they are not valid;
|
|
3210 if no valid table is specified, return 0. */
|
|
3211
|
|
3212 struct Lisp_Vector *
|
|
3213 get_display_table (struct window *w, face_index findex)
|
|
3214 {
|
272
|
3215 Lisp_Object tem;
|
0
|
3216
|
|
3217 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
|
173
|
3218 if (VECTORP (tem) && XVECTOR_LENGTH (tem) == DISP_TABLE_SIZE)
|
0
|
3219 return XVECTOR (tem);
|
|
3220
|
|
3221 tem = w->display_table;
|
173
|
3222 if (VECTORP (tem) && XVECTOR_LENGTH (tem) == DISP_TABLE_SIZE)
|
0
|
3223 return XVECTOR (tem);
|
|
3224
|
|
3225 return 0;
|
|
3226 }
|
|
3227
|
|
3228
|
|
3229 /*****************************************************************************
|
|
3230 * initialization *
|
|
3231 *****************************************************************************/
|
|
3232
|
|
3233 void
|
|
3234 syms_of_glyphs (void)
|
|
3235 {
|
|
3236 /* image instantiators */
|
|
3237
|
20
|
3238 DEFSUBR (Fimage_instantiator_format_list);
|
|
3239 DEFSUBR (Fvalid_image_instantiator_format_p);
|
|
3240 DEFSUBR (Fset_console_type_image_conversion_list);
|
|
3241 DEFSUBR (Fconsole_type_image_conversion_list);
|
0
|
3242
|
|
3243 defkeyword (&Q_file, ":file");
|
|
3244 defkeyword (&Q_data, ":data");
|
|
3245 defkeyword (&Q_face, ":face");
|
|
3246
|
276
|
3247 #ifdef HAVE_XPM
|
|
3248 defkeyword (&Q_color_symbols, ":color-symbols");
|
|
3249 #endif
|
288
|
3250 #ifdef HAVE_WINDOW_SYSTEM
|
|
3251 defkeyword (&Q_mask_file, ":mask-file");
|
|
3252 defkeyword (&Q_mask_data, ":mask-data");
|
|
3253 defkeyword (&Q_hotspot_x, ":hotspot-x");
|
|
3254 defkeyword (&Q_hotspot_y, ":hotspot-y");
|
|
3255 defkeyword (&Q_foreground, ":foreground");
|
|
3256 defkeyword (&Q_background, ":background");
|
|
3257 #endif
|
0
|
3258 /* image specifiers */
|
|
3259
|
20
|
3260 DEFSUBR (Fimage_specifier_p);
|
0
|
3261 /* Qimage in general.c */
|
|
3262
|
|
3263 /* image instances */
|
|
3264
|
|
3265 defsymbol (&Qimage_instancep, "image-instance-p");
|
|
3266
|
|
3267 defsymbol (&Qnothing_image_instance_p, "nothing-image-instance-p");
|
|
3268 defsymbol (&Qtext_image_instance_p, "text-image-instance-p");
|
|
3269 defsymbol (&Qmono_pixmap_image_instance_p, "mono-pixmap-image-instance-p");
|
|
3270 defsymbol (&Qcolor_pixmap_image_instance_p, "color-pixmap-image-instance-p");
|
|
3271 defsymbol (&Qpointer_image_instance_p, "pointer-image-instance-p");
|
|
3272 defsymbol (&Qsubwindow_image_instance_p, "subwindow-image-instance-p");
|
|
3273
|
20
|
3274 DEFSUBR (Fmake_image_instance);
|
|
3275 DEFSUBR (Fimage_instance_p);
|
|
3276 DEFSUBR (Fimage_instance_type);
|
|
3277 DEFSUBR (Fvalid_image_instance_type_p);
|
|
3278 DEFSUBR (Fimage_instance_type_list);
|
|
3279 DEFSUBR (Fimage_instance_name);
|
|
3280 DEFSUBR (Fimage_instance_string);
|
|
3281 DEFSUBR (Fimage_instance_file_name);
|
|
3282 DEFSUBR (Fimage_instance_mask_file_name);
|
|
3283 DEFSUBR (Fimage_instance_depth);
|
|
3284 DEFSUBR (Fimage_instance_height);
|
|
3285 DEFSUBR (Fimage_instance_width);
|
|
3286 DEFSUBR (Fimage_instance_hotspot_x);
|
|
3287 DEFSUBR (Fimage_instance_hotspot_y);
|
|
3288 DEFSUBR (Fimage_instance_foreground);
|
|
3289 DEFSUBR (Fimage_instance_background);
|
|
3290 DEFSUBR (Fcolorize_image_instance);
|
0
|
3291
|
|
3292 /* Qnothing defined as part of the "nothing" image-instantiator
|
|
3293 type. */
|
|
3294 /* Qtext defined in general.c */
|
|
3295 defsymbol (&Qmono_pixmap, "mono-pixmap");
|
|
3296 defsymbol (&Qcolor_pixmap, "color-pixmap");
|
|
3297 /* Qpointer defined in general.c */
|
|
3298 defsymbol (&Qsubwindow, "subwindow");
|
|
3299
|
|
3300 /* glyphs */
|
|
3301
|
|
3302 defsymbol (&Qglyphp, "glyphp");
|
|
3303 defsymbol (&Qcontrib_p, "contrib-p");
|
|
3304 defsymbol (&Qbaseline, "baseline");
|
|
3305
|
|
3306 defsymbol (&Qbuffer_glyph_p, "buffer-glyph-p");
|
|
3307 defsymbol (&Qpointer_glyph_p, "pointer-glyph-p");
|
|
3308 defsymbol (&Qicon_glyph_p, "icon-glyph-p");
|
|
3309
|
|
3310 defsymbol (&Qconst_glyph_variable, "const-glyph-variable");
|
|
3311
|
20
|
3312 DEFSUBR (Fglyph_type);
|
|
3313 DEFSUBR (Fvalid_glyph_type_p);
|
|
3314 DEFSUBR (Fglyph_type_list);
|
|
3315 DEFSUBR (Fglyphp);
|
|
3316 DEFSUBR (Fmake_glyph_internal);
|
|
3317 DEFSUBR (Fglyph_width);
|
|
3318 DEFSUBR (Fglyph_ascent);
|
|
3319 DEFSUBR (Fglyph_descent);
|
|
3320 DEFSUBR (Fglyph_height);
|
0
|
3321
|
|
3322 /* Qbuffer defined in general.c. */
|
|
3323 /* Qpointer defined above */
|
269
|
3324
|
|
3325 /* Errors */
|
|
3326 deferror (&Qimage_conversion_error,
|
|
3327 "image-conversion-error",
|
|
3328 "image-conversion error", Qio_error);
|
|
3329
|
0
|
3330 }
|
|
3331
|
|
3332 void
|
|
3333 specifier_type_create_image (void)
|
|
3334 {
|
|
3335 /* image specifiers */
|
|
3336
|
|
3337 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
|
|
3338
|
|
3339 SPECIFIER_HAS_METHOD (image, create);
|
|
3340 SPECIFIER_HAS_METHOD (image, mark);
|
|
3341 SPECIFIER_HAS_METHOD (image, instantiate);
|
|
3342 SPECIFIER_HAS_METHOD (image, validate);
|
|
3343 SPECIFIER_HAS_METHOD (image, after_change);
|
|
3344 SPECIFIER_HAS_METHOD (image, going_to_add);
|
|
3345 }
|
|
3346
|
|
3347 void
|
|
3348 image_instantiator_format_create (void)
|
|
3349 {
|
|
3350 /* image instantiators */
|
|
3351
|
|
3352 the_image_instantiator_format_entry_dynarr =
|
185
|
3353 Dynarr_new (image_instantiator_format_entry);
|
0
|
3354
|
|
3355 Vimage_instantiator_format_list = Qnil;
|
|
3356 staticpro (&Vimage_instantiator_format_list);
|
|
3357
|
|
3358 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
|
|
3359
|
|
3360 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
|
|
3361 IIFORMAT_HAS_METHOD (nothing, instantiate);
|
|
3362
|
|
3363 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
|
|
3364
|
|
3365 IIFORMAT_HAS_METHOD (inherit, validate);
|
|
3366 IIFORMAT_HAS_METHOD (inherit, normalize);
|
|
3367 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
|
|
3368 IIFORMAT_HAS_METHOD (inherit, instantiate);
|
|
3369
|
|
3370 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
|
|
3371
|
|
3372 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
|
|
3373
|
|
3374 IIFORMAT_HAS_METHOD (string, validate);
|
|
3375 IIFORMAT_HAS_METHOD (string, possible_dest_types);
|
|
3376 IIFORMAT_HAS_METHOD (string, instantiate);
|
|
3377
|
|
3378 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
|
|
3379
|
|
3380 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
|
|
3381
|
|
3382 IIFORMAT_HAS_METHOD (formatted_string, validate);
|
|
3383 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
|
|
3384 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
|
|
3385
|
|
3386 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
|
276
|
3387
|
288
|
3388 #ifdef HAVE_WINDOW_SYSTEM
|
|
3389 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
3390
|
|
3391 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
3392 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
3393 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
3394 IIFORMAT_HAS_METHOD (xbm, instantiate);
|
|
3395
|
|
3396 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
3397 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
3398 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
3399 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
3400 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
3401 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
3402 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
3403 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
3404 #endif /* HAVE_WINDOW_SYSTEM */
|
|
3405
|
276
|
3406 #ifdef HAVE_XPM
|
|
3407 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
|
|
3408
|
|
3409 IIFORMAT_HAS_METHOD (xpm, validate);
|
|
3410 IIFORMAT_HAS_METHOD (xpm, normalize);
|
|
3411 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
|
|
3412 IIFORMAT_HAS_METHOD (xpm, instantiate);
|
|
3413
|
|
3414 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
|
|
3415 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
|
|
3416 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
|
284
|
3417 #endif /* HAVE_XPM */
|
0
|
3418 }
|
|
3419
|
|
3420 void
|
|
3421 vars_of_glyphs (void)
|
|
3422 {
|
|
3423 Vthe_nothing_vector = vector1 (Qnothing);
|
|
3424 staticpro (&Vthe_nothing_vector);
|
|
3425
|
|
3426 /* image instances */
|
|
3427
|
|
3428 Vimage_instance_type_list = list6 (Qnothing, Qtext, Qmono_pixmap,
|
|
3429 Qcolor_pixmap, Qpointer, Qsubwindow);
|
|
3430 staticpro (&Vimage_instance_type_list);
|
|
3431
|
|
3432 /* glyphs */
|
|
3433
|
|
3434 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
|
|
3435 staticpro (&Vglyph_type_list);
|
|
3436
|
|
3437 /* The octal-escape glyph, control-arrow-glyph and
|
|
3438 invisible-text-glyph are completely initialized in glyphs.el */
|
|
3439
|
|
3440 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
|
|
3441 What to prefix character codes displayed in octal with.
|
|
3442 */);
|
|
3443 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
3444
|
|
3445 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
|
|
3446 What to use as an arrow for control characters.
|
|
3447 */);
|
|
3448 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
3449 redisplay_glyph_changed);
|
|
3450
|
|
3451 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
|
|
3452 What to use to indicate the presence of invisible text.
|
|
3453 This is the glyph that is displayed when an ellipsis is called for
|
|
3454 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
|
185
|
3455 Normally this is three dots ("...").
|
0
|
3456 */);
|
|
3457 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
3458 redisplay_glyph_changed);
|
|
3459
|
|
3460 /* Partially initialized in glyphs.el */
|
|
3461 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
|
|
3462 What to display at the beginning of horizontally scrolled lines.
|
|
3463 */);
|
|
3464 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
276
|
3465
|
|
3466 #ifdef HAVE_XPM
|
|
3467 Fprovide (Qxpm);
|
|
3468
|
|
3469 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
|
|
3470 Definitions of logical color-names used when reading XPM files.
|
|
3471 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
|
|
3472 The COLOR-NAME should be a string, which is the name of the color to define;
|
|
3473 the FORM should evaluate to a `color' specifier object, or a string to be
|
|
3474 passed to `make-color-instance'. If a loaded XPM file references a symbolic
|
|
3475 color called COLOR-NAME, it will display as the computed color instead.
|
|
3476
|
|
3477 The default value of this variable defines the logical color names
|
|
3478 \"foreground\" and \"background\" to be the colors of the `default' face.
|
|
3479 */ );
|
|
3480 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
|
284
|
3481 #endif /* HAVE_XPM */
|
0
|
3482 }
|
|
3483
|
|
3484 void
|
|
3485 specifier_vars_of_glyphs (void)
|
|
3486 {
|
249
|
3487 /* #### Can we GC here? The set_specifier_* calls definitely need */
|
|
3488 /* protection. */
|
0
|
3489 /* display tables */
|
|
3490
|
|
3491 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
|
|
3492 *The display table currently in use.
|
|
3493 This is a specifier; use `set-specifier' to change it.
|
|
3494 The display table is a vector created with `make-display-table'.
|
|
3495 The 256 elements control how to display each possible text character.
|
|
3496 Each value should be a string, a glyph, a vector or nil.
|
|
3497 If a value is a vector it must be composed only of strings and glyphs.
|
|
3498 nil means display the character in the default fashion.
|
|
3499 Faces can have their own, overriding display table.
|
|
3500 */ );
|
116
|
3501 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
|
0
|
3502 set_specifier_fallback (Vcurrent_display_table,
|
|
3503 list1 (Fcons (Qnil, Qnil)));
|
|
3504 set_specifier_caching (Vcurrent_display_table,
|
|
3505 slot_offset (struct window,
|
|
3506 display_table),
|
|
3507 some_window_value_changed,
|
|
3508 0, 0);
|
|
3509 }
|
|
3510
|
|
3511 void
|
|
3512 complex_vars_of_glyphs (void)
|
|
3513 {
|
|
3514 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
3515 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
|
|
3516 What to display at the end of truncated lines.
|
|
3517 */ );
|
|
3518 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
3519
|
|
3520 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
3521 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
|
|
3522 What to display at the end of wrapped lines.
|
|
3523 */ );
|
|
3524 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
3525
|
|
3526 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
3527 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
|
|
3528 The glyph used to display the XEmacs logo at startup.
|
|
3529 */ );
|
|
3530 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
|
|
3531 }
|