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