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