428
|
1 /* Generic glyph/image implementation + display tables
|
|
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995 Tinker Systems
|
793
|
4 Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing
|
428
|
5 Copyright (C) 1995 Sun Microsystems
|
438
|
6 Copyright (C) 1998, 1999, 2000 Andy Piper
|
428
|
7
|
|
8 This file is part of XEmacs.
|
|
9
|
|
10 XEmacs is free software; you can redistribute it and/or modify it
|
|
11 under the terms of the GNU General Public License as published by the
|
|
12 Free Software Foundation; either version 2, or (at your option) any
|
|
13 later version.
|
|
14
|
|
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
18 for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with XEmacs; see the file COPYING. If not, write to
|
|
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 Boston, MA 02111-1307, USA. */
|
|
24
|
|
25 /* Synched up with: Not in FSF. */
|
|
26
|
438
|
27 /* Written by Ben Wing and Chuck Thompson. Heavily modified /
|
|
28 rewritten by Andy Piper. */
|
428
|
29
|
|
30 #include <config.h>
|
|
31 #include "lisp.h"
|
|
32
|
442
|
33 #include "blocktype.h"
|
428
|
34 #include "buffer.h"
|
442
|
35 #include "chartab.h"
|
872
|
36 #include "device-impl.h"
|
428
|
37 #include "elhash.h"
|
|
38 #include "faces.h"
|
872
|
39 #include "frame-impl.h"
|
442
|
40 #include "glyphs.h"
|
800
|
41 #include "gui.h"
|
428
|
42 #include "insdel.h"
|
872
|
43 #include "objects-impl.h"
|
428
|
44 #include "opaque.h"
|
442
|
45 #include "rangetab.h"
|
428
|
46 #include "redisplay.h"
|
442
|
47 #include "specifier.h"
|
428
|
48 #include "window.h"
|
|
49
|
771
|
50 #include "sysfile.h"
|
|
51
|
462
|
52 #if defined (HAVE_XPM) && !defined (HAVE_GTK)
|
428
|
53 #include <X11/xpm.h>
|
|
54 #endif
|
|
55
|
|
56 Lisp_Object Qimage_conversion_error;
|
|
57
|
|
58 Lisp_Object Qglyphp, Qcontrib_p, Qbaseline;
|
|
59 Lisp_Object Qbuffer_glyph_p, Qpointer_glyph_p, Qicon_glyph_p;
|
|
60 Lisp_Object Qnothing_image_instance_p, Qtext_image_instance_p;
|
|
61 Lisp_Object Qmono_pixmap_image_instance_p;
|
|
62 Lisp_Object Qcolor_pixmap_image_instance_p;
|
|
63 Lisp_Object Qpointer_image_instance_p;
|
|
64 Lisp_Object Qsubwindow_image_instance_p;
|
|
65 Lisp_Object Qwidget_image_instance_p;
|
|
66 Lisp_Object Qconst_glyph_variable;
|
|
67 Lisp_Object Qmono_pixmap, Qcolor_pixmap, Qsubwindow;
|
|
68 Lisp_Object Q_file, Q_data, Q_face, Q_pixel_width, Q_pixel_height;
|
|
69 Lisp_Object Qformatted_string;
|
|
70 Lisp_Object Vcurrent_display_table;
|
|
71 Lisp_Object Vtruncation_glyph, Vcontinuation_glyph, Voctal_escape_glyph;
|
|
72 Lisp_Object Vcontrol_arrow_glyph, Vinvisible_text_glyph, Vhscroll_glyph;
|
|
73 Lisp_Object Vxemacs_logo;
|
|
74 Lisp_Object Vthe_nothing_vector;
|
|
75 Lisp_Object Vimage_instantiator_format_list;
|
|
76 Lisp_Object Vimage_instance_type_list;
|
|
77 Lisp_Object Vglyph_type_list;
|
|
78
|
|
79 int disable_animated_pixmaps;
|
|
80
|
|
81 DEFINE_IMAGE_INSTANTIATOR_FORMAT (nothing);
|
|
82 DEFINE_IMAGE_INSTANTIATOR_FORMAT (inherit);
|
|
83 DEFINE_IMAGE_INSTANTIATOR_FORMAT (string);
|
|
84 DEFINE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
|
|
85 DEFINE_IMAGE_INSTANTIATOR_FORMAT (subwindow);
|
|
86 DEFINE_IMAGE_INSTANTIATOR_FORMAT (text);
|
442
|
87 DEFINE_IMAGE_INSTANTIATOR_FORMAT (pointer);
|
428
|
88
|
|
89 #ifdef HAVE_WINDOW_SYSTEM
|
|
90 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
|
|
91 Lisp_Object Qxbm;
|
|
92
|
|
93 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
|
|
94 Lisp_Object Q_foreground, Q_background;
|
|
95 #ifndef BitmapSuccess
|
|
96 #define BitmapSuccess 0
|
|
97 #define BitmapOpenFailed 1
|
|
98 #define BitmapFileInvalid 2
|
|
99 #define BitmapNoMemory 3
|
|
100 #endif
|
|
101 #endif
|
|
102
|
|
103 #ifdef HAVE_XFACE
|
|
104 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
|
|
105 Lisp_Object Qxface;
|
|
106 #endif
|
|
107
|
|
108 #ifdef HAVE_XPM
|
|
109 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
|
|
110 Lisp_Object Qxpm;
|
|
111 Lisp_Object Q_color_symbols;
|
|
112 #endif
|
|
113
|
|
114 typedef struct image_instantiator_format_entry image_instantiator_format_entry;
|
|
115 struct image_instantiator_format_entry
|
|
116 {
|
|
117 Lisp_Object symbol;
|
|
118 Lisp_Object device;
|
|
119 struct image_instantiator_methods *meths;
|
|
120 };
|
|
121
|
|
122 typedef struct
|
|
123 {
|
|
124 Dynarr_declare (struct image_instantiator_format_entry);
|
|
125 } image_instantiator_format_entry_dynarr;
|
|
126
|
442
|
127 /* This contains one entry per format, per device it's defined on. */
|
428
|
128 image_instantiator_format_entry_dynarr *
|
|
129 the_image_instantiator_format_entry_dynarr;
|
|
130
|
442
|
131 static Lisp_Object allocate_image_instance (Lisp_Object governing_domain,
|
|
132 Lisp_Object parent,
|
|
133 Lisp_Object instantiator);
|
428
|
134 static void image_validate (Lisp_Object instantiator);
|
|
135 static void glyph_property_was_changed (Lisp_Object glyph,
|
|
136 Lisp_Object property,
|
|
137 Lisp_Object locale);
|
442
|
138 static void set_image_instance_dirty_p (Lisp_Object instance, int dirty);
|
428
|
139 static void register_ignored_expose (struct frame* f, int x, int y, int width, int height);
|
442
|
140 static void cache_subwindow_instance_in_frame_maybe (Lisp_Object instance);
|
|
141 static void update_image_instance (Lisp_Object image_instance,
|
|
142 Lisp_Object instantiator);
|
428
|
143 /* Unfortunately windows and X are different. In windows BeginPaint()
|
|
144 will prevent WM_PAINT messages being generated so it is unnecessary
|
|
145 to register exposures as they will not occur. Under X they will
|
|
146 always occur. */
|
|
147 int hold_ignored_expose_registration;
|
|
148
|
|
149 EXFUN (Fimage_instance_type, 1);
|
|
150 EXFUN (Fglyph_type, 1);
|
442
|
151 EXFUN (Fnext_window, 4);
|
428
|
152
|
|
153
|
|
154 /****************************************************************************
|
|
155 * Image Instantiators *
|
|
156 ****************************************************************************/
|
|
157
|
|
158 struct image_instantiator_methods *
|
|
159 decode_device_ii_format (Lisp_Object device, Lisp_Object format,
|
578
|
160 Error_Behavior errb)
|
428
|
161 {
|
|
162 int i;
|
|
163
|
|
164 if (!SYMBOLP (format))
|
|
165 {
|
|
166 if (ERRB_EQ (errb, ERROR_ME))
|
|
167 CHECK_SYMBOL (format);
|
|
168 return 0;
|
|
169 }
|
|
170
|
|
171 for (i = 0; i < Dynarr_length (the_image_instantiator_format_entry_dynarr);
|
|
172 i++)
|
|
173 {
|
|
174 if ( EQ (format,
|
|
175 Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
|
|
176 symbol) )
|
|
177 {
|
|
178 Lisp_Object d = Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
|
|
179 device;
|
|
180 if ((NILP (d) && NILP (device))
|
|
181 ||
|
|
182 (!NILP (device) &&
|
440
|
183 EQ (CONSOLE_TYPE (XCONSOLE
|
428
|
184 (DEVICE_CONSOLE (XDEVICE (device)))), d)))
|
|
185 return Dynarr_at (the_image_instantiator_format_entry_dynarr, i).meths;
|
|
186 }
|
|
187 }
|
|
188
|
563
|
189 maybe_invalid_argument ("Invalid image-instantiator format", format,
|
872
|
190 Qimage, errb);
|
428
|
191
|
|
192 return 0;
|
|
193 }
|
|
194
|
|
195 struct image_instantiator_methods *
|
578
|
196 decode_image_instantiator_format (Lisp_Object format, Error_Behavior errb)
|
428
|
197 {
|
|
198 return decode_device_ii_format (Qnil, format, errb);
|
|
199 }
|
|
200
|
|
201 static int
|
|
202 valid_image_instantiator_format_p (Lisp_Object format, Lisp_Object locale)
|
|
203 {
|
|
204 int i;
|
|
205 struct image_instantiator_methods* meths =
|
|
206 decode_image_instantiator_format (format, ERROR_ME_NOT);
|
|
207 Lisp_Object contype = Qnil;
|
|
208 /* mess with the locale */
|
|
209 if (!NILP (locale) && SYMBOLP (locale))
|
|
210 contype = locale;
|
|
211 else
|
|
212 {
|
|
213 struct console* console = decode_console (locale);
|
|
214 contype = console ? CONSOLE_TYPE (console) : locale;
|
|
215 }
|
|
216 /* nothing is valid in all locales */
|
|
217 if (EQ (format, Qnothing))
|
|
218 return 1;
|
|
219 /* reject unknown formats */
|
|
220 else if (NILP (contype) || !meths)
|
|
221 return 0;
|
|
222
|
|
223 for (i = 0; i < Dynarr_length (meths->consoles); i++)
|
|
224 if (EQ (contype, Dynarr_at (meths->consoles, i).symbol))
|
|
225 return 1;
|
|
226 return 0;
|
|
227 }
|
|
228
|
|
229 DEFUN ("valid-image-instantiator-format-p", Fvalid_image_instantiator_format_p,
|
|
230 1, 2, 0, /*
|
|
231 Given an IMAGE-INSTANTIATOR-FORMAT, return non-nil if it is valid.
|
444
|
232 If LOCALE is non-nil then the format is checked in that locale.
|
428
|
233 If LOCALE is nil the current console is used.
|
442
|
234
|
428
|
235 Valid formats are some subset of 'nothing, 'string, 'formatted-string,
|
|
236 'xpm, 'xbm, 'xface, 'gif, 'jpeg, 'png, 'tiff, 'cursor-font, 'font,
|
442
|
237 'autodetect, 'subwindow, 'inherit, 'mswindows-resource, 'bmp,
|
|
238 'native-layout, 'layout, 'label, 'tab-control, 'tree-view,
|
|
239 'progress-gauge, 'scrollbar, 'combo-box, 'edit-field, 'button,
|
|
240 'widget, 'pointer, and 'text, depending on how XEmacs was compiled.
|
428
|
241 */
|
|
242 (image_instantiator_format, locale))
|
|
243 {
|
442
|
244 return valid_image_instantiator_format_p (image_instantiator_format,
|
|
245 locale) ?
|
428
|
246 Qt : Qnil;
|
|
247 }
|
|
248
|
|
249 DEFUN ("image-instantiator-format-list", Fimage_instantiator_format_list,
|
|
250 0, 0, 0, /*
|
|
251 Return a list of valid image-instantiator formats.
|
|
252 */
|
|
253 ())
|
|
254 {
|
|
255 return Fcopy_sequence (Vimage_instantiator_format_list);
|
|
256 }
|
|
257
|
|
258 void
|
|
259 add_entry_to_device_ii_format_list (Lisp_Object device, Lisp_Object symbol,
|
|
260 struct image_instantiator_methods *meths)
|
|
261 {
|
|
262 struct image_instantiator_format_entry entry;
|
|
263
|
|
264 entry.symbol = symbol;
|
|
265 entry.device = device;
|
|
266 entry.meths = meths;
|
|
267 Dynarr_add (the_image_instantiator_format_entry_dynarr, entry);
|
442
|
268 if (NILP (memq_no_quit (symbol, Vimage_instantiator_format_list)))
|
|
269 Vimage_instantiator_format_list =
|
|
270 Fcons (symbol, Vimage_instantiator_format_list);
|
428
|
271 }
|
|
272
|
|
273 void
|
|
274 add_entry_to_image_instantiator_format_list (Lisp_Object symbol,
|
|
275 struct
|
|
276 image_instantiator_methods *meths)
|
|
277 {
|
|
278 add_entry_to_device_ii_format_list (Qnil, symbol, meths);
|
|
279 }
|
|
280
|
|
281 static Lisp_Object *
|
|
282 get_image_conversion_list (Lisp_Object console_type)
|
|
283 {
|
|
284 return &decode_console_type (console_type, ERROR_ME)->image_conversion_list;
|
|
285 }
|
|
286
|
|
287 DEFUN ("set-console-type-image-conversion-list", Fset_console_type_image_conversion_list,
|
|
288 2, 2, 0, /*
|
444
|
289 Set the image-conversion-list for consoles of the given CONSOLE-TYPE.
|
428
|
290 The image-conversion-list specifies how image instantiators that
|
|
291 are strings should be interpreted. Each element of the list should be
|
|
292 a list of two elements (a regular expression string and a vector) or
|
|
293 a list of three elements (the preceding two plus an integer index into
|
|
294 the vector). The string is converted to the vector associated with the
|
|
295 first matching regular expression. If a vector index is specified, the
|
|
296 string itself is substituted into that position in the vector.
|
|
297
|
|
298 Note: The conversion above is applied when the image instantiator is
|
|
299 added to an image specifier, not when the specifier is actually
|
|
300 instantiated. Therefore, changing the image-conversion-list only affects
|
|
301 newly-added instantiators. Existing instantiators in glyphs and image
|
|
302 specifiers will not be affected.
|
|
303 */
|
|
304 (console_type, list))
|
|
305 {
|
|
306 Lisp_Object tail;
|
|
307 Lisp_Object *imlist = get_image_conversion_list (console_type);
|
|
308
|
|
309 /* Check the list to make sure that it only has valid entries. */
|
|
310
|
|
311 EXTERNAL_LIST_LOOP (tail, list)
|
|
312 {
|
|
313 Lisp_Object mapping = XCAR (tail);
|
|
314
|
|
315 /* Mapping form should be (STRING VECTOR) or (STRING VECTOR INTEGER) */
|
|
316 if (!CONSP (mapping) ||
|
|
317 !CONSP (XCDR (mapping)) ||
|
|
318 (!NILP (XCDR (XCDR (mapping))) &&
|
|
319 (!CONSP (XCDR (XCDR (mapping))) ||
|
|
320 !NILP (XCDR (XCDR (XCDR (mapping)))))))
|
563
|
321 invalid_argument ("Invalid mapping form", mapping);
|
428
|
322 else
|
|
323 {
|
|
324 Lisp_Object exp = XCAR (mapping);
|
|
325 Lisp_Object typevec = XCAR (XCDR (mapping));
|
|
326 Lisp_Object pos = Qnil;
|
|
327 Lisp_Object newvec;
|
|
328 struct gcpro gcpro1;
|
|
329
|
|
330 CHECK_STRING (exp);
|
|
331 CHECK_VECTOR (typevec);
|
|
332 if (!NILP (XCDR (XCDR (mapping))))
|
|
333 {
|
|
334 pos = XCAR (XCDR (XCDR (mapping)));
|
|
335 CHECK_INT (pos);
|
|
336 if (XINT (pos) < 0 ||
|
|
337 XINT (pos) >= XVECTOR_LENGTH (typevec))
|
|
338 args_out_of_range_3
|
|
339 (pos, Qzero, make_int (XVECTOR_LENGTH (typevec) - 1));
|
|
340 }
|
|
341
|
|
342 newvec = Fcopy_sequence (typevec);
|
|
343 if (INTP (pos))
|
|
344 XVECTOR_DATA (newvec)[XINT (pos)] = exp;
|
|
345 GCPRO1 (newvec);
|
|
346 image_validate (newvec);
|
|
347 UNGCPRO;
|
|
348 }
|
|
349 }
|
|
350
|
|
351 *imlist = Fcopy_tree (list, Qt);
|
|
352 return list;
|
|
353 }
|
|
354
|
|
355 DEFUN ("console-type-image-conversion-list", Fconsole_type_image_conversion_list,
|
|
356 1, 1, 0, /*
|
444
|
357 Return the image-conversion-list for devices of the given CONSOLE-TYPE.
|
428
|
358 The image-conversion-list specifies how to interpret image string
|
|
359 instantiators for the specified console type. See
|
|
360 `set-console-type-image-conversion-list' for a description of its syntax.
|
|
361 */
|
|
362 (console_type))
|
|
363 {
|
|
364 return Fcopy_tree (*get_image_conversion_list (console_type), Qt);
|
|
365 }
|
|
366
|
|
367 /* Process a string instantiator according to the image-conversion-list for
|
|
368 CONSOLE_TYPE. Returns a vector. */
|
|
369
|
|
370 static Lisp_Object
|
|
371 process_image_string_instantiator (Lisp_Object data,
|
|
372 Lisp_Object console_type,
|
|
373 int dest_mask)
|
|
374 {
|
|
375 Lisp_Object tail;
|
|
376
|
|
377 LIST_LOOP (tail, *get_image_conversion_list (console_type))
|
|
378 {
|
|
379 Lisp_Object mapping = XCAR (tail);
|
|
380 Lisp_Object exp = XCAR (mapping);
|
|
381 Lisp_Object typevec = XCAR (XCDR (mapping));
|
|
382
|
|
383 /* if the result is of a type that can't be instantiated
|
|
384 (e.g. a string when we're dealing with a pointer glyph),
|
|
385 skip it. */
|
|
386 if (!(dest_mask &
|
|
387 IIFORMAT_METH (decode_image_instantiator_format
|
450
|
388 (INSTANTIATOR_TYPE (typevec), ERROR_ME),
|
428
|
389 possible_dest_types, ())))
|
|
390 continue;
|
|
391 if (fast_string_match (exp, 0, data, 0, -1, 0, ERROR_ME, 0) >= 0)
|
|
392 {
|
|
393 if (!NILP (XCDR (XCDR (mapping))))
|
|
394 {
|
|
395 int pos = XINT (XCAR (XCDR (XCDR (mapping))));
|
|
396 Lisp_Object newvec = Fcopy_sequence (typevec);
|
|
397 XVECTOR_DATA (newvec)[pos] = data;
|
|
398 return newvec;
|
|
399 }
|
|
400 else
|
|
401 return typevec;
|
|
402 }
|
|
403 }
|
|
404
|
|
405 /* Oh well. */
|
563
|
406 invalid_argument ("Unable to interpret glyph instantiator",
|
428
|
407 data);
|
|
408
|
801
|
409 RETURN_NOT_REACHED (Qnil)
|
428
|
410 }
|
|
411
|
|
412 Lisp_Object
|
|
413 find_keyword_in_vector_or_given (Lisp_Object vector, Lisp_Object keyword,
|
|
414 Lisp_Object default_)
|
|
415 {
|
|
416 Lisp_Object *elt;
|
|
417 int instantiator_len;
|
|
418
|
|
419 elt = XVECTOR_DATA (vector);
|
|
420 instantiator_len = XVECTOR_LENGTH (vector);
|
|
421
|
|
422 elt++;
|
|
423 instantiator_len--;
|
|
424
|
|
425 while (instantiator_len > 0)
|
|
426 {
|
|
427 if (EQ (elt[0], keyword))
|
|
428 return elt[1];
|
|
429 elt += 2;
|
|
430 instantiator_len -= 2;
|
|
431 }
|
|
432
|
|
433 return default_;
|
|
434 }
|
|
435
|
|
436 Lisp_Object
|
|
437 find_keyword_in_vector (Lisp_Object vector, Lisp_Object keyword)
|
|
438 {
|
|
439 return find_keyword_in_vector_or_given (vector, keyword, Qnil);
|
|
440 }
|
|
441
|
442
|
442 static Lisp_Object
|
|
443 find_instantiator_differences (Lisp_Object new, Lisp_Object old)
|
|
444 {
|
|
445 Lisp_Object alist = Qnil;
|
|
446 Lisp_Object *elt = XVECTOR_DATA (new);
|
|
447 Lisp_Object *old_elt = XVECTOR_DATA (old);
|
|
448 int len = XVECTOR_LENGTH (new);
|
|
449 struct gcpro gcpro1;
|
|
450
|
|
451 /* If the vector length has changed then consider everything
|
|
452 changed. We could try and figure out what properties have
|
|
453 disappeared or been added, but this code is only used as an
|
|
454 optimization anyway so lets not bother. */
|
|
455 if (len != XVECTOR_LENGTH (old))
|
|
456 return new;
|
|
457
|
|
458 GCPRO1 (alist);
|
|
459
|
|
460 for (len -= 2; len >= 1; len -= 2)
|
|
461 {
|
|
462 /* Keyword comparisons can be done with eq, the value must be
|
|
463 done with equal.
|
|
464 #### Note that this does not optimize re-ordering. */
|
|
465 if (!EQ (elt[len], old_elt[len])
|
|
466 || !internal_equal (elt[len+1], old_elt[len+1], 0))
|
|
467 alist = Fcons (Fcons (elt[len], elt[len+1]), alist);
|
|
468 }
|
|
469
|
|
470 {
|
|
471 Lisp_Object result = alist_to_tagged_vector (elt[0], alist);
|
|
472 free_alist (alist);
|
|
473 RETURN_UNGCPRO (result);
|
|
474 }
|
|
475 }
|
|
476
|
|
477 DEFUN ("set-instantiator-property", Fset_instantiator_property,
|
|
478 3, 3, 0, /*
|
444
|
479 Destructively set the property KEYWORD of INSTANTIATOR to VALUE.
|
442
|
480 If the property is not set then it is added to a copy of the
|
|
481 instantiator and the new instantiator returned.
|
|
482 Use `set-glyph-image' on glyphs to register instantiator changes. */
|
444
|
483 (instantiator, keyword, value))
|
442
|
484 {
|
|
485 Lisp_Object *elt;
|
|
486 int len;
|
|
487
|
|
488 CHECK_VECTOR (instantiator);
|
|
489 if (!KEYWORDP (keyword))
|
563
|
490 invalid_argument ("instantiator property must be a keyword", keyword);
|
442
|
491
|
|
492 elt = XVECTOR_DATA (instantiator);
|
|
493 len = XVECTOR_LENGTH (instantiator);
|
|
494
|
|
495 for (len -= 2; len >= 1; len -= 2)
|
|
496 {
|
|
497 if (EQ (elt[len], keyword))
|
|
498 {
|
444
|
499 elt[len+1] = value;
|
442
|
500 break;
|
|
501 }
|
|
502 }
|
|
503
|
|
504 /* Didn't find it so add it. */
|
|
505 if (len < 1)
|
|
506 {
|
|
507 Lisp_Object alist = Qnil, result;
|
|
508 struct gcpro gcpro1;
|
|
509
|
|
510 GCPRO1 (alist);
|
|
511 alist = tagged_vector_to_alist (instantiator);
|
444
|
512 alist = Fcons (Fcons (keyword, value), alist);
|
442
|
513 result = alist_to_tagged_vector (elt[0], alist);
|
|
514 free_alist (alist);
|
|
515 RETURN_UNGCPRO (result);
|
|
516 }
|
|
517
|
|
518 return instantiator;
|
|
519 }
|
|
520
|
428
|
521 void
|
|
522 check_valid_string (Lisp_Object data)
|
|
523 {
|
|
524 CHECK_STRING (data);
|
|
525 }
|
|
526
|
|
527 void
|
|
528 check_valid_vector (Lisp_Object data)
|
|
529 {
|
|
530 CHECK_VECTOR (data);
|
|
531 }
|
|
532
|
|
533 void
|
|
534 check_valid_face (Lisp_Object data)
|
|
535 {
|
|
536 Fget_face (data);
|
|
537 }
|
|
538
|
|
539 void
|
|
540 check_valid_int (Lisp_Object data)
|
|
541 {
|
|
542 CHECK_INT (data);
|
|
543 }
|
|
544
|
|
545 void
|
|
546 file_or_data_must_be_present (Lisp_Object instantiator)
|
|
547 {
|
|
548 if (NILP (find_keyword_in_vector (instantiator, Q_file)) &&
|
|
549 NILP (find_keyword_in_vector (instantiator, Q_data)))
|
563
|
550 sferror ("Must supply either :file or :data",
|
428
|
551 instantiator);
|
|
552 }
|
|
553
|
|
554 void
|
|
555 data_must_be_present (Lisp_Object instantiator)
|
|
556 {
|
|
557 if (NILP (find_keyword_in_vector (instantiator, Q_data)))
|
563
|
558 sferror ("Must supply :data", instantiator);
|
428
|
559 }
|
|
560
|
|
561 static void
|
|
562 face_must_be_present (Lisp_Object instantiator)
|
|
563 {
|
|
564 if (NILP (find_keyword_in_vector (instantiator, Q_face)))
|
563
|
565 sferror ("Must supply :face", instantiator);
|
428
|
566 }
|
|
567
|
|
568 /* utility function useful in retrieving data from a file. */
|
|
569
|
|
570 Lisp_Object
|
|
571 make_string_from_file (Lisp_Object file)
|
|
572 {
|
|
573 /* This function can call lisp */
|
|
574 int count = specpdl_depth ();
|
|
575 Lisp_Object temp_buffer;
|
|
576 struct gcpro gcpro1;
|
|
577 Lisp_Object data;
|
|
578
|
|
579 specbind (Qinhibit_quit, Qt);
|
|
580 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
581 temp_buffer = Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
582 GCPRO1 (temp_buffer);
|
|
583 set_buffer_internal (XBUFFER (temp_buffer));
|
|
584 Ferase_buffer (Qnil);
|
|
585 specbind (intern ("format-alist"), Qnil);
|
|
586 Finsert_file_contents_internal (file, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil);
|
|
587 data = Fbuffer_substring (Qnil, Qnil, Qnil);
|
771
|
588 unbind_to (count);
|
428
|
589 UNGCPRO;
|
|
590 return data;
|
|
591 }
|
|
592
|
|
593 /* The following two functions are provided to make it easier for
|
|
594 the normalize methods to work with keyword-value vectors.
|
|
595 Hash tables are kind of heavyweight for this purpose.
|
|
596 (If vectors were resizable, we could avoid this problem;
|
|
597 but they're not.) An alternative approach that might be
|
|
598 more efficient but require more work is to use a type of
|
|
599 assoc-Dynarr and provide primitives for deleting elements out
|
|
600 of it. (However, you'd also have to add an unwind-protect
|
|
601 to make sure the Dynarr got freed in case of an error in
|
|
602 the normalization process.) */
|
|
603
|
|
604 Lisp_Object
|
|
605 tagged_vector_to_alist (Lisp_Object vector)
|
|
606 {
|
|
607 Lisp_Object *elt = XVECTOR_DATA (vector);
|
|
608 int len = XVECTOR_LENGTH (vector);
|
|
609 Lisp_Object result = Qnil;
|
|
610
|
|
611 assert (len & 1);
|
|
612 for (len -= 2; len >= 1; len -= 2)
|
|
613 result = Fcons (Fcons (elt[len], elt[len+1]), result);
|
|
614
|
|
615 return result;
|
|
616 }
|
|
617
|
|
618 Lisp_Object
|
|
619 alist_to_tagged_vector (Lisp_Object tag, Lisp_Object alist)
|
|
620 {
|
|
621 int len = 1 + 2 * XINT (Flength (alist));
|
|
622 Lisp_Object *elt = alloca_array (Lisp_Object, len);
|
|
623 int i;
|
|
624 Lisp_Object rest;
|
|
625
|
|
626 i = 0;
|
|
627 elt[i++] = tag;
|
|
628 LIST_LOOP (rest, alist)
|
|
629 {
|
|
630 Lisp_Object pair = XCAR (rest);
|
|
631 elt[i] = XCAR (pair);
|
|
632 elt[i+1] = XCDR (pair);
|
|
633 i += 2;
|
|
634 }
|
|
635
|
|
636 return Fvector (len, elt);
|
|
637 }
|
|
638
|
442
|
639 #ifdef ERROR_CHECK_GLYPHS
|
|
640 static int
|
|
641 check_instance_cache_mapper (Lisp_Object key, Lisp_Object value,
|
|
642 void *flag_closure)
|
|
643 {
|
|
644 /* This function can GC */
|
|
645 /* value can be nil; we cache failures as well as successes */
|
|
646 if (!NILP (value))
|
|
647 {
|
|
648 Lisp_Object window;
|
826
|
649 window = VOID_TO_LISP (flag_closure);
|
442
|
650 assert (EQ (XIMAGE_INSTANCE_DOMAIN (value), window));
|
|
651 }
|
|
652
|
|
653 return 0;
|
|
654 }
|
|
655
|
|
656 void
|
|
657 check_window_subwindow_cache (struct window* w)
|
|
658 {
|
793
|
659 Lisp_Object window = wrap_window (w);
|
|
660
|
442
|
661
|
|
662 assert (!NILP (w->subwindow_instance_cache));
|
|
663 elisp_maphash (check_instance_cache_mapper,
|
|
664 w->subwindow_instance_cache,
|
|
665 LISP_TO_VOID (window));
|
|
666 }
|
|
667
|
|
668 void
|
|
669 check_image_instance_structure (Lisp_Object instance)
|
|
670 {
|
|
671 /* Weird nothing images exist at startup when the console is
|
|
672 deleted. */
|
|
673 if (!NOTHING_IMAGE_INSTANCEP (instance))
|
|
674 {
|
|
675 assert (DOMAIN_LIVE_P (instance));
|
|
676 assert (VECTORP (XIMAGE_INSTANCE_INSTANTIATOR (instance)));
|
|
677 }
|
|
678 if (WINDOWP (XIMAGE_INSTANCE_DOMAIN (instance)))
|
|
679 check_window_subwindow_cache
|
|
680 (XWINDOW (XIMAGE_INSTANCE_DOMAIN (instance)));
|
|
681 }
|
|
682 #endif
|
|
683
|
|
684 /* Determine what kind of domain governs the image instance.
|
|
685 Verify that the given domain is at least as specific, and extract
|
|
686 the governing domain from it. */
|
428
|
687 static Lisp_Object
|
442
|
688 get_image_instantiator_governing_domain (Lisp_Object instantiator,
|
|
689 Lisp_Object domain)
|
|
690 {
|
|
691 int governing_domain;
|
|
692
|
|
693 struct image_instantiator_methods *meths =
|
450
|
694 decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
|
442
|
695 ERROR_ME);
|
|
696 governing_domain = IIFORMAT_METH_OR_GIVEN (meths, governing_domain, (),
|
|
697 GOVERNING_DOMAIN_DEVICE);
|
|
698
|
|
699 if (governing_domain == GOVERNING_DOMAIN_WINDOW
|
|
700 && NILP (DOMAIN_WINDOW (domain)))
|
563
|
701 invalid_argument_2
|
|
702 ("Domain for this instantiator must be resolvable to a window",
|
|
703 instantiator, domain);
|
442
|
704 else if (governing_domain == GOVERNING_DOMAIN_FRAME
|
|
705 && NILP (DOMAIN_FRAME (domain)))
|
563
|
706 invalid_argument_2
|
442
|
707 ("Domain for this instantiator must be resolvable to a frame",
|
|
708 instantiator, domain);
|
|
709
|
|
710 if (governing_domain == GOVERNING_DOMAIN_WINDOW)
|
|
711 domain = DOMAIN_WINDOW (domain);
|
|
712 else if (governing_domain == GOVERNING_DOMAIN_FRAME)
|
|
713 domain = DOMAIN_FRAME (domain);
|
|
714 else if (governing_domain == GOVERNING_DOMAIN_DEVICE)
|
|
715 domain = DOMAIN_DEVICE (domain);
|
|
716 else
|
|
717 abort ();
|
|
718
|
|
719 return domain;
|
|
720 }
|
|
721
|
|
722 Lisp_Object
|
428
|
723 normalize_image_instantiator (Lisp_Object instantiator,
|
|
724 Lisp_Object contype,
|
|
725 Lisp_Object dest_mask)
|
|
726 {
|
|
727 if (IMAGE_INSTANCEP (instantiator))
|
|
728 return instantiator;
|
|
729
|
|
730 if (STRINGP (instantiator))
|
|
731 instantiator = process_image_string_instantiator (instantiator, contype,
|
|
732 XINT (dest_mask));
|
442
|
733 /* Subsequent validation will pick this up. */
|
|
734 if (!VECTORP (instantiator))
|
|
735 return instantiator;
|
428
|
736 /* We have to always store the actual pixmap data and not the
|
|
737 filename even though this is a potential memory pig. We have to
|
|
738 do this because it is quite possible that we will need to
|
|
739 instantiate a new instance of the pixmap and the file will no
|
|
740 longer exist (e.g. w3 pixmaps are almost always from temporary
|
|
741 files). */
|
|
742 {
|
|
743 struct gcpro gcpro1;
|
|
744 struct image_instantiator_methods *meths;
|
|
745
|
|
746 GCPRO1 (instantiator);
|
440
|
747
|
450
|
748 meths = decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
|
428
|
749 ERROR_ME);
|
|
750 RETURN_UNGCPRO (IIFORMAT_METH_OR_GIVEN (meths, normalize,
|
442
|
751 (instantiator, contype, dest_mask),
|
428
|
752 instantiator));
|
|
753 }
|
|
754 }
|
|
755
|
|
756 static Lisp_Object
|
442
|
757 instantiate_image_instantiator (Lisp_Object governing_domain,
|
|
758 Lisp_Object domain,
|
428
|
759 Lisp_Object instantiator,
|
|
760 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
438
|
761 int dest_mask, Lisp_Object glyph)
|
428
|
762 {
|
442
|
763 Lisp_Object ii = allocate_image_instance (governing_domain,
|
|
764 IMAGE_INSTANCEP (domain) ?
|
|
765 domain : glyph, instantiator);
|
|
766 Lisp_Image_Instance* p = XIMAGE_INSTANCE (ii);
|
|
767 struct image_instantiator_methods *meths, *device_meths;
|
428
|
768 struct gcpro gcpro1;
|
|
769
|
|
770 GCPRO1 (ii);
|
450
|
771 if (!valid_image_instantiator_format_p (INSTANTIATOR_TYPE (instantiator),
|
442
|
772 DOMAIN_DEVICE (governing_domain)))
|
563
|
773 invalid_argument
|
428
|
774 ("Image instantiator format is invalid in this locale.",
|
|
775 instantiator);
|
|
776
|
450
|
777 meths = decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
|
428
|
778 ERROR_ME);
|
|
779 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
|
|
780 pointer_bg, dest_mask, domain));
|
440
|
781
|
442
|
782 /* Now do device specific instantiation. */
|
|
783 device_meths = decode_device_ii_format (DOMAIN_DEVICE (governing_domain),
|
450
|
784 INSTANTIATOR_TYPE (instantiator),
|
442
|
785 ERROR_ME_NOT);
|
|
786
|
|
787 if (!HAS_IIFORMAT_METH_P (meths, instantiate)
|
|
788 && (!device_meths || !HAS_IIFORMAT_METH_P (device_meths, instantiate)))
|
563
|
789 invalid_argument
|
428
|
790 ("Don't know how to instantiate this image instantiator?",
|
|
791 instantiator);
|
442
|
792
|
|
793 /* In general native window system methods will require sane
|
|
794 geometry values, thus the instance needs to have been laid-out
|
|
795 before they get called. */
|
|
796 image_instance_layout (ii, XIMAGE_INSTANCE_WIDTH (ii),
|
|
797 XIMAGE_INSTANCE_HEIGHT (ii),
|
|
798 IMAGE_UNCHANGED_GEOMETRY,
|
|
799 IMAGE_UNCHANGED_GEOMETRY, domain);
|
|
800
|
|
801 MAYBE_IIFORMAT_METH (device_meths, instantiate, (ii, instantiator, pointer_fg,
|
|
802 pointer_bg, dest_mask, domain));
|
|
803 /* Do post instantiation. */
|
|
804 MAYBE_IIFORMAT_METH (meths, post_instantiate, (ii, instantiator, domain));
|
|
805 MAYBE_IIFORMAT_METH (device_meths, post_instantiate, (ii, instantiator, domain));
|
|
806
|
|
807 /* We're done. */
|
|
808 IMAGE_INSTANCE_INITIALIZED (p) = 1;
|
|
809 /* Now that we're done verify that we really are laid out. */
|
|
810 if (IMAGE_INSTANCE_LAYOUT_CHANGED (p))
|
|
811 image_instance_layout (ii, XIMAGE_INSTANCE_WIDTH (ii),
|
|
812 XIMAGE_INSTANCE_HEIGHT (ii),
|
|
813 IMAGE_UNCHANGED_GEOMETRY,
|
|
814 IMAGE_UNCHANGED_GEOMETRY, domain);
|
|
815
|
|
816 /* We *must* have a clean image at this point. */
|
|
817 IMAGE_INSTANCE_TEXT_CHANGED (p) = 0;
|
|
818 IMAGE_INSTANCE_SIZE_CHANGED (p) = 0;
|
|
819 IMAGE_INSTANCE_LAYOUT_CHANGED (p) = 0;
|
|
820 IMAGE_INSTANCE_DIRTYP (p) = 0;
|
|
821
|
|
822 assert ( XIMAGE_INSTANCE_HEIGHT (ii) >= 0
|
|
823 && XIMAGE_INSTANCE_WIDTH (ii) >= 0 );
|
|
824
|
|
825 ERROR_CHECK_IMAGE_INSTANCE (ii);
|
|
826
|
|
827 RETURN_UNGCPRO (ii);
|
428
|
828 }
|
|
829
|
|
830
|
|
831 /****************************************************************************
|
|
832 * Image-Instance Object *
|
|
833 ****************************************************************************/
|
|
834
|
|
835 Lisp_Object Qimage_instancep;
|
|
836
|
|
837 static Lisp_Object
|
|
838 mark_image_instance (Lisp_Object obj)
|
|
839 {
|
440
|
840 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
|
428
|
841
|
442
|
842 /* #### I want to check the instance here, but there are way too
|
|
843 many instances of the instance being marked while the domain is
|
|
844 dead. For instance you can get marked through an event when using
|
|
845 callback_ex.*/
|
|
846 #if 0
|
|
847 ERROR_CHECK_IMAGE_INSTANCE (obj);
|
|
848 #endif
|
|
849
|
428
|
850 mark_object (i->name);
|
442
|
851 mark_object (i->instantiator);
|
|
852 /* Is this legal in marking? We may get in the situation where the
|
|
853 domain has been deleted - making the instance unusable. It seems
|
|
854 better to remove the domain so that it can be finalized. */
|
|
855 if (!DOMAIN_LIVE_P (i->domain))
|
|
856 i->domain = Qnil;
|
|
857 else
|
|
858 mark_object (i->domain);
|
|
859
|
438
|
860 /* We don't mark the glyph reference since that would create a
|
442
|
861 circularity preventing GC. Ditto the instantiator. */
|
428
|
862 switch (IMAGE_INSTANCE_TYPE (i))
|
|
863 {
|
|
864 case IMAGE_TEXT:
|
|
865 mark_object (IMAGE_INSTANCE_TEXT_STRING (i));
|
|
866 break;
|
|
867 case IMAGE_MONO_PIXMAP:
|
|
868 case IMAGE_COLOR_PIXMAP:
|
|
869 mark_object (IMAGE_INSTANCE_PIXMAP_FILENAME (i));
|
|
870 mark_object (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i));
|
|
871 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i));
|
|
872 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i));
|
|
873 mark_object (IMAGE_INSTANCE_PIXMAP_FG (i));
|
|
874 mark_object (IMAGE_INSTANCE_PIXMAP_BG (i));
|
|
875 break;
|
|
876
|
|
877 case IMAGE_WIDGET:
|
|
878 mark_object (IMAGE_INSTANCE_WIDGET_TYPE (i));
|
|
879 mark_object (IMAGE_INSTANCE_WIDGET_PROPS (i));
|
442
|
880 mark_object (IMAGE_INSTANCE_SUBWINDOW_FACE (i));
|
428
|
881 mark_object (IMAGE_INSTANCE_WIDGET_ITEMS (i));
|
442
|
882 mark_object (IMAGE_INSTANCE_LAYOUT_CHILDREN (i));
|
|
883 mark_object (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (i));
|
|
884 mark_object (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i));
|
|
885 mark_object (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i));
|
428
|
886 case IMAGE_SUBWINDOW:
|
|
887 break;
|
|
888
|
|
889 default:
|
|
890 break;
|
|
891 }
|
|
892
|
442
|
893 /* The image may have been previously finalized (yes that's weird,
|
|
894 see Fdelete_frame() and mark_window_as_deleted()), in which case
|
|
895 the domain will be nil, so cope with this. */
|
|
896 if (!NILP (IMAGE_INSTANCE_DEVICE (i)))
|
|
897 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (i)),
|
|
898 mark_image_instance, (i));
|
428
|
899
|
|
900 return i->device;
|
|
901 }
|
|
902
|
|
903 static void
|
|
904 print_image_instance (Lisp_Object obj, Lisp_Object printcharfun,
|
|
905 int escapeflag)
|
|
906 {
|
440
|
907 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (obj);
|
428
|
908
|
|
909 if (print_readably)
|
563
|
910 printing_unreadable_object ("#<image-instance 0x%x>",
|
428
|
911 ii->header.uid);
|
800
|
912 write_fmt_string_lisp (printcharfun, "#<image-instance (%s) ", 1,
|
|
913 Fimage_instance_type (obj));
|
428
|
914 if (!NILP (ii->name))
|
800
|
915 write_fmt_string_lisp (printcharfun, "%S ", 1, ii->name);
|
|
916 write_fmt_string_lisp (printcharfun, "on %s ", 1, ii->domain);
|
428
|
917 switch (IMAGE_INSTANCE_TYPE (ii))
|
|
918 {
|
|
919 case IMAGE_NOTHING:
|
|
920 break;
|
|
921
|
|
922 case IMAGE_TEXT:
|
|
923 print_internal (IMAGE_INSTANCE_TEXT_STRING (ii), printcharfun, 1);
|
|
924 break;
|
|
925
|
|
926 case IMAGE_MONO_PIXMAP:
|
|
927 case IMAGE_COLOR_PIXMAP:
|
|
928 case IMAGE_POINTER:
|
|
929 if (STRINGP (IMAGE_INSTANCE_PIXMAP_FILENAME (ii)))
|
|
930 {
|
867
|
931 Ibyte *s;
|
428
|
932 Lisp_Object filename = IMAGE_INSTANCE_PIXMAP_FILENAME (ii);
|
771
|
933 s = qxestrrchr (XSTRING_DATA (filename), '/');
|
428
|
934 if (s)
|
771
|
935 print_internal (build_intstring (s + 1), printcharfun, 1);
|
428
|
936 else
|
|
937 print_internal (filename, printcharfun, 1);
|
|
938 }
|
|
939 if (IMAGE_INSTANCE_PIXMAP_DEPTH (ii) > 1)
|
800
|
940 write_fmt_string (printcharfun, " %dx%dx%d",
|
|
941 IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
|
|
942 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii),
|
|
943 IMAGE_INSTANCE_PIXMAP_DEPTH (ii));
|
428
|
944 else
|
800
|
945 write_fmt_string (printcharfun, " %dx%d",
|
|
946 IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
|
|
947 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii));
|
428
|
948 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ||
|
|
949 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
|
|
950 {
|
826
|
951 write_c_string (printcharfun, " @");
|
428
|
952 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)))
|
800
|
953 write_fmt_string (printcharfun, "%ld",
|
|
954 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)));
|
428
|
955 else
|
826
|
956 write_c_string (printcharfun, "??");
|
|
957 write_c_string (printcharfun, ",");
|
428
|
958 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
|
800
|
959 write_fmt_string (printcharfun, "%ld",
|
|
960 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)));
|
428
|
961 else
|
826
|
962 write_c_string (printcharfun, "??");
|
428
|
963 }
|
|
964 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)) ||
|
|
965 !NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
|
|
966 {
|
826
|
967 write_c_string (printcharfun, " (");
|
428
|
968 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)))
|
|
969 {
|
|
970 print_internal
|
|
971 (XCOLOR_INSTANCE
|
|
972 (IMAGE_INSTANCE_PIXMAP_FG (ii))->name, printcharfun, 0);
|
|
973 }
|
826
|
974 write_c_string (printcharfun, "/");
|
428
|
975 if (!NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
|
|
976 {
|
|
977 print_internal
|
|
978 (XCOLOR_INSTANCE
|
|
979 (IMAGE_INSTANCE_PIXMAP_BG (ii))->name, printcharfun, 0);
|
|
980 }
|
826
|
981 write_c_string (printcharfun, ")");
|
428
|
982 }
|
|
983 break;
|
|
984
|
|
985 case IMAGE_WIDGET:
|
442
|
986 print_internal (IMAGE_INSTANCE_WIDGET_TYPE (ii), printcharfun, 0);
|
|
987
|
|
988 if (GUI_ITEMP (IMAGE_INSTANCE_WIDGET_ITEM (ii)))
|
800
|
989 write_fmt_string_lisp (printcharfun, " %S", 1,
|
|
990 IMAGE_INSTANCE_WIDGET_TEXT (ii));
|
442
|
991
|
428
|
992 if (!NILP (IMAGE_INSTANCE_WIDGET_FACE (ii)))
|
800
|
993 write_fmt_string_lisp (printcharfun, " face=%s", 1,
|
|
994 IMAGE_INSTANCE_WIDGET_FACE (ii));
|
454
|
995 /* fallthrough */
|
428
|
996
|
|
997 case IMAGE_SUBWINDOW:
|
800
|
998 write_fmt_string (printcharfun, " %dx%d", IMAGE_INSTANCE_WIDTH (ii),
|
|
999 IMAGE_INSTANCE_HEIGHT (ii));
|
428
|
1000
|
|
1001 /* This is stolen from frame.c. Subwindows are strange in that they
|
|
1002 are specific to a particular frame so we want to print in their
|
|
1003 description what that frame is. */
|
|
1004
|
826
|
1005 write_c_string (printcharfun, " on #<");
|
428
|
1006 {
|
442
|
1007 struct frame* f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
|
440
|
1008
|
428
|
1009 if (!FRAME_LIVE_P (f))
|
826
|
1010 write_c_string (printcharfun, "dead");
|
440
|
1011 else
|
826
|
1012 write_c_string (printcharfun,
|
|
1013 DEVICE_TYPE_NAME (XDEVICE (FRAME_DEVICE (f))));
|
428
|
1014 }
|
826
|
1015 write_c_string (printcharfun, "-frame>");
|
800
|
1016 write_fmt_string (printcharfun, " 0x%p",
|
|
1017 IMAGE_INSTANCE_SUBWINDOW_ID (ii));
|
440
|
1018
|
428
|
1019 break;
|
|
1020
|
|
1021 default:
|
|
1022 abort ();
|
|
1023 }
|
|
1024
|
442
|
1025 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain), print_image_instance,
|
428
|
1026 (ii, printcharfun, escapeflag));
|
800
|
1027 write_fmt_string (printcharfun, " 0x%x>", ii->header.uid);
|
428
|
1028 }
|
|
1029
|
|
1030 static void
|
|
1031 finalize_image_instance (void *header, int for_disksave)
|
|
1032 {
|
440
|
1033 Lisp_Image_Instance *i = (Lisp_Image_Instance *) header;
|
428
|
1034
|
442
|
1035 /* objects like this exist at dump time, so don't bomb out. */
|
|
1036 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_NOTHING
|
|
1037 ||
|
|
1038 NILP (IMAGE_INSTANCE_DEVICE (i)))
|
428
|
1039 return;
|
|
1040 if (for_disksave) finalose (i);
|
|
1041
|
442
|
1042 /* We can't use the domain here, because it might have
|
|
1043 disappeared. */
|
|
1044 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (i)),
|
|
1045 finalize_image_instance, (i));
|
|
1046
|
|
1047 /* Make sure we don't try this twice. */
|
|
1048 IMAGE_INSTANCE_DEVICE (i) = Qnil;
|
428
|
1049 }
|
|
1050
|
|
1051 static int
|
|
1052 image_instance_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
|
|
1053 {
|
440
|
1054 Lisp_Image_Instance *i1 = XIMAGE_INSTANCE (obj1);
|
|
1055 Lisp_Image_Instance *i2 = XIMAGE_INSTANCE (obj2);
|
442
|
1056
|
|
1057 ERROR_CHECK_IMAGE_INSTANCE (obj1);
|
|
1058 ERROR_CHECK_IMAGE_INSTANCE (obj2);
|
|
1059
|
|
1060 if (!EQ (IMAGE_INSTANCE_DOMAIN (i1),
|
|
1061 IMAGE_INSTANCE_DOMAIN (i2))
|
|
1062 || IMAGE_INSTANCE_TYPE (i1) != IMAGE_INSTANCE_TYPE (i2)
|
438
|
1063 || IMAGE_INSTANCE_WIDTH (i1) != IMAGE_INSTANCE_WIDTH (i2)
|
442
|
1064 || IMAGE_INSTANCE_MARGIN_WIDTH (i1) !=
|
|
1065 IMAGE_INSTANCE_MARGIN_WIDTH (i2)
|
438
|
1066 || IMAGE_INSTANCE_HEIGHT (i1) != IMAGE_INSTANCE_HEIGHT (i2)
|
|
1067 || IMAGE_INSTANCE_XOFFSET (i1) != IMAGE_INSTANCE_XOFFSET (i2)
|
|
1068 || IMAGE_INSTANCE_YOFFSET (i1) != IMAGE_INSTANCE_YOFFSET (i2))
|
428
|
1069 return 0;
|
|
1070 if (!internal_equal (IMAGE_INSTANCE_NAME (i1), IMAGE_INSTANCE_NAME (i2),
|
|
1071 depth + 1))
|
|
1072 return 0;
|
442
|
1073 if (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (i1),
|
|
1074 IMAGE_INSTANCE_INSTANTIATOR (i2),
|
|
1075 depth + 1))
|
|
1076 return 0;
|
428
|
1077
|
|
1078 switch (IMAGE_INSTANCE_TYPE (i1))
|
|
1079 {
|
|
1080 case IMAGE_NOTHING:
|
|
1081 break;
|
|
1082
|
|
1083 case IMAGE_TEXT:
|
|
1084 if (!internal_equal (IMAGE_INSTANCE_TEXT_STRING (i1),
|
|
1085 IMAGE_INSTANCE_TEXT_STRING (i2),
|
|
1086 depth + 1))
|
|
1087 return 0;
|
|
1088 break;
|
|
1089
|
|
1090 case IMAGE_MONO_PIXMAP:
|
|
1091 case IMAGE_COLOR_PIXMAP:
|
|
1092 case IMAGE_POINTER:
|
438
|
1093 if (!(IMAGE_INSTANCE_PIXMAP_DEPTH (i1) ==
|
428
|
1094 IMAGE_INSTANCE_PIXMAP_DEPTH (i2) &&
|
|
1095 IMAGE_INSTANCE_PIXMAP_SLICE (i1) ==
|
|
1096 IMAGE_INSTANCE_PIXMAP_SLICE (i2) &&
|
|
1097 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i1),
|
|
1098 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i2)) &&
|
|
1099 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i1),
|
|
1100 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i2)) &&
|
|
1101 internal_equal (IMAGE_INSTANCE_PIXMAP_FILENAME (i1),
|
|
1102 IMAGE_INSTANCE_PIXMAP_FILENAME (i2),
|
|
1103 depth + 1) &&
|
|
1104 internal_equal (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i1),
|
|
1105 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i2),
|
|
1106 depth + 1)))
|
|
1107 return 0;
|
|
1108 break;
|
|
1109
|
|
1110 case IMAGE_WIDGET:
|
|
1111 if (!(EQ (IMAGE_INSTANCE_WIDGET_TYPE (i1),
|
|
1112 IMAGE_INSTANCE_WIDGET_TYPE (i2))
|
438
|
1113 && IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
|
|
1114 IMAGE_INSTANCE_SUBWINDOW_ID (i2)
|
442
|
1115 &&
|
|
1116 EQ (IMAGE_INSTANCE_WIDGET_FACE (i1),
|
|
1117 IMAGE_INSTANCE_WIDGET_TYPE (i2))
|
428
|
1118 && internal_equal (IMAGE_INSTANCE_WIDGET_ITEMS (i1),
|
|
1119 IMAGE_INSTANCE_WIDGET_ITEMS (i2),
|
|
1120 depth + 1)
|
442
|
1121 && internal_equal (IMAGE_INSTANCE_LAYOUT_CHILDREN (i1),
|
|
1122 IMAGE_INSTANCE_LAYOUT_CHILDREN (i2),
|
|
1123 depth + 1)
|
428
|
1124 && internal_equal (IMAGE_INSTANCE_WIDGET_PROPS (i1),
|
|
1125 IMAGE_INSTANCE_WIDGET_PROPS (i2),
|
|
1126 depth + 1)
|
442
|
1127 && internal_equal (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i1),
|
|
1128 IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i2),
|
|
1129 depth + 1)
|
|
1130 && internal_equal (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i1),
|
|
1131 IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i2),
|
|
1132 depth + 1)
|
428
|
1133 ))
|
|
1134 return 0;
|
438
|
1135 break;
|
440
|
1136
|
428
|
1137 case IMAGE_SUBWINDOW:
|
438
|
1138 if (!(IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
|
428
|
1139 IMAGE_INSTANCE_SUBWINDOW_ID (i2)))
|
|
1140 return 0;
|
|
1141 break;
|
|
1142
|
|
1143 default:
|
|
1144 abort ();
|
|
1145 }
|
|
1146
|
442
|
1147 return DEVMETH_OR_GIVEN (DOMAIN_XDEVICE (i1->domain),
|
|
1148 image_instance_equal, (i1, i2, depth), 1);
|
|
1149 }
|
|
1150
|
|
1151 /* Image instance domain manipulators. We can't error check in these
|
|
1152 otherwise we get into infinite recursion. */
|
|
1153 Lisp_Object
|
|
1154 image_instance_device (Lisp_Object instance)
|
|
1155 {
|
|
1156 return XIMAGE_INSTANCE_DEVICE (instance);
|
|
1157 }
|
|
1158
|
|
1159 Lisp_Object
|
|
1160 image_instance_frame (Lisp_Object instance)
|
|
1161 {
|
|
1162 return XIMAGE_INSTANCE_FRAME (instance);
|
|
1163 }
|
|
1164
|
|
1165 Lisp_Object
|
|
1166 image_instance_window (Lisp_Object instance)
|
|
1167 {
|
|
1168 return DOMAIN_WINDOW (XIMAGE_INSTANCE_DOMAIN (instance));
|
|
1169 }
|
|
1170
|
|
1171 int
|
|
1172 image_instance_live_p (Lisp_Object instance)
|
|
1173 {
|
|
1174 return DOMAIN_LIVE_P (XIMAGE_INSTANCE_DOMAIN (instance));
|
428
|
1175 }
|
|
1176
|
665
|
1177 static Hashcode
|
428
|
1178 image_instance_hash (Lisp_Object obj, int depth)
|
|
1179 {
|
440
|
1180 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
|
665
|
1181 Hashcode hash = HASH5 (LISP_HASH (IMAGE_INSTANCE_DOMAIN (i)),
|
647
|
1182 IMAGE_INSTANCE_WIDTH (i),
|
|
1183 IMAGE_INSTANCE_MARGIN_WIDTH (i),
|
|
1184 IMAGE_INSTANCE_HEIGHT (i),
|
|
1185 internal_hash (IMAGE_INSTANCE_INSTANTIATOR (i),
|
|
1186 depth + 1));
|
442
|
1187
|
|
1188 ERROR_CHECK_IMAGE_INSTANCE (obj);
|
428
|
1189
|
|
1190 switch (IMAGE_INSTANCE_TYPE (i))
|
|
1191 {
|
|
1192 case IMAGE_NOTHING:
|
|
1193 break;
|
|
1194
|
|
1195 case IMAGE_TEXT:
|
|
1196 hash = HASH2 (hash, internal_hash (IMAGE_INSTANCE_TEXT_STRING (i),
|
|
1197 depth + 1));
|
|
1198 break;
|
|
1199
|
|
1200 case IMAGE_MONO_PIXMAP:
|
|
1201 case IMAGE_COLOR_PIXMAP:
|
|
1202 case IMAGE_POINTER:
|
438
|
1203 hash = HASH4 (hash, IMAGE_INSTANCE_PIXMAP_DEPTH (i),
|
428
|
1204 IMAGE_INSTANCE_PIXMAP_SLICE (i),
|
|
1205 internal_hash (IMAGE_INSTANCE_PIXMAP_FILENAME (i),
|
|
1206 depth + 1));
|
|
1207 break;
|
|
1208
|
|
1209 case IMAGE_WIDGET:
|
442
|
1210 /* We need the hash to be equivalent to what should be
|
|
1211 displayed. */
|
|
1212 hash = HASH5 (hash,
|
|
1213 LISP_HASH (IMAGE_INSTANCE_WIDGET_TYPE (i)),
|
428
|
1214 internal_hash (IMAGE_INSTANCE_WIDGET_PROPS (i), depth + 1),
|
442
|
1215 internal_hash (IMAGE_INSTANCE_WIDGET_ITEMS (i), depth + 1),
|
|
1216 internal_hash (IMAGE_INSTANCE_LAYOUT_CHILDREN (i),
|
|
1217 depth + 1));
|
438
|
1218 case IMAGE_SUBWINDOW:
|
442
|
1219 hash = HASH2 (hash, (EMACS_INT) IMAGE_INSTANCE_SUBWINDOW_ID (i));
|
438
|
1220 break;
|
|
1221
|
428
|
1222 default:
|
|
1223 abort ();
|
|
1224 }
|
|
1225
|
442
|
1226 return HASH2 (hash, DEVMETH_OR_GIVEN
|
|
1227 (XDEVICE (image_instance_device (obj)),
|
|
1228 image_instance_hash, (i, depth),
|
|
1229 0));
|
428
|
1230 }
|
|
1231
|
|
1232 DEFINE_LRECORD_IMPLEMENTATION ("image-instance", image_instance,
|
|
1233 mark_image_instance, print_image_instance,
|
|
1234 finalize_image_instance, image_instance_equal,
|
|
1235 image_instance_hash, 0,
|
440
|
1236 Lisp_Image_Instance);
|
428
|
1237
|
|
1238 static Lisp_Object
|
442
|
1239 allocate_image_instance (Lisp_Object governing_domain, Lisp_Object parent,
|
|
1240 Lisp_Object instantiator)
|
428
|
1241 {
|
440
|
1242 Lisp_Image_Instance *lp =
|
|
1243 alloc_lcrecord_type (Lisp_Image_Instance, &lrecord_image_instance);
|
428
|
1244 Lisp_Object val;
|
|
1245
|
|
1246 zero_lcrecord (lp);
|
442
|
1247 /* It's not possible to simply keep a record of the domain in which
|
|
1248 the instance was instantiated. This is because caching may mean
|
|
1249 that the domain becomes invalid but the instance remains
|
|
1250 valid. However, the only truly relevant domain is the domain in
|
|
1251 which the instance is cached since this is the one that will be
|
|
1252 common to the instances. */
|
|
1253 lp->domain = governing_domain;
|
|
1254 /* The cache domain is not quite sufficient since the domain can get
|
|
1255 deleted before the image instance does. We need to know the
|
|
1256 domain device in order to finalize the image instance
|
|
1257 properly. We therefore record the device also. */
|
|
1258 lp->device = DOMAIN_DEVICE (governing_domain);
|
428
|
1259 lp->type = IMAGE_NOTHING;
|
|
1260 lp->name = Qnil;
|
|
1261 lp->x_offset = 0;
|
|
1262 lp->y_offset = 0;
|
442
|
1263 lp->width = IMAGE_UNSPECIFIED_GEOMETRY;
|
|
1264 lp->margin_width = 0;
|
|
1265 lp->height = IMAGE_UNSPECIFIED_GEOMETRY;
|
|
1266 lp->parent = parent;
|
|
1267 lp->instantiator = instantiator;
|
|
1268 /* So that layouts get done. */
|
|
1269 lp->layout_changed = 1;
|
|
1270 lp->initialized = 0;
|
|
1271
|
793
|
1272 val = wrap_image_instance (lp);
|
442
|
1273 MARK_GLYPHS_CHANGED;
|
|
1274
|
428
|
1275 return val;
|
|
1276 }
|
|
1277
|
|
1278 static enum image_instance_type
|
578
|
1279 decode_image_instance_type (Lisp_Object type, Error_Behavior errb)
|
428
|
1280 {
|
|
1281 if (ERRB_EQ (errb, ERROR_ME))
|
|
1282 CHECK_SYMBOL (type);
|
|
1283
|
|
1284 if (EQ (type, Qnothing)) return IMAGE_NOTHING;
|
|
1285 if (EQ (type, Qtext)) return IMAGE_TEXT;
|
|
1286 if (EQ (type, Qmono_pixmap)) return IMAGE_MONO_PIXMAP;
|
|
1287 if (EQ (type, Qcolor_pixmap)) return IMAGE_COLOR_PIXMAP;
|
|
1288 if (EQ (type, Qpointer)) return IMAGE_POINTER;
|
|
1289 if (EQ (type, Qsubwindow)) return IMAGE_SUBWINDOW;
|
|
1290 if (EQ (type, Qwidget)) return IMAGE_WIDGET;
|
|
1291
|
563
|
1292 maybe_invalid_constant ("Invalid image-instance type", type,
|
428
|
1293 Qimage, errb);
|
|
1294
|
|
1295 return IMAGE_UNKNOWN; /* not reached */
|
|
1296 }
|
|
1297
|
|
1298 static Lisp_Object
|
|
1299 encode_image_instance_type (enum image_instance_type type)
|
|
1300 {
|
|
1301 switch (type)
|
|
1302 {
|
|
1303 case IMAGE_NOTHING: return Qnothing;
|
|
1304 case IMAGE_TEXT: return Qtext;
|
|
1305 case IMAGE_MONO_PIXMAP: return Qmono_pixmap;
|
|
1306 case IMAGE_COLOR_PIXMAP: return Qcolor_pixmap;
|
|
1307 case IMAGE_POINTER: return Qpointer;
|
|
1308 case IMAGE_SUBWINDOW: return Qsubwindow;
|
|
1309 case IMAGE_WIDGET: return Qwidget;
|
|
1310 default:
|
|
1311 abort ();
|
|
1312 }
|
|
1313
|
|
1314 return Qnil; /* not reached */
|
|
1315 }
|
|
1316
|
|
1317 static int
|
|
1318 decode_image_instance_type_list (Lisp_Object list)
|
|
1319 {
|
|
1320 Lisp_Object rest;
|
|
1321 int mask = 0;
|
|
1322
|
|
1323 if (NILP (list))
|
|
1324 return ~0;
|
|
1325
|
|
1326 if (!CONSP (list))
|
|
1327 {
|
|
1328 enum image_instance_type type =
|
|
1329 decode_image_instance_type (list, ERROR_ME);
|
|
1330 return image_instance_type_to_mask (type);
|
|
1331 }
|
|
1332
|
|
1333 EXTERNAL_LIST_LOOP (rest, list)
|
|
1334 {
|
|
1335 enum image_instance_type type =
|
|
1336 decode_image_instance_type (XCAR (rest), ERROR_ME);
|
|
1337 mask |= image_instance_type_to_mask (type);
|
|
1338 }
|
|
1339
|
|
1340 return mask;
|
|
1341 }
|
|
1342
|
|
1343 static Lisp_Object
|
|
1344 encode_image_instance_type_list (int mask)
|
|
1345 {
|
|
1346 int count = 0;
|
|
1347 Lisp_Object result = Qnil;
|
|
1348
|
|
1349 while (mask)
|
|
1350 {
|
|
1351 count++;
|
|
1352 if (mask & 1)
|
|
1353 result = Fcons (encode_image_instance_type
|
|
1354 ((enum image_instance_type) count), result);
|
|
1355 mask >>= 1;
|
|
1356 }
|
|
1357
|
|
1358 return Fnreverse (result);
|
|
1359 }
|
|
1360
|
|
1361 DOESNT_RETURN
|
|
1362 incompatible_image_types (Lisp_Object instantiator, int given_dest_mask,
|
|
1363 int desired_dest_mask)
|
|
1364 {
|
563
|
1365 signal_error_1
|
|
1366 (Qinvalid_argument,
|
428
|
1367 list2
|
771
|
1368 (emacs_sprintf_string_lisp
|
|
1369 ("No compatible image-instance types given: wanted one of %s, got %s",
|
|
1370 Qnil, 2, encode_image_instance_type_list (desired_dest_mask),
|
428
|
1371 encode_image_instance_type_list (given_dest_mask)),
|
|
1372 instantiator));
|
|
1373 }
|
|
1374
|
|
1375 static int
|
|
1376 valid_image_instance_type_p (Lisp_Object type)
|
|
1377 {
|
|
1378 return !NILP (memq_no_quit (type, Vimage_instance_type_list));
|
|
1379 }
|
|
1380
|
|
1381 DEFUN ("valid-image-instance-type-p", Fvalid_image_instance_type_p, 1, 1, 0, /*
|
|
1382 Given an IMAGE-INSTANCE-TYPE, return non-nil if it is valid.
|
|
1383 Valid types are some subset of 'nothing, 'text, 'mono-pixmap, 'color-pixmap,
|
442
|
1384 'pointer, 'subwindow, and 'widget, depending on how XEmacs was compiled.
|
428
|
1385 */
|
|
1386 (image_instance_type))
|
|
1387 {
|
|
1388 return valid_image_instance_type_p (image_instance_type) ? Qt : Qnil;
|
|
1389 }
|
|
1390
|
|
1391 DEFUN ("image-instance-type-list", Fimage_instance_type_list, 0, 0, 0, /*
|
|
1392 Return a list of valid image-instance types.
|
|
1393 */
|
|
1394 ())
|
|
1395 {
|
|
1396 return Fcopy_sequence (Vimage_instance_type_list);
|
|
1397 }
|
|
1398
|
578
|
1399 Error_Behavior
|
444
|
1400 decode_error_behavior_flag (Lisp_Object noerror)
|
|
1401 {
|
|
1402 if (NILP (noerror)) return ERROR_ME;
|
|
1403 else if (EQ (noerror, Qt)) return ERROR_ME_NOT;
|
793
|
1404 else if (EQ (noerror, Qdebug)) return ERROR_ME_DEBUG_WARN;
|
444
|
1405 else return ERROR_ME_WARN;
|
428
|
1406 }
|
|
1407
|
|
1408 Lisp_Object
|
578
|
1409 encode_error_behavior_flag (Error_Behavior errb)
|
428
|
1410 {
|
|
1411 if (ERRB_EQ (errb, ERROR_ME))
|
|
1412 return Qnil;
|
|
1413 else if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
1414 return Qt;
|
793
|
1415 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN))
|
|
1416 return Qdebug;
|
428
|
1417 else
|
|
1418 {
|
|
1419 assert (ERRB_EQ (errb, ERROR_ME_WARN));
|
|
1420 return Qwarning;
|
|
1421 }
|
|
1422 }
|
|
1423
|
442
|
1424 /* Recurse up the hierarchy looking for the topmost glyph. This means
|
|
1425 that instances in layouts will inherit face properties from their
|
|
1426 parent. */
|
|
1427 Lisp_Object image_instance_parent_glyph (Lisp_Image_Instance* ii)
|
|
1428 {
|
|
1429 if (IMAGE_INSTANCEP (IMAGE_INSTANCE_PARENT (ii)))
|
|
1430 {
|
|
1431 return image_instance_parent_glyph
|
|
1432 (XIMAGE_INSTANCE (IMAGE_INSTANCE_PARENT (ii)));
|
|
1433 }
|
|
1434 return IMAGE_INSTANCE_PARENT (ii);
|
|
1435 }
|
|
1436
|
428
|
1437 static Lisp_Object
|
442
|
1438 make_image_instance_1 (Lisp_Object data, Lisp_Object domain,
|
428
|
1439 Lisp_Object dest_types)
|
|
1440 {
|
|
1441 Lisp_Object ii;
|
|
1442 struct gcpro gcpro1;
|
|
1443 int dest_mask;
|
442
|
1444 Lisp_Object governing_domain;
|
|
1445
|
428
|
1446 if (IMAGE_INSTANCEP (data))
|
563
|
1447 invalid_argument ("Image instances not allowed here", data);
|
428
|
1448 image_validate (data);
|
442
|
1449 domain = decode_domain (domain);
|
|
1450 /* instantiate_image_instantiator() will abort if given an
|
|
1451 image instance ... */
|
428
|
1452 dest_mask = decode_image_instance_type_list (dest_types);
|
442
|
1453 data = normalize_image_instantiator (data,
|
|
1454 DEVICE_TYPE (DOMAIN_XDEVICE (domain)),
|
428
|
1455 make_int (dest_mask));
|
|
1456 GCPRO1 (data);
|
442
|
1457 /* After normalizing the data, it's always either an image instance (which
|
|
1458 we filtered out above) or a vector. */
|
450
|
1459 if (EQ (INSTANTIATOR_TYPE (data), Qinherit))
|
563
|
1460 invalid_argument ("Inheritance not allowed here", data);
|
442
|
1461 governing_domain =
|
|
1462 get_image_instantiator_governing_domain (data, domain);
|
|
1463 ii = instantiate_image_instantiator (governing_domain, domain, data,
|
438
|
1464 Qnil, Qnil, dest_mask, Qnil);
|
428
|
1465 RETURN_UNGCPRO (ii);
|
|
1466 }
|
|
1467
|
|
1468 DEFUN ("make-image-instance", Fmake_image_instance, 1, 4, 0, /*
|
|
1469 Return a new `image-instance' object.
|
|
1470
|
|
1471 Image-instance objects encapsulate the way a particular image (pixmap,
|
|
1472 etc.) is displayed on a particular device. In most circumstances, you
|
|
1473 do not need to directly create image instances; use a glyph instead.
|
|
1474 However, it may occasionally be useful to explicitly create image
|
|
1475 instances, if you want more control over the instantiation process.
|
|
1476
|
|
1477 DATA is an image instantiator, which describes the image; see
|
442
|
1478 `make-image-specifier' for a description of the allowed values.
|
428
|
1479
|
|
1480 DEST-TYPES should be a list of allowed image instance types that can
|
|
1481 be generated. The recognized image instance types are
|
|
1482
|
|
1483 'nothing
|
|
1484 Nothing is displayed.
|
|
1485 'text
|
|
1486 Displayed as text. The foreground and background colors and the
|
|
1487 font of the text are specified independent of the pixmap. Typically
|
|
1488 these attributes will come from the face of the surrounding text,
|
|
1489 unless a face is specified for the glyph in which the image appears.
|
|
1490 'mono-pixmap
|
|
1491 Displayed as a mono pixmap (a pixmap with only two colors where the
|
|
1492 foreground and background can be specified independent of the pixmap;
|
|
1493 typically the pixmap assumes the foreground and background colors of
|
|
1494 the text around it, unless a face is specified for the glyph in which
|
|
1495 the image appears).
|
|
1496 'color-pixmap
|
|
1497 Displayed as a color pixmap.
|
|
1498 'pointer
|
|
1499 Used as the mouse pointer for a window.
|
|
1500 'subwindow
|
|
1501 A child window that is treated as an image. This allows (e.g.)
|
|
1502 another program to be responsible for drawing into the window.
|
|
1503 'widget
|
|
1504 A child window that contains a window-system widget, e.g. a push
|
442
|
1505 button, text field, or slider.
|
|
1506
|
|
1507 The DEST-TYPES list is unordered. If multiple destination types are
|
|
1508 possible for a given instantiator, the "most natural" type for the
|
|
1509 instantiator's format is chosen. (For XBM, the most natural types are
|
|
1510 `mono-pixmap', followed by `color-pixmap', followed by `pointer'. For
|
|
1511 the other normal image formats, the most natural types are
|
|
1512 `color-pixmap', followed by `mono-pixmap', followed by `pointer'. For
|
|
1513 the string and formatted-string formats, the most natural types are
|
|
1514 `text', followed by `mono-pixmap' (not currently implemented),
|
|
1515 followed by `color-pixmap' (not currently implemented). For MS
|
|
1516 Windows resources, the most natural type for pointer resources is
|
|
1517 `pointer', and for the others it's `color-pixmap'. The other formats
|
|
1518 can only be instantiated as one type. (If you want to control more
|
|
1519 specifically the order of the types into which an image is
|
|
1520 instantiated, just call `make-image-instance' repeatedly until it
|
|
1521 succeeds, passing less and less preferred destination types each
|
|
1522 time.)
|
|
1523
|
|
1524 See `make-image-specifier' for a description of the different image
|
|
1525 instantiator formats.
|
428
|
1526
|
|
1527 If DEST-TYPES is omitted, all possible types are allowed.
|
|
1528
|
442
|
1529 DOMAIN specifies the domain to which the image instance will be attached.
|
|
1530 This domain is termed the \"governing domain\". The type of the governing
|
|
1531 domain depends on the image instantiator format. (Although, more correctly,
|
|
1532 it should probably depend on the image instance type.) For example, pixmap
|
|
1533 image instances are specific to a device, but widget image instances are
|
|
1534 specific to a particular XEmacs window because in order to display such a
|
|
1535 widget when two windows onto the same buffer want to display the widget,
|
|
1536 two separate underlying widgets must be created. (That's because a widget
|
|
1537 is actually a child window-system window, and all window-system windows have
|
|
1538 a unique existence on the screen.) This means that the governing domain for
|
|
1539 a pixmap image instance will be some device (most likely, the only existing
|
|
1540 device), whereas the governing domain for a widget image instance will be
|
|
1541 some XEmacs window.
|
|
1542
|
|
1543 If you specify an overly general DOMAIN (e.g. a frame when a window was
|
|
1544 wanted), an error is signaled. If you specify an overly specific DOMAIN
|
|
1545 \(e.g. a window when a device was wanted), the corresponding general domain
|
|
1546 is fetched and used instead. For `make-image-instance', it makes no
|
|
1547 difference whether you specify an overly specific domain or the properly
|
|
1548 general domain derived from it. However, it does matter when creating an
|
|
1549 image instance by instantiating a specifier or glyph (e.g. with
|
|
1550 `glyph-image-instance'), because the more specific domain causes spec lookup
|
|
1551 to start there and proceed to more general domains. (It would also matter
|
|
1552 when creating an image instance with an instantiator format of `inherit',
|
|
1553 but we currently disallow this. #### We should fix this.)
|
|
1554
|
|
1555 If omitted, DOMAIN defaults to the selected window.
|
|
1556
|
444
|
1557 NOERROR controls what happens when the image cannot be generated.
|
428
|
1558 If nil, an error message is generated. If t, no messages are
|
|
1559 generated and this function returns nil. If anything else, a warning
|
440
|
1560 message is generated and this function returns nil.
|
428
|
1561 */
|
444
|
1562 (data, domain, dest_types, noerror))
|
|
1563 {
|
578
|
1564 Error_Behavior errb = decode_error_behavior_flag (noerror);
|
428
|
1565
|
|
1566 return call_with_suspended_errors ((lisp_fn_t) make_image_instance_1,
|
|
1567 Qnil, Qimage, errb,
|
442
|
1568 3, data, domain, dest_types);
|
428
|
1569 }
|
|
1570
|
|
1571 DEFUN ("image-instance-p", Fimage_instance_p, 1, 1, 0, /*
|
|
1572 Return non-nil if OBJECT is an image instance.
|
|
1573 */
|
|
1574 (object))
|
|
1575 {
|
|
1576 return IMAGE_INSTANCEP (object) ? Qt : Qnil;
|
|
1577 }
|
|
1578
|
|
1579 DEFUN ("image-instance-type", Fimage_instance_type, 1, 1, 0, /*
|
|
1580 Return the type of the given image instance.
|
|
1581 The return value will be one of 'nothing, 'text, 'mono-pixmap,
|
|
1582 'color-pixmap, 'pointer, or 'subwindow.
|
|
1583 */
|
|
1584 (image_instance))
|
|
1585 {
|
|
1586 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1587 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1588 return encode_image_instance_type (XIMAGE_INSTANCE_TYPE (image_instance));
|
|
1589 }
|
|
1590
|
|
1591 DEFUN ("image-instance-name", Fimage_instance_name, 1, 1, 0, /*
|
|
1592 Return the name of the given image instance.
|
|
1593 */
|
|
1594 (image_instance))
|
|
1595 {
|
|
1596 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1597 return XIMAGE_INSTANCE_NAME (image_instance);
|
|
1598 }
|
|
1599
|
872
|
1600 DEFUN ("image-instance-instantiator", Fimage_instance_instantiator, 1, 1, 0, /*
|
|
1601 Return the instantiator that was used to create the image instance.
|
|
1602 */
|
|
1603 (image_instance))
|
|
1604 {
|
|
1605 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1606 return XIMAGE_INSTANCE_INSTANTIATOR (image_instance);
|
|
1607 }
|
|
1608
|
442
|
1609 DEFUN ("image-instance-domain", Fimage_instance_domain, 1, 1, 0, /*
|
|
1610 Return the governing domain of the given image instance.
|
|
1611 The governing domain of an image instance is the domain that the image
|
|
1612 instance is specific to. It is NOT necessarily the domain that was
|
|
1613 given to the call to `specifier-instance' that resulted in the creation
|
|
1614 of this image instance. See `make-image-instance' for more information
|
|
1615 on governing domains.
|
|
1616 */
|
|
1617 (image_instance))
|
|
1618 {
|
|
1619 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1620 return XIMAGE_INSTANCE_DOMAIN (image_instance);
|
|
1621 }
|
|
1622
|
428
|
1623 DEFUN ("image-instance-string", Fimage_instance_string, 1, 1, 0, /*
|
|
1624 Return the string of the given image instance.
|
|
1625 This will only be non-nil for text image instances and widgets.
|
|
1626 */
|
|
1627 (image_instance))
|
|
1628 {
|
|
1629 CHECK_IMAGE_INSTANCE (image_instance);
|
|
1630 if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_TEXT)
|
|
1631 return XIMAGE_INSTANCE_TEXT_STRING (image_instance);
|
|
1632 else if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_WIDGET)
|
|
1633 return XIMAGE_INSTANCE_WIDGET_TEXT (image_instance);
|
|
1634 else
|
|
1635 return Qnil;
|
|
1636 }
|
|
1637
|
|
1638 DEFUN ("image-instance-property", Fimage_instance_property, 2, 2, 0, /*
|
440
|
1639 Return the given property of the given image instance.
|
428
|
1640 Returns nil if the property or the property method do not exist for
|
440
|
1641 the image instance in the domain.
|
428
|
1642 */
|
|
1643 (image_instance, prop))
|
|
1644 {
|
440
|
1645 Lisp_Image_Instance* ii;
|
428
|
1646 Lisp_Object type, ret;
|
|
1647 struct image_instantiator_methods* meths;
|
|
1648
|
|
1649 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1650 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1651 CHECK_SYMBOL (prop);
|
|
1652 ii = XIMAGE_INSTANCE (image_instance);
|
|
1653
|
|
1654 /* ... then try device specific methods ... */
|
|
1655 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
|
442
|
1656 meths = decode_device_ii_format (image_instance_device (image_instance),
|
428
|
1657 type, ERROR_ME_NOT);
|
|
1658 if (meths && HAS_IIFORMAT_METH_P (meths, property)
|
440
|
1659 &&
|
428
|
1660 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
|
|
1661 {
|
|
1662 return ret;
|
|
1663 }
|
|
1664 /* ... then format specific methods ... */
|
|
1665 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
|
|
1666 if (meths && HAS_IIFORMAT_METH_P (meths, property)
|
|
1667 &&
|
|
1668 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
|
|
1669 {
|
|
1670 return ret;
|
|
1671 }
|
|
1672 /* ... then fail */
|
|
1673 return Qnil;
|
|
1674 }
|
|
1675
|
|
1676 DEFUN ("image-instance-file-name", Fimage_instance_file_name, 1, 1, 0, /*
|
|
1677 Return the file name from which IMAGE-INSTANCE was read, if known.
|
|
1678 */
|
|
1679 (image_instance))
|
|
1680 {
|
|
1681 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1682 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1683
|
|
1684 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1685 {
|
|
1686 case IMAGE_MONO_PIXMAP:
|
|
1687 case IMAGE_COLOR_PIXMAP:
|
|
1688 case IMAGE_POINTER:
|
|
1689 return XIMAGE_INSTANCE_PIXMAP_FILENAME (image_instance);
|
|
1690
|
|
1691 default:
|
|
1692 return Qnil;
|
|
1693 }
|
|
1694 }
|
|
1695
|
|
1696 DEFUN ("image-instance-mask-file-name", Fimage_instance_mask_file_name, 1, 1, 0, /*
|
|
1697 Return the file name from which IMAGE-INSTANCE's mask was read, if known.
|
|
1698 */
|
|
1699 (image_instance))
|
|
1700 {
|
|
1701 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1702 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1703
|
|
1704 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1705 {
|
|
1706 case IMAGE_MONO_PIXMAP:
|
|
1707 case IMAGE_COLOR_PIXMAP:
|
|
1708 case IMAGE_POINTER:
|
|
1709 return XIMAGE_INSTANCE_PIXMAP_MASK_FILENAME (image_instance);
|
|
1710
|
|
1711 default:
|
|
1712 return Qnil;
|
|
1713 }
|
|
1714 }
|
|
1715
|
|
1716 DEFUN ("image-instance-depth", Fimage_instance_depth, 1, 1, 0, /*
|
|
1717 Return the depth of the image instance.
|
|
1718 This is 0 for a bitmap, or a positive integer for a pixmap.
|
|
1719 */
|
|
1720 (image_instance))
|
|
1721 {
|
|
1722 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1723 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1724
|
|
1725 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1726 {
|
|
1727 case IMAGE_MONO_PIXMAP:
|
|
1728 case IMAGE_COLOR_PIXMAP:
|
|
1729 case IMAGE_POINTER:
|
|
1730 return make_int (XIMAGE_INSTANCE_PIXMAP_DEPTH (image_instance));
|
|
1731
|
|
1732 default:
|
|
1733 return Qnil;
|
|
1734 }
|
|
1735 }
|
|
1736
|
|
1737 DEFUN ("image-instance-height", Fimage_instance_height, 1, 1, 0, /*
|
|
1738 Return the height of the image instance, in pixels.
|
|
1739 */
|
|
1740 (image_instance))
|
|
1741 {
|
|
1742 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1743 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1744
|
|
1745 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1746 {
|
|
1747 case IMAGE_MONO_PIXMAP:
|
|
1748 case IMAGE_COLOR_PIXMAP:
|
|
1749 case IMAGE_POINTER:
|
|
1750 case IMAGE_SUBWINDOW:
|
|
1751 case IMAGE_WIDGET:
|
438
|
1752 return make_int (XIMAGE_INSTANCE_HEIGHT (image_instance));
|
428
|
1753
|
|
1754 default:
|
|
1755 return Qnil;
|
|
1756 }
|
|
1757 }
|
|
1758
|
|
1759 DEFUN ("image-instance-width", Fimage_instance_width, 1, 1, 0, /*
|
|
1760 Return the width of the image instance, in pixels.
|
|
1761 */
|
|
1762 (image_instance))
|
|
1763 {
|
|
1764 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1765 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1766
|
|
1767 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1768 {
|
|
1769 case IMAGE_MONO_PIXMAP:
|
|
1770 case IMAGE_COLOR_PIXMAP:
|
|
1771 case IMAGE_POINTER:
|
|
1772 case IMAGE_SUBWINDOW:
|
|
1773 case IMAGE_WIDGET:
|
438
|
1774 return make_int (XIMAGE_INSTANCE_WIDTH (image_instance));
|
428
|
1775
|
|
1776 default:
|
|
1777 return Qnil;
|
|
1778 }
|
|
1779 }
|
|
1780
|
|
1781 DEFUN ("image-instance-hotspot-x", Fimage_instance_hotspot_x, 1, 1, 0, /*
|
|
1782 Return the X coordinate of the image instance's hotspot, if known.
|
|
1783 This is a point relative to the origin of the pixmap. When an image is
|
|
1784 used as a mouse pointer, the hotspot is the point on the image that sits
|
|
1785 over the location that the pointer points to. This is, for example, the
|
|
1786 tip of the arrow or the center of the crosshairs.
|
|
1787 This will always be nil for a non-pointer image instance.
|
|
1788 */
|
|
1789 (image_instance))
|
|
1790 {
|
|
1791 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1792 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1793
|
|
1794 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1795 {
|
|
1796 case IMAGE_MONO_PIXMAP:
|
|
1797 case IMAGE_COLOR_PIXMAP:
|
|
1798 case IMAGE_POINTER:
|
|
1799 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (image_instance);
|
|
1800
|
|
1801 default:
|
|
1802 return Qnil;
|
|
1803 }
|
|
1804 }
|
|
1805
|
|
1806 DEFUN ("image-instance-hotspot-y", Fimage_instance_hotspot_y, 1, 1, 0, /*
|
|
1807 Return the Y coordinate of the image instance's hotspot, if known.
|
|
1808 This is a point relative to the origin of the pixmap. When an image is
|
|
1809 used as a mouse pointer, the hotspot is the point on the image that sits
|
|
1810 over the location that the pointer points to. This is, for example, the
|
|
1811 tip of the arrow or the center of the crosshairs.
|
|
1812 This will always be nil for a non-pointer image instance.
|
|
1813 */
|
|
1814 (image_instance))
|
|
1815 {
|
|
1816 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1817 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1818
|
|
1819 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1820 {
|
|
1821 case IMAGE_MONO_PIXMAP:
|
|
1822 case IMAGE_COLOR_PIXMAP:
|
|
1823 case IMAGE_POINTER:
|
|
1824 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (image_instance);
|
|
1825
|
|
1826 default:
|
|
1827 return Qnil;
|
|
1828 }
|
|
1829 }
|
|
1830
|
|
1831 DEFUN ("image-instance-foreground", Fimage_instance_foreground, 1, 1, 0, /*
|
|
1832 Return the foreground color of IMAGE-INSTANCE, if applicable.
|
|
1833 This will be a color instance or nil. (It will only be non-nil for
|
|
1834 colorized mono pixmaps and for pointers.)
|
|
1835 */
|
|
1836 (image_instance))
|
|
1837 {
|
|
1838 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1839 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1840
|
|
1841 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1842 {
|
|
1843 case IMAGE_MONO_PIXMAP:
|
|
1844 case IMAGE_COLOR_PIXMAP:
|
|
1845 case IMAGE_POINTER:
|
|
1846 return XIMAGE_INSTANCE_PIXMAP_FG (image_instance);
|
|
1847
|
|
1848 case IMAGE_WIDGET:
|
|
1849 return FACE_FOREGROUND (
|
|
1850 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
|
442
|
1851 XIMAGE_INSTANCE_FRAME
|
428
|
1852 (image_instance));
|
|
1853
|
|
1854 default:
|
|
1855 return Qnil;
|
|
1856 }
|
|
1857 }
|
|
1858
|
|
1859 DEFUN ("image-instance-background", Fimage_instance_background, 1, 1, 0, /*
|
|
1860 Return the background color of IMAGE-INSTANCE, if applicable.
|
|
1861 This will be a color instance or nil. (It will only be non-nil for
|
|
1862 colorized mono pixmaps and for pointers.)
|
|
1863 */
|
|
1864 (image_instance))
|
|
1865 {
|
|
1866 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1867 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1868
|
|
1869 switch (XIMAGE_INSTANCE_TYPE (image_instance))
|
|
1870 {
|
|
1871 case IMAGE_MONO_PIXMAP:
|
|
1872 case IMAGE_COLOR_PIXMAP:
|
|
1873 case IMAGE_POINTER:
|
|
1874 return XIMAGE_INSTANCE_PIXMAP_BG (image_instance);
|
|
1875
|
|
1876 case IMAGE_WIDGET:
|
|
1877 return FACE_BACKGROUND (
|
|
1878 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
|
442
|
1879 XIMAGE_INSTANCE_FRAME
|
428
|
1880 (image_instance));
|
|
1881
|
|
1882 default:
|
|
1883 return Qnil;
|
|
1884 }
|
|
1885 }
|
|
1886
|
|
1887
|
|
1888 DEFUN ("colorize-image-instance", Fcolorize_image_instance, 3, 3, 0, /*
|
|
1889 Make the image instance be displayed in the given colors.
|
|
1890 This function returns a new image instance that is exactly like the
|
|
1891 specified one except that (if possible) the foreground and background
|
|
1892 colors and as specified. Currently, this only does anything if the image
|
|
1893 instance is a mono pixmap; otherwise, the same image instance is returned.
|
|
1894 */
|
|
1895 (image_instance, foreground, background))
|
|
1896 {
|
|
1897 Lisp_Object new;
|
|
1898 Lisp_Object device;
|
|
1899
|
|
1900 CHECK_IMAGE_INSTANCE (image_instance);
|
442
|
1901 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
428
|
1902 CHECK_COLOR_INSTANCE (foreground);
|
|
1903 CHECK_COLOR_INSTANCE (background);
|
|
1904
|
442
|
1905 device = image_instance_device (image_instance);
|
428
|
1906 if (!HAS_DEVMETH_P (XDEVICE (device), colorize_image_instance))
|
|
1907 return image_instance;
|
|
1908
|
430
|
1909 /* #### There should be a copy_image_instance(), which calls a
|
|
1910 device-specific method to copy the window-system subobject. */
|
442
|
1911 new = allocate_image_instance (XIMAGE_INSTANCE_DOMAIN (image_instance),
|
|
1912 Qnil, Qnil);
|
428
|
1913 copy_lcrecord (XIMAGE_INSTANCE (new), XIMAGE_INSTANCE (image_instance));
|
|
1914 /* note that if this method returns non-zero, this method MUST
|
|
1915 copy any window-system resources, so that when one image instance is
|
|
1916 freed, the other one is not hosed. */
|
|
1917 if (!DEVMETH (XDEVICE (device), colorize_image_instance, (new, foreground,
|
|
1918 background)))
|
|
1919 return image_instance;
|
|
1920 return new;
|
|
1921 }
|
|
1922
|
438
|
1923
|
|
1924 /************************************************************************/
|
|
1925 /* Geometry calculations */
|
|
1926 /************************************************************************/
|
|
1927
|
|
1928 /* Find out desired geometry of the image instance. If there is no
|
|
1929 special function then just return the width and / or height. */
|
|
1930 void
|
440
|
1931 image_instance_query_geometry (Lisp_Object image_instance,
|
442
|
1932 int* width, int* height,
|
438
|
1933 enum image_instance_geometry disp,
|
|
1934 Lisp_Object domain)
|
|
1935 {
|
440
|
1936 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
|
438
|
1937 Lisp_Object type;
|
|
1938 struct image_instantiator_methods* meths;
|
442
|
1939 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
438
|
1940
|
|
1941 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
|
|
1942 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
|
440
|
1943
|
438
|
1944 if (meths && HAS_IIFORMAT_METH_P (meths, query_geometry))
|
|
1945 {
|
440
|
1946 IIFORMAT_METH (meths, query_geometry, (image_instance, width, height,
|
438
|
1947 disp, domain));
|
|
1948 }
|
|
1949 else
|
|
1950 {
|
|
1951 if (width)
|
|
1952 *width = IMAGE_INSTANCE_WIDTH (ii);
|
|
1953 if (height)
|
|
1954 *height = IMAGE_INSTANCE_HEIGHT (ii);
|
|
1955 }
|
|
1956 }
|
|
1957
|
|
1958 /* Layout the image instance using the provided dimensions. Layout
|
|
1959 widgets are going to do different kinds of calculations to
|
|
1960 determine what size to give things so we could make the layout
|
|
1961 function relatively simple to take account of that. An alternative
|
|
1962 approach is to consider separately the two cases, one where you
|
|
1963 don't mind what size you have (normal widgets) and one where you
|
442
|
1964 want to specify something (layout widgets). */
|
438
|
1965 void
|
440
|
1966 image_instance_layout (Lisp_Object image_instance,
|
442
|
1967 int width, int height,
|
|
1968 int xoffset, int yoffset,
|
438
|
1969 Lisp_Object domain)
|
|
1970 {
|
440
|
1971 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
|
438
|
1972 Lisp_Object type;
|
|
1973 struct image_instantiator_methods* meths;
|
|
1974
|
442
|
1975 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
|
1976
|
|
1977 /* Nothing is as nothing does. */
|
|
1978 if (NOTHING_IMAGE_INSTANCEP (image_instance))
|
|
1979 return;
|
|
1980
|
|
1981 /* We don't want carefully calculated offsets to be mucked up by
|
|
1982 random layouts. */
|
|
1983 if (xoffset != IMAGE_UNCHANGED_GEOMETRY)
|
|
1984 XIMAGE_INSTANCE_XOFFSET (image_instance) = xoffset;
|
|
1985 if (yoffset != IMAGE_UNCHANGED_GEOMETRY)
|
|
1986 XIMAGE_INSTANCE_YOFFSET (image_instance) = yoffset;
|
|
1987
|
|
1988 assert (XIMAGE_INSTANCE_YOFFSET (image_instance) >= 0
|
|
1989 && XIMAGE_INSTANCE_XOFFSET (image_instance) >= 0);
|
|
1990
|
438
|
1991 /* If geometry is unspecified then get some reasonable values for it. */
|
|
1992 if (width == IMAGE_UNSPECIFIED_GEOMETRY
|
|
1993 ||
|
|
1994 height == IMAGE_UNSPECIFIED_GEOMETRY)
|
|
1995 {
|
442
|
1996 int dwidth = IMAGE_UNSPECIFIED_GEOMETRY;
|
|
1997 int dheight = IMAGE_UNSPECIFIED_GEOMETRY;
|
438
|
1998 /* Get the desired geometry. */
|
450
|
1999 image_instance_query_geometry (image_instance,
|
|
2000 &dwidth, &dheight,
|
|
2001 IMAGE_DESIRED_GEOMETRY,
|
|
2002 domain);
|
438
|
2003 /* Compare with allowed geometry. */
|
|
2004 if (width == IMAGE_UNSPECIFIED_GEOMETRY)
|
|
2005 width = dwidth;
|
|
2006 if (height == IMAGE_UNSPECIFIED_GEOMETRY)
|
|
2007 height = dheight;
|
|
2008 }
|
|
2009
|
442
|
2010 /* If we don't have sane values then we cannot layout at this point and
|
|
2011 must just return. */
|
|
2012 if (width == IMAGE_UNSPECIFIED_GEOMETRY
|
|
2013 ||
|
|
2014 height == IMAGE_UNSPECIFIED_GEOMETRY)
|
|
2015 return;
|
|
2016
|
438
|
2017 /* At this point width and height should contain sane values. Thus
|
|
2018 we set the glyph geometry and lay it out. */
|
442
|
2019 if (IMAGE_INSTANCE_WIDTH (ii) != width
|
|
2020 ||
|
|
2021 IMAGE_INSTANCE_HEIGHT (ii) != height)
|
|
2022 {
|
|
2023 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
|
|
2024 }
|
|
2025
|
438
|
2026 IMAGE_INSTANCE_WIDTH (ii) = width;
|
|
2027 IMAGE_INSTANCE_HEIGHT (ii) = height;
|
440
|
2028
|
450
|
2029 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
|
|
2030 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
|
|
2031
|
|
2032 MAYBE_IIFORMAT_METH (meths, layout,
|
|
2033 (image_instance, width, height, xoffset, yoffset,
|
|
2034 domain));
|
|
2035 /* Do not clear the dirty flag here - redisplay will do this for
|
|
2036 us at the end. */
|
|
2037 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 0;
|
442
|
2038 }
|
|
2039
|
|
2040 /* Update an image instance from its changed instantiator. */
|
|
2041 static void
|
|
2042 update_image_instance (Lisp_Object image_instance,
|
|
2043 Lisp_Object instantiator)
|
|
2044 {
|
|
2045 struct image_instantiator_methods* meths;
|
|
2046 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2047
|
|
2048 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
|
2049
|
|
2050 if (NOTHING_IMAGE_INSTANCEP (image_instance))
|
|
2051 return;
|
|
2052
|
|
2053 assert (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0)
|
|
2054 || (internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0)
|
|
2055 && internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, -10)));
|
|
2056
|
|
2057 /* If the instantiator is identical then do nothing. We must use
|
|
2058 equal here because the specifier code copies the instantiator. */
|
|
2059 if (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0))
|
438
|
2060 {
|
442
|
2061 /* Extract the changed properties so that device / format
|
|
2062 methods only have to cope with these. We assume that
|
|
2063 normalization has already been done. */
|
|
2064 Lisp_Object diffs = find_instantiator_differences
|
|
2065 (instantiator,
|
|
2066 IMAGE_INSTANCE_INSTANTIATOR (ii));
|
|
2067 Lisp_Object type = encode_image_instance_type
|
|
2068 (IMAGE_INSTANCE_TYPE (ii));
|
|
2069 struct gcpro gcpro1;
|
|
2070 GCPRO1 (diffs);
|
|
2071
|
|
2072 /* try device specific methods first ... */
|
|
2073 meths = decode_device_ii_format (image_instance_device (image_instance),
|
|
2074 type, ERROR_ME_NOT);
|
|
2075 MAYBE_IIFORMAT_METH (meths, update, (image_instance, diffs));
|
|
2076 /* ... then format specific methods ... */
|
|
2077 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
|
|
2078 MAYBE_IIFORMAT_METH (meths, update, (image_instance, diffs));
|
|
2079
|
|
2080 /* Instance and therefore glyph has changed so mark as dirty.
|
|
2081 If we don't do this output optimizations will assume the
|
|
2082 glyph is unchanged. */
|
|
2083 set_image_instance_dirty_p (image_instance, 1);
|
|
2084 /* Structure has changed. */
|
|
2085 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
|
|
2086
|
|
2087 UNGCPRO;
|
438
|
2088 }
|
442
|
2089 /* We should now have a consistent instantiator so keep a record of
|
|
2090 it. It is important that we don't actually update the window
|
|
2091 system widgets here - we must do that when redisplay tells us
|
|
2092 to.
|
|
2093
|
|
2094 #### should we delay doing this until the display is up-to-date
|
|
2095 also? */
|
|
2096 IMAGE_INSTANCE_INSTANTIATOR (ii) = instantiator;
|
440
|
2097 }
|
|
2098
|
|
2099 /*
|
|
2100 * Mark image instance in W as dirty if (a) W's faces have changed and
|
|
2101 * (b) GLYPH_OR_II instance in W is a string.
|
|
2102 *
|
|
2103 * Return non-zero if instance has been marked dirty.
|
|
2104 */
|
|
2105 int
|
|
2106 invalidate_glyph_geometry_maybe (Lisp_Object glyph_or_ii, struct window* w)
|
|
2107 {
|
|
2108 if (XFRAME(WINDOW_FRAME(w))->faces_changed)
|
|
2109 {
|
|
2110 Lisp_Object image = glyph_or_ii;
|
|
2111
|
|
2112 if (GLYPHP (glyph_or_ii))
|
|
2113 {
|
793
|
2114 Lisp_Object window = wrap_window (w);
|
|
2115
|
|
2116 image = glyph_image_instance (glyph_or_ii, window,
|
|
2117 ERROR_ME_DEBUG_WARN, 1);
|
440
|
2118 }
|
|
2119
|
|
2120 if (TEXT_IMAGE_INSTANCEP (image))
|
|
2121 {
|
442
|
2122 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image);
|
|
2123 IMAGE_INSTANCE_DIRTYP (ii) = 1;
|
|
2124 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
|
440
|
2125 if (GLYPHP (glyph_or_ii))
|
|
2126 XGLYPH_DIRTYP (glyph_or_ii) = 1;
|
|
2127 return 1;
|
|
2128 }
|
|
2129 }
|
|
2130
|
|
2131 return 0;
|
438
|
2132 }
|
|
2133
|
428
|
2134
|
|
2135 /************************************************************************/
|
|
2136 /* error helpers */
|
|
2137 /************************************************************************/
|
|
2138 DOESNT_RETURN
|
867
|
2139 signal_image_error (const CIbyte *reason, Lisp_Object frob)
|
428
|
2140 {
|
563
|
2141 signal_error (Qimage_conversion_error, reason, frob);
|
428
|
2142 }
|
|
2143
|
|
2144 DOESNT_RETURN
|
867
|
2145 signal_image_error_2 (const CIbyte *reason, Lisp_Object frob0, Lisp_Object frob1)
|
428
|
2146 {
|
563
|
2147 signal_error_2 (Qimage_conversion_error, reason, frob0, frob1);
|
|
2148 }
|
|
2149
|
|
2150 DOESNT_RETURN
|
867
|
2151 signal_double_image_error (const CIbyte *string1, const CIbyte *string2,
|
563
|
2152 Lisp_Object data)
|
|
2153 {
|
|
2154 signal_error_1 (Qimage_conversion_error,
|
771
|
2155 list3 (build_msg_string (string1),
|
|
2156 build_msg_string (string2),
|
563
|
2157 data));
|
|
2158 }
|
|
2159
|
|
2160 DOESNT_RETURN
|
867
|
2161 signal_double_image_error_2 (const CIbyte *string1, const CIbyte *string2,
|
563
|
2162 Lisp_Object data1, Lisp_Object data2)
|
|
2163 {
|
|
2164 signal_error_1 (Qimage_conversion_error,
|
771
|
2165 list4 (build_msg_string (string1),
|
|
2166 build_msg_string (string2),
|
563
|
2167 data1, data2));
|
428
|
2168 }
|
|
2169
|
|
2170 /****************************************************************************
|
|
2171 * nothing *
|
|
2172 ****************************************************************************/
|
|
2173
|
|
2174 static int
|
|
2175 nothing_possible_dest_types (void)
|
|
2176 {
|
|
2177 return IMAGE_NOTHING_MASK;
|
|
2178 }
|
|
2179
|
|
2180 static void
|
|
2181 nothing_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2182 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2183 int dest_mask, Lisp_Object domain)
|
|
2184 {
|
440
|
2185 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
428
|
2186
|
|
2187 if (dest_mask & IMAGE_NOTHING_MASK)
|
442
|
2188 {
|
|
2189 IMAGE_INSTANCE_TYPE (ii) = IMAGE_NOTHING;
|
|
2190 IMAGE_INSTANCE_HEIGHT (ii) = 0;
|
|
2191 IMAGE_INSTANCE_WIDTH (ii) = 0;
|
|
2192 }
|
428
|
2193 else
|
|
2194 incompatible_image_types (instantiator, dest_mask, IMAGE_NOTHING_MASK);
|
|
2195 }
|
|
2196
|
|
2197
|
|
2198 /****************************************************************************
|
|
2199 * inherit *
|
|
2200 ****************************************************************************/
|
|
2201
|
|
2202 static void
|
|
2203 inherit_validate (Lisp_Object instantiator)
|
|
2204 {
|
|
2205 face_must_be_present (instantiator);
|
|
2206 }
|
|
2207
|
|
2208 static Lisp_Object
|
442
|
2209 inherit_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2210 Lisp_Object dest_mask)
|
428
|
2211 {
|
|
2212 Lisp_Object face;
|
|
2213
|
|
2214 assert (XVECTOR_LENGTH (inst) == 3);
|
|
2215 face = XVECTOR_DATA (inst)[2];
|
|
2216 if (!FACEP (face))
|
|
2217 inst = vector3 (Qinherit, Q_face, Fget_face (face));
|
|
2218 return inst;
|
|
2219 }
|
|
2220
|
|
2221 static int
|
|
2222 inherit_possible_dest_types (void)
|
|
2223 {
|
|
2224 return IMAGE_MONO_PIXMAP_MASK;
|
|
2225 }
|
|
2226
|
|
2227 static void
|
|
2228 inherit_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2229 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2230 int dest_mask, Lisp_Object domain)
|
|
2231 {
|
|
2232 /* handled specially in image_instantiate */
|
|
2233 abort ();
|
|
2234 }
|
|
2235
|
|
2236
|
|
2237 /****************************************************************************
|
|
2238 * string *
|
|
2239 ****************************************************************************/
|
|
2240
|
|
2241 static void
|
|
2242 string_validate (Lisp_Object instantiator)
|
|
2243 {
|
|
2244 data_must_be_present (instantiator);
|
|
2245 }
|
|
2246
|
|
2247 static int
|
|
2248 string_possible_dest_types (void)
|
|
2249 {
|
|
2250 return IMAGE_TEXT_MASK;
|
|
2251 }
|
|
2252
|
438
|
2253 /* Called from autodetect_instantiate() */
|
428
|
2254 void
|
|
2255 string_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2256 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2257 int dest_mask, Lisp_Object domain)
|
|
2258 {
|
434
|
2259 Lisp_Object string = find_keyword_in_vector (instantiator, Q_data);
|
440
|
2260 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2261
|
438
|
2262 /* Should never get here with a domain other than a window. */
|
442
|
2263 assert (!NILP (string) && WINDOWP (DOMAIN_WINDOW (domain)));
|
428
|
2264 if (dest_mask & IMAGE_TEXT_MASK)
|
|
2265 {
|
|
2266 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
|
434
|
2267 IMAGE_INSTANCE_TEXT_STRING (ii) = string;
|
428
|
2268 }
|
|
2269 else
|
|
2270 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
|
|
2271 }
|
|
2272
|
438
|
2273 /* Sort out the size of the text that is being displayed. Calculating
|
|
2274 it dynamically allows us to change the text and still see
|
|
2275 everything. Note that the following methods are for text not string
|
|
2276 since that is what the instantiated type is. The first method is a
|
|
2277 helper that is used elsewhere for calculating text geometry. */
|
|
2278 void
|
|
2279 query_string_geometry (Lisp_Object string, Lisp_Object face,
|
442
|
2280 int* width, int* height, int* descent, Lisp_Object domain)
|
438
|
2281 {
|
|
2282 struct font_metric_info fm;
|
|
2283 unsigned char charsets[NUM_LEADING_BYTES];
|
|
2284 struct face_cachel frame_cachel;
|
|
2285 struct face_cachel *cachel;
|
442
|
2286 Lisp_Object frame = DOMAIN_FRAME (domain);
|
438
|
2287
|
903
|
2288 CHECK_STRING (string);
|
|
2289
|
438
|
2290 /* Compute height */
|
|
2291 if (height)
|
|
2292 {
|
|
2293 /* Compute string metric info */
|
867
|
2294 find_charsets_in_ibyte_string (charsets,
|
438
|
2295 XSTRING_DATA (string),
|
|
2296 XSTRING_LENGTH (string));
|
440
|
2297
|
438
|
2298 /* Fallback to the default face if none was provided. */
|
|
2299 if (!NILP (face))
|
|
2300 {
|
|
2301 reset_face_cachel (&frame_cachel);
|
|
2302 update_face_cachel_data (&frame_cachel, frame, face);
|
|
2303 cachel = &frame_cachel;
|
|
2304 }
|
|
2305 else
|
|
2306 {
|
442
|
2307 cachel = WINDOW_FACE_CACHEL (DOMAIN_XWINDOW (domain),
|
|
2308 DEFAULT_INDEX);
|
438
|
2309 }
|
440
|
2310
|
438
|
2311 ensure_face_cachel_complete (cachel, domain, charsets);
|
|
2312 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
|
440
|
2313
|
438
|
2314 *height = fm.ascent + fm.descent;
|
|
2315 /* #### descent only gets set if we query the height as well. */
|
|
2316 if (descent)
|
|
2317 *descent = fm.descent;
|
|
2318 }
|
440
|
2319
|
438
|
2320 /* Compute width */
|
|
2321 if (width)
|
|
2322 {
|
|
2323 if (!NILP (face))
|
|
2324 *width = redisplay_frame_text_width_string (XFRAME (frame),
|
|
2325 face,
|
|
2326 0, string, 0, -1);
|
|
2327 else
|
|
2328 *width = redisplay_frame_text_width_string (XFRAME (frame),
|
|
2329 Vdefault_face,
|
|
2330 0, string, 0, -1);
|
|
2331 }
|
|
2332 }
|
|
2333
|
|
2334 Lisp_Object
|
|
2335 query_string_font (Lisp_Object string, Lisp_Object face, Lisp_Object domain)
|
|
2336 {
|
|
2337 unsigned char charsets[NUM_LEADING_BYTES];
|
|
2338 struct face_cachel frame_cachel;
|
|
2339 struct face_cachel *cachel;
|
|
2340 int i;
|
442
|
2341 Lisp_Object frame = DOMAIN_FRAME (domain);
|
438
|
2342
|
|
2343 /* Compute string font info */
|
867
|
2344 find_charsets_in_ibyte_string (charsets,
|
438
|
2345 XSTRING_DATA (string),
|
|
2346 XSTRING_LENGTH (string));
|
440
|
2347
|
438
|
2348 reset_face_cachel (&frame_cachel);
|
|
2349 update_face_cachel_data (&frame_cachel, frame, face);
|
|
2350 cachel = &frame_cachel;
|
|
2351
|
|
2352 ensure_face_cachel_complete (cachel, domain, charsets);
|
440
|
2353
|
438
|
2354 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
2355 {
|
|
2356 if (charsets[i])
|
|
2357 {
|
440
|
2358 return FACE_CACHEL_FONT (cachel,
|
826
|
2359 charset_by_leading_byte (i +
|
438
|
2360 MIN_LEADING_BYTE));
|
|
2361
|
440
|
2362 }
|
438
|
2363 }
|
|
2364
|
|
2365 return Qnil; /* NOT REACHED */
|
|
2366 }
|
|
2367
|
|
2368 static void
|
|
2369 text_query_geometry (Lisp_Object image_instance,
|
442
|
2370 int* width, int* height,
|
438
|
2371 enum image_instance_geometry disp, Lisp_Object domain)
|
|
2372 {
|
440
|
2373 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
442
|
2374 int descent = 0;
|
438
|
2375
|
|
2376 query_string_geometry (IMAGE_INSTANCE_TEXT_STRING (ii),
|
|
2377 IMAGE_INSTANCE_FACE (ii),
|
|
2378 width, height, &descent, domain);
|
|
2379
|
|
2380 /* The descent gets set as a side effect of querying the
|
|
2381 geometry. */
|
|
2382 IMAGE_INSTANCE_TEXT_DESCENT (ii) = descent;
|
|
2383 }
|
|
2384
|
428
|
2385 /* set the properties of a string */
|
442
|
2386 static void
|
|
2387 text_update (Lisp_Object image_instance, Lisp_Object instantiator)
|
|
2388 {
|
|
2389 Lisp_Object val = find_keyword_in_vector (instantiator, Q_data);
|
|
2390
|
|
2391 if (!NILP (val))
|
428
|
2392 {
|
|
2393 CHECK_STRING (val);
|
442
|
2394 XIMAGE_INSTANCE_TEXT_STRING (image_instance) = val;
|
428
|
2395 }
|
|
2396 }
|
|
2397
|
|
2398
|
|
2399 /****************************************************************************
|
|
2400 * formatted-string *
|
|
2401 ****************************************************************************/
|
|
2402
|
|
2403 static void
|
|
2404 formatted_string_validate (Lisp_Object instantiator)
|
|
2405 {
|
|
2406 data_must_be_present (instantiator);
|
|
2407 }
|
|
2408
|
|
2409 static int
|
|
2410 formatted_string_possible_dest_types (void)
|
|
2411 {
|
|
2412 return IMAGE_TEXT_MASK;
|
|
2413 }
|
|
2414
|
|
2415 static void
|
|
2416 formatted_string_instantiate (Lisp_Object image_instance,
|
|
2417 Lisp_Object instantiator,
|
|
2418 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2419 int dest_mask, Lisp_Object domain)
|
|
2420 {
|
|
2421 /* #### implement this */
|
|
2422 warn_when_safe (Qunimplemented, Qnotice,
|
|
2423 "`formatted-string' not yet implemented; assuming `string'");
|
438
|
2424
|
440
|
2425 string_instantiate (image_instance, instantiator,
|
438
|
2426 pointer_fg, pointer_bg, dest_mask, domain);
|
428
|
2427 }
|
|
2428
|
|
2429
|
|
2430 /************************************************************************/
|
|
2431 /* pixmap file functions */
|
|
2432 /************************************************************************/
|
|
2433
|
|
2434 /* If INSTANTIATOR refers to inline data, return Qnil.
|
|
2435 If INSTANTIATOR refers to data in a file, return the full filename
|
|
2436 if it exists; otherwise, return a cons of (filename).
|
|
2437
|
|
2438 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
|
|
2439 keywords used to look up the file and inline data,
|
|
2440 respectively, in the instantiator. Normally these would
|
|
2441 be Q_file and Q_data, but might be different for mask data. */
|
|
2442
|
|
2443 Lisp_Object
|
|
2444 potential_pixmap_file_instantiator (Lisp_Object instantiator,
|
|
2445 Lisp_Object file_keyword,
|
|
2446 Lisp_Object data_keyword,
|
|
2447 Lisp_Object console_type)
|
|
2448 {
|
|
2449 Lisp_Object file;
|
|
2450 Lisp_Object data;
|
|
2451
|
|
2452 assert (VECTORP (instantiator));
|
|
2453
|
|
2454 data = find_keyword_in_vector (instantiator, data_keyword);
|
|
2455 file = find_keyword_in_vector (instantiator, file_keyword);
|
|
2456
|
|
2457 if (!NILP (file) && NILP (data))
|
|
2458 {
|
|
2459 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
|
|
2460 (decode_console_type(console_type, ERROR_ME),
|
|
2461 locate_pixmap_file, (file));
|
|
2462
|
|
2463 if (!NILP (retval))
|
|
2464 return retval;
|
|
2465 else
|
|
2466 return Fcons (file, Qnil); /* should have been file */
|
|
2467 }
|
|
2468
|
|
2469 return Qnil;
|
|
2470 }
|
|
2471
|
|
2472 Lisp_Object
|
|
2473 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2474 Lisp_Object image_type_tag)
|
|
2475 {
|
|
2476 /* This function can call lisp */
|
|
2477 Lisp_Object file = Qnil;
|
|
2478 struct gcpro gcpro1, gcpro2;
|
|
2479 Lisp_Object alist = Qnil;
|
|
2480
|
|
2481 GCPRO2 (file, alist);
|
|
2482
|
|
2483 /* Now, convert any file data into inline data. At the end of this,
|
|
2484 `data' will contain the inline data (if any) or Qnil, and `file'
|
|
2485 will contain the name this data was derived from (if known) or
|
|
2486 Qnil.
|
|
2487
|
|
2488 Note that if we cannot generate any regular inline data, we
|
|
2489 skip out. */
|
|
2490
|
|
2491 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2492 console_type);
|
|
2493
|
|
2494 if (CONSP (file)) /* failure locating filename */
|
563
|
2495 signal_double_image_error ("Opening pixmap file",
|
|
2496 "no such file or directory",
|
|
2497 Fcar (file));
|
428
|
2498
|
|
2499 if (NILP (file)) /* no conversion necessary */
|
|
2500 RETURN_UNGCPRO (inst);
|
|
2501
|
|
2502 alist = tagged_vector_to_alist (inst);
|
|
2503
|
|
2504 {
|
|
2505 Lisp_Object data = make_string_from_file (file);
|
|
2506 alist = remassq_no_quit (Q_file, alist);
|
|
2507 /* there can't be a :data at this point. */
|
|
2508 alist = Fcons (Fcons (Q_file, file),
|
|
2509 Fcons (Fcons (Q_data, data), alist));
|
|
2510 }
|
|
2511
|
|
2512 {
|
|
2513 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
|
|
2514 free_alist (alist);
|
|
2515 RETURN_UNGCPRO (result);
|
|
2516 }
|
|
2517 }
|
|
2518
|
|
2519
|
|
2520 #ifdef HAVE_WINDOW_SYSTEM
|
|
2521 /**********************************************************************
|
|
2522 * XBM *
|
|
2523 **********************************************************************/
|
|
2524
|
|
2525 /* Check if DATA represents a valid inline XBM spec (i.e. a list
|
|
2526 of (width height bits), with checking done on the dimensions).
|
|
2527 If not, signal an error. */
|
|
2528
|
|
2529 static void
|
|
2530 check_valid_xbm_inline (Lisp_Object data)
|
|
2531 {
|
|
2532 Lisp_Object width, height, bits;
|
|
2533
|
|
2534 if (!CONSP (data) ||
|
|
2535 !CONSP (XCDR (data)) ||
|
|
2536 !CONSP (XCDR (XCDR (data))) ||
|
|
2537 !NILP (XCDR (XCDR (XCDR (data)))))
|
563
|
2538 sferror ("Must be list of 3 elements", data);
|
428
|
2539
|
|
2540 width = XCAR (data);
|
|
2541 height = XCAR (XCDR (data));
|
|
2542 bits = XCAR (XCDR (XCDR (data)));
|
|
2543
|
|
2544 CHECK_STRING (bits);
|
|
2545
|
|
2546 if (!NATNUMP (width))
|
563
|
2547 invalid_argument ("Width must be a natural number", width);
|
428
|
2548
|
|
2549 if (!NATNUMP (height))
|
563
|
2550 invalid_argument ("Height must be a natural number", height);
|
428
|
2551
|
826
|
2552 if (((XINT (width) * XINT (height)) / 8) > string_char_length (bits))
|
563
|
2553 invalid_argument ("data is too short for width and height",
|
428
|
2554 vector3 (width, height, bits));
|
|
2555 }
|
|
2556
|
|
2557 /* Validate method for XBM's. */
|
|
2558
|
|
2559 static void
|
|
2560 xbm_validate (Lisp_Object instantiator)
|
|
2561 {
|
|
2562 file_or_data_must_be_present (instantiator);
|
|
2563 }
|
|
2564
|
|
2565 /* Given a filename that is supposed to contain XBM data, return
|
|
2566 the inline representation of it as (width height bits). Return
|
|
2567 the hotspot through XHOT and YHOT, if those pointers are not 0.
|
|
2568 If there is no hotspot, XHOT and YHOT will contain -1.
|
|
2569
|
|
2570 If the function fails:
|
|
2571
|
|
2572 -- if OK_IF_DATA_INVALID is set and the data was invalid,
|
|
2573 return Qt.
|
|
2574 -- maybe return an error, or return Qnil.
|
|
2575 */
|
|
2576
|
|
2577 #ifdef HAVE_X_WINDOWS
|
|
2578 #include <X11/Xlib.h>
|
|
2579 #else
|
|
2580 #define XFree(data) free(data)
|
|
2581 #endif
|
|
2582
|
|
2583 Lisp_Object
|
|
2584 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
|
|
2585 int ok_if_data_invalid)
|
|
2586 {
|
647
|
2587 int w, h;
|
771
|
2588 UChar_Binary *data;
|
428
|
2589 int result;
|
771
|
2590
|
|
2591 result = read_bitmap_data_from_file (name, &w, &h, &data, xhot, yhot);
|
428
|
2592
|
|
2593 if (result == BitmapSuccess)
|
|
2594 {
|
|
2595 Lisp_Object retval;
|
|
2596 int len = (w + 7) / 8 * h;
|
|
2597
|
|
2598 retval = list3 (make_int (w), make_int (h),
|
771
|
2599 make_ext_string ((Extbyte *) data, len, Qbinary));
|
444
|
2600 XFree (data);
|
428
|
2601 return retval;
|
|
2602 }
|
|
2603
|
|
2604 switch (result)
|
|
2605 {
|
|
2606 case BitmapOpenFailed:
|
|
2607 {
|
|
2608 /* should never happen */
|
563
|
2609 signal_double_image_error ("Opening bitmap file",
|
|
2610 "no such file or directory",
|
|
2611 name);
|
428
|
2612 }
|
|
2613 case BitmapFileInvalid:
|
|
2614 {
|
|
2615 if (ok_if_data_invalid)
|
|
2616 return Qt;
|
563
|
2617 signal_double_image_error ("Reading bitmap file",
|
|
2618 "invalid data in file",
|
|
2619 name);
|
428
|
2620 }
|
|
2621 case BitmapNoMemory:
|
|
2622 {
|
563
|
2623 signal_double_image_error ("Reading bitmap file",
|
|
2624 "out of memory",
|
|
2625 name);
|
428
|
2626 }
|
|
2627 default:
|
|
2628 {
|
563
|
2629 signal_double_image_error_2 ("Reading bitmap file",
|
|
2630 "unknown error code",
|
|
2631 make_int (result), name);
|
428
|
2632 }
|
|
2633 }
|
|
2634
|
|
2635 return Qnil; /* not reached */
|
|
2636 }
|
|
2637
|
|
2638 Lisp_Object
|
|
2639 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
|
|
2640 Lisp_Object mask_file, Lisp_Object console_type)
|
|
2641 {
|
|
2642 /* This is unclean but it's fairly standard -- a number of the
|
|
2643 bitmaps in /usr/include/X11/bitmaps use it -- so we support
|
|
2644 it. */
|
|
2645 if (NILP (mask_file)
|
|
2646 /* don't override explicitly specified mask data. */
|
|
2647 && NILP (assq_no_quit (Q_mask_data, alist))
|
|
2648 && !NILP (file))
|
|
2649 {
|
|
2650 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
2651 (decode_console_type(console_type, ERROR_ME),
|
|
2652 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
|
|
2653 if (NILP (mask_file))
|
|
2654 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
2655 (decode_console_type(console_type, ERROR_ME),
|
|
2656 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
|
|
2657 }
|
|
2658
|
|
2659 if (!NILP (mask_file))
|
|
2660 {
|
|
2661 Lisp_Object mask_data =
|
|
2662 bitmap_to_lisp_data (mask_file, 0, 0, 0);
|
|
2663 alist = remassq_no_quit (Q_mask_file, alist);
|
|
2664 /* there can't be a :mask-data at this point. */
|
|
2665 alist = Fcons (Fcons (Q_mask_file, mask_file),
|
|
2666 Fcons (Fcons (Q_mask_data, mask_data), alist));
|
|
2667 }
|
|
2668
|
|
2669 return alist;
|
|
2670 }
|
|
2671
|
|
2672 /* Normalize method for XBM's. */
|
|
2673
|
|
2674 static Lisp_Object
|
442
|
2675 xbm_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2676 Lisp_Object dest_mask)
|
428
|
2677 {
|
|
2678 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
2679 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2680 Lisp_Object alist = Qnil;
|
|
2681
|
|
2682 GCPRO3 (file, mask_file, alist);
|
|
2683
|
|
2684 /* Now, convert any file data into inline data for both the regular
|
|
2685 data and the mask data. At the end of this, `data' will contain
|
|
2686 the inline data (if any) or Qnil, and `file' will contain
|
|
2687 the name this data was derived from (if known) or Qnil.
|
|
2688 Likewise for `mask_file' and `mask_data'.
|
|
2689
|
|
2690 Note that if we cannot generate any regular inline data, we
|
|
2691 skip out. */
|
|
2692
|
|
2693 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2694 console_type);
|
|
2695 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
2696 Q_mask_data, console_type);
|
|
2697
|
|
2698 if (CONSP (file)) /* failure locating filename */
|
563
|
2699 signal_double_image_error ("Opening bitmap file",
|
|
2700 "no such file or directory",
|
|
2701 Fcar (file));
|
428
|
2702
|
|
2703 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
2704 RETURN_UNGCPRO (inst);
|
|
2705
|
|
2706 alist = tagged_vector_to_alist (inst);
|
|
2707
|
|
2708 if (!NILP (file))
|
|
2709 {
|
|
2710 int xhot, yhot;
|
|
2711 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
|
|
2712 alist = remassq_no_quit (Q_file, alist);
|
|
2713 /* there can't be a :data at this point. */
|
|
2714 alist = Fcons (Fcons (Q_file, file),
|
|
2715 Fcons (Fcons (Q_data, data), alist));
|
|
2716
|
|
2717 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
|
|
2718 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
2719 alist);
|
|
2720 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
|
|
2721 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
2722 alist);
|
|
2723 }
|
|
2724
|
|
2725 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
|
2726
|
|
2727 {
|
|
2728 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
2729 free_alist (alist);
|
|
2730 RETURN_UNGCPRO (result);
|
|
2731 }
|
|
2732 }
|
|
2733
|
|
2734
|
|
2735 static int
|
|
2736 xbm_possible_dest_types (void)
|
|
2737 {
|
|
2738 return
|
|
2739 IMAGE_MONO_PIXMAP_MASK |
|
|
2740 IMAGE_COLOR_PIXMAP_MASK |
|
|
2741 IMAGE_POINTER_MASK;
|
|
2742 }
|
|
2743
|
|
2744 #endif
|
|
2745
|
|
2746
|
|
2747 #ifdef HAVE_XFACE
|
|
2748 /**********************************************************************
|
|
2749 * X-Face *
|
|
2750 **********************************************************************/
|
|
2751
|
|
2752 static void
|
|
2753 xface_validate (Lisp_Object instantiator)
|
|
2754 {
|
|
2755 file_or_data_must_be_present (instantiator);
|
|
2756 }
|
|
2757
|
|
2758 static Lisp_Object
|
442
|
2759 xface_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2760 Lisp_Object dest_mask)
|
428
|
2761 {
|
|
2762 /* This function can call lisp */
|
|
2763 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
2764 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2765 Lisp_Object alist = Qnil;
|
|
2766
|
|
2767 GCPRO3 (file, mask_file, alist);
|
|
2768
|
|
2769 /* Now, convert any file data into inline data for both the regular
|
|
2770 data and the mask data. At the end of this, `data' will contain
|
|
2771 the inline data (if any) or Qnil, and `file' will contain
|
|
2772 the name this data was derived from (if known) or Qnil.
|
|
2773 Likewise for `mask_file' and `mask_data'.
|
|
2774
|
|
2775 Note that if we cannot generate any regular inline data, we
|
|
2776 skip out. */
|
|
2777
|
|
2778 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2779 console_type);
|
|
2780 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
2781 Q_mask_data, console_type);
|
|
2782
|
|
2783 if (CONSP (file)) /* failure locating filename */
|
563
|
2784 signal_double_image_error ("Opening bitmap file",
|
|
2785 "no such file or directory",
|
|
2786 Fcar (file));
|
428
|
2787
|
|
2788 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
2789 RETURN_UNGCPRO (inst);
|
|
2790
|
|
2791 alist = tagged_vector_to_alist (inst);
|
|
2792
|
|
2793 {
|
|
2794 Lisp_Object data = make_string_from_file (file);
|
|
2795 alist = remassq_no_quit (Q_file, alist);
|
|
2796 /* there can't be a :data at this point. */
|
|
2797 alist = Fcons (Fcons (Q_file, file),
|
|
2798 Fcons (Fcons (Q_data, data), alist));
|
|
2799 }
|
|
2800
|
|
2801 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
|
2802
|
|
2803 {
|
|
2804 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
2805 free_alist (alist);
|
|
2806 RETURN_UNGCPRO (result);
|
|
2807 }
|
|
2808 }
|
|
2809
|
|
2810 static int
|
|
2811 xface_possible_dest_types (void)
|
|
2812 {
|
|
2813 return
|
|
2814 IMAGE_MONO_PIXMAP_MASK |
|
|
2815 IMAGE_COLOR_PIXMAP_MASK |
|
|
2816 IMAGE_POINTER_MASK;
|
|
2817 }
|
|
2818
|
|
2819 #endif /* HAVE_XFACE */
|
|
2820
|
|
2821
|
|
2822 #ifdef HAVE_XPM
|
|
2823
|
|
2824 /**********************************************************************
|
|
2825 * XPM *
|
|
2826 **********************************************************************/
|
|
2827
|
462
|
2828 #ifdef HAVE_GTK
|
|
2829 /* Gtk has to be gratuitously different, eh? */
|
|
2830 Lisp_Object
|
|
2831 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
2832 {
|
|
2833 return (make_string_from_file (name));
|
|
2834 }
|
|
2835 #else
|
428
|
2836 Lisp_Object
|
|
2837 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
2838 {
|
|
2839 char **data;
|
|
2840 int result;
|
|
2841 char *fname = 0;
|
440
|
2842
|
442
|
2843 LISP_STRING_TO_EXTERNAL (name, fname, Qfile_name);
|
428
|
2844 result = XpmReadFileToData (fname, &data);
|
|
2845
|
|
2846 if (result == XpmSuccess)
|
|
2847 {
|
|
2848 Lisp_Object retval = Qnil;
|
|
2849 struct buffer *old_buffer = current_buffer;
|
|
2850 Lisp_Object temp_buffer =
|
|
2851 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
2852 int elt;
|
|
2853 int height, width, ncolors;
|
|
2854 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2855 int speccount = specpdl_depth ();
|
|
2856
|
|
2857 GCPRO3 (name, retval, temp_buffer);
|
|
2858
|
|
2859 specbind (Qinhibit_quit, Qt);
|
|
2860 set_buffer_internal (XBUFFER (temp_buffer));
|
|
2861 Ferase_buffer (Qnil);
|
|
2862
|
|
2863 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
2864 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
2865
|
|
2866 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
2867 for (elt = 0; elt <= width + ncolors; elt++)
|
|
2868 {
|
|
2869 buffer_insert_c_string (current_buffer, "\"");
|
|
2870 buffer_insert_c_string (current_buffer, data[elt]);
|
|
2871
|
|
2872 if (elt < width + ncolors)
|
|
2873 buffer_insert_c_string (current_buffer, "\",\r");
|
|
2874 else
|
|
2875 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
2876 }
|
|
2877
|
|
2878 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
|
|
2879 XpmFree (data);
|
|
2880
|
|
2881 set_buffer_internal (old_buffer);
|
771
|
2882 unbind_to (speccount);
|
428
|
2883
|
|
2884 RETURN_UNGCPRO (retval);
|
|
2885 }
|
|
2886
|
|
2887 switch (result)
|
|
2888 {
|
|
2889 case XpmFileInvalid:
|
|
2890 {
|
|
2891 if (ok_if_data_invalid)
|
|
2892 return Qt;
|
|
2893 signal_image_error ("invalid XPM data in file", name);
|
|
2894 }
|
|
2895 case XpmNoMemory:
|
|
2896 {
|
563
|
2897 signal_double_image_error ("Reading pixmap file",
|
|
2898 "out of memory", name);
|
428
|
2899 }
|
|
2900 case XpmOpenFailed:
|
|
2901 {
|
|
2902 /* should never happen? */
|
563
|
2903 signal_double_image_error ("Opening pixmap file",
|
|
2904 "no such file or directory", name);
|
428
|
2905 }
|
|
2906 default:
|
|
2907 {
|
563
|
2908 signal_double_image_error_2 ("Parsing pixmap file",
|
|
2909 "unknown error code",
|
|
2910 make_int (result), name);
|
428
|
2911 break;
|
|
2912 }
|
|
2913 }
|
|
2914
|
|
2915 return Qnil; /* not reached */
|
|
2916 }
|
462
|
2917 #endif /* !HAVE_GTK */
|
428
|
2918
|
|
2919 static void
|
|
2920 check_valid_xpm_color_symbols (Lisp_Object data)
|
|
2921 {
|
|
2922 Lisp_Object rest;
|
|
2923
|
|
2924 for (rest = data; !NILP (rest); rest = XCDR (rest))
|
|
2925 {
|
|
2926 if (!CONSP (rest) ||
|
|
2927 !CONSP (XCAR (rest)) ||
|
|
2928 !STRINGP (XCAR (XCAR (rest))) ||
|
|
2929 (!STRINGP (XCDR (XCAR (rest))) &&
|
|
2930 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
|
563
|
2931 sferror ("Invalid color symbol alist", data);
|
428
|
2932 }
|
|
2933 }
|
|
2934
|
|
2935 static void
|
|
2936 xpm_validate (Lisp_Object instantiator)
|
|
2937 {
|
|
2938 file_or_data_must_be_present (instantiator);
|
|
2939 }
|
|
2940
|
|
2941 Lisp_Object Vxpm_color_symbols;
|
|
2942
|
|
2943 Lisp_Object
|
|
2944 evaluate_xpm_color_symbols (void)
|
|
2945 {
|
|
2946 Lisp_Object rest, results = Qnil;
|
|
2947 struct gcpro gcpro1, gcpro2;
|
|
2948
|
|
2949 GCPRO2 (rest, results);
|
|
2950 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
|
|
2951 {
|
|
2952 Lisp_Object name, value, cons;
|
|
2953
|
|
2954 CHECK_CONS (rest);
|
|
2955 cons = XCAR (rest);
|
|
2956 CHECK_CONS (cons);
|
|
2957 name = XCAR (cons);
|
|
2958 CHECK_STRING (name);
|
|
2959 value = XCDR (cons);
|
|
2960 CHECK_CONS (value);
|
|
2961 value = XCAR (value);
|
|
2962 value = Feval (value);
|
|
2963 if (NILP (value))
|
|
2964 continue;
|
|
2965 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
|
563
|
2966 invalid_argument
|
428
|
2967 ("Result from xpm-color-symbols eval must be nil, string, or color",
|
|
2968 value);
|
|
2969 results = Fcons (Fcons (name, value), results);
|
|
2970 }
|
|
2971 UNGCPRO; /* no more evaluation */
|
|
2972 return results;
|
|
2973 }
|
|
2974
|
|
2975 static Lisp_Object
|
442
|
2976 xpm_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2977 Lisp_Object dest_mask)
|
428
|
2978 {
|
|
2979 Lisp_Object file = Qnil;
|
|
2980 Lisp_Object color_symbols;
|
|
2981 struct gcpro gcpro1, gcpro2;
|
|
2982 Lisp_Object alist = Qnil;
|
|
2983
|
|
2984 GCPRO2 (file, alist);
|
|
2985
|
|
2986 /* Now, convert any file data into inline data. At the end of this,
|
|
2987 `data' will contain the inline data (if any) or Qnil, and
|
|
2988 `file' will contain the name this data was derived from (if
|
|
2989 known) or Qnil.
|
|
2990
|
|
2991 Note that if we cannot generate any regular inline data, we
|
|
2992 skip out. */
|
|
2993
|
|
2994 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2995 console_type);
|
|
2996
|
|
2997 if (CONSP (file)) /* failure locating filename */
|
563
|
2998 signal_double_image_error ("Opening pixmap file",
|
|
2999 "no such file or directory",
|
|
3000 Fcar (file));
|
428
|
3001
|
|
3002 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
3003 Qunbound);
|
|
3004
|
|
3005 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
3006 /* no conversion necessary */
|
|
3007 RETURN_UNGCPRO (inst);
|
|
3008
|
|
3009 alist = tagged_vector_to_alist (inst);
|
|
3010
|
|
3011 if (!NILP (file))
|
|
3012 {
|
|
3013 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
3014 alist = remassq_no_quit (Q_file, alist);
|
|
3015 /* there can't be a :data at this point. */
|
|
3016 alist = Fcons (Fcons (Q_file, file),
|
|
3017 Fcons (Fcons (Q_data, data), alist));
|
|
3018 }
|
|
3019
|
|
3020 if (UNBOUNDP (color_symbols))
|
|
3021 {
|
|
3022 color_symbols = evaluate_xpm_color_symbols ();
|
|
3023 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
3024 alist);
|
|
3025 }
|
|
3026
|
|
3027 {
|
|
3028 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
3029 free_alist (alist);
|
|
3030 RETURN_UNGCPRO (result);
|
|
3031 }
|
|
3032 }
|
|
3033
|
|
3034 static int
|
|
3035 xpm_possible_dest_types (void)
|
|
3036 {
|
|
3037 return
|
|
3038 IMAGE_MONO_PIXMAP_MASK |
|
|
3039 IMAGE_COLOR_PIXMAP_MASK |
|
|
3040 IMAGE_POINTER_MASK;
|
|
3041 }
|
|
3042
|
|
3043 #endif /* HAVE_XPM */
|
|
3044
|
|
3045
|
|
3046 /****************************************************************************
|
|
3047 * Image Specifier Object *
|
|
3048 ****************************************************************************/
|
|
3049
|
|
3050 DEFINE_SPECIFIER_TYPE (image);
|
|
3051
|
|
3052 static void
|
|
3053 image_create (Lisp_Object obj)
|
|
3054 {
|
440
|
3055 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3056
|
|
3057 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
|
|
3058 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
|
|
3059 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
|
|
3060 }
|
|
3061
|
|
3062 static void
|
|
3063 image_mark (Lisp_Object obj)
|
|
3064 {
|
440
|
3065 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3066
|
|
3067 mark_object (IMAGE_SPECIFIER_ATTACHEE (image));
|
|
3068 mark_object (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image));
|
|
3069 }
|
|
3070
|
450
|
3071 static int
|
|
3072 instantiator_eq_equal (Lisp_Object obj1, Lisp_Object obj2)
|
|
3073 {
|
|
3074 if (EQ (obj1, obj2))
|
|
3075 return 1;
|
|
3076
|
|
3077 else if (CONSP (obj1) && CONSP (obj2))
|
|
3078 {
|
|
3079 return instantiator_eq_equal (XCAR (obj1), XCAR (obj2))
|
|
3080 &&
|
|
3081 instantiator_eq_equal (XCDR (obj1), XCDR (obj2));
|
|
3082 }
|
|
3083 return 0;
|
|
3084 }
|
|
3085
|
665
|
3086 static Hashcode
|
450
|
3087 instantiator_eq_hash (Lisp_Object obj)
|
|
3088 {
|
|
3089 if (CONSP (obj))
|
|
3090 {
|
|
3091 /* no point in worrying about tail recursion, since we're not
|
|
3092 going very deep */
|
|
3093 return HASH2 (instantiator_eq_hash (XCAR (obj)),
|
|
3094 instantiator_eq_hash (XCDR (obj)));
|
|
3095 }
|
|
3096 return LISP_HASH (obj);
|
|
3097 }
|
|
3098
|
|
3099 /* We need a special hash table for storing image instances. */
|
|
3100 Lisp_Object
|
|
3101 make_image_instance_cache_hash_table (void)
|
|
3102 {
|
|
3103 return make_general_lisp_hash_table
|
|
3104 (instantiator_eq_hash, instantiator_eq_equal,
|
|
3105 30, -1.0, -1.0,
|
|
3106 HASH_TABLE_KEY_CAR_VALUE_WEAK);
|
|
3107 }
|
|
3108
|
428
|
3109 static Lisp_Object
|
|
3110 image_instantiate_cache_result (Lisp_Object locative)
|
|
3111 {
|
442
|
3112 /* locative = (instance instantiator . subtable)
|
|
3113
|
|
3114 So we are using the instantiator as the key and the instance as
|
|
3115 the value. Since the hashtable is key-weak this means that the
|
|
3116 image instance will stay around as long as the instantiator stays
|
|
3117 around. The instantiator is stored in the `image' slot of the
|
|
3118 glyph, so as long as the glyph is marked the instantiator will be
|
|
3119 as well and hence the cached image instance also.*/
|
428
|
3120 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
|
853
|
3121 free_cons (XCDR (locative));
|
|
3122 free_cons (locative);
|
428
|
3123 return Qnil;
|
|
3124 }
|
|
3125
|
|
3126 /* Given a specification for an image, return an instance of
|
|
3127 the image which matches the given instantiator and which can be
|
|
3128 displayed in the given domain. */
|
|
3129
|
|
3130 static Lisp_Object
|
|
3131 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
|
|
3132 Lisp_Object domain, Lisp_Object instantiator,
|
|
3133 Lisp_Object depth)
|
|
3134 {
|
438
|
3135 Lisp_Object glyph = IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
|
428
|
3136 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
|
|
3137 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
|
|
3138
|
|
3139 if (IMAGE_INSTANCEP (instantiator))
|
|
3140 {
|
442
|
3141 /* make sure that the image instance's governing domain and type are
|
428
|
3142 matching. */
|
442
|
3143 Lisp_Object governing_domain = XIMAGE_INSTANCE_DOMAIN (instantiator);
|
|
3144
|
|
3145 if ((DEVICEP (governing_domain)
|
|
3146 && EQ (governing_domain, DOMAIN_DEVICE (domain)))
|
|
3147 || (FRAMEP (governing_domain)
|
|
3148 && EQ (governing_domain, DOMAIN_FRAME (domain)))
|
|
3149 || (WINDOWP (governing_domain)
|
|
3150 && EQ (governing_domain, DOMAIN_WINDOW (domain))))
|
428
|
3151 {
|
|
3152 int mask =
|
|
3153 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
|
|
3154 if (mask & dest_mask)
|
|
3155 return instantiator;
|
|
3156 else
|
563
|
3157 invalid_argument ("Type of image instance not allowed here",
|
428
|
3158 instantiator);
|
|
3159 }
|
|
3160 else
|
563
|
3161 invalid_argument_2 ("Wrong domain for image instance",
|
442
|
3162 instantiator, domain);
|
428
|
3163 }
|
452
|
3164 /* How ugly !! An image instanciator that uses a kludgy syntax to snarf in
|
|
3165 face properties. There's a design flaw here. -- didier */
|
428
|
3166 else if (VECTORP (instantiator)
|
450
|
3167 && EQ (INSTANTIATOR_TYPE (instantiator), Qinherit))
|
428
|
3168 {
|
|
3169 assert (XVECTOR_LENGTH (instantiator) == 3);
|
|
3170 return (FACE_PROPERTY_INSTANCE
|
|
3171 (Fget_face (XVECTOR_DATA (instantiator)[2]),
|
452
|
3172 Qbackground_pixmap, domain, 1, depth));
|
428
|
3173 }
|
|
3174 else
|
|
3175 {
|
442
|
3176 Lisp_Object instance = Qnil;
|
|
3177 Lisp_Object subtable = Qnil;
|
450
|
3178 /* #### Should this be GCPRO'd? */
|
|
3179 Lisp_Object hash_key = Qnil;
|
428
|
3180 Lisp_Object pointer_fg = Qnil;
|
|
3181 Lisp_Object pointer_bg = Qnil;
|
442
|
3182 Lisp_Object governing_domain =
|
|
3183 get_image_instantiator_governing_domain (instantiator, domain);
|
|
3184 struct gcpro gcpro1;
|
|
3185
|
|
3186 GCPRO1 (instance);
|
|
3187
|
|
3188 /* We have to put subwindow, widget and text image instances in
|
|
3189 a per-window cache so that we can see the same glyph in
|
|
3190 different windows. We use governing_domain to determine the type
|
|
3191 of image_instance that will be created. */
|
428
|
3192
|
|
3193 if (pointerp)
|
|
3194 {
|
|
3195 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
|
|
3196 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
|
452
|
3197 hash_key = list4 (glyph, INSTANTIATOR_TYPE (instantiator),
|
450
|
3198 pointer_fg, pointer_bg);
|
428
|
3199 }
|
450
|
3200 else
|
|
3201 /* We cannot simply key on the glyph since fallbacks could use
|
|
3202 the same glyph but have a totally different instantiator
|
|
3203 type. Thus we key on the glyph and the type (but not any
|
|
3204 other parts of the instantiator. */
|
|
3205 hash_key = list2 (glyph, INSTANTIATOR_TYPE (instantiator));
|
428
|
3206
|
442
|
3207 /* First look in the device cache. */
|
|
3208 if (DEVICEP (governing_domain))
|
428
|
3209 {
|
442
|
3210 subtable = Fgethash (make_int (dest_mask),
|
|
3211 XDEVICE (governing_domain)->
|
|
3212 image_instance_cache,
|
|
3213 Qunbound);
|
|
3214 if (UNBOUNDP (subtable))
|
|
3215 {
|
|
3216 /* For the image instance cache, we do comparisons with
|
|
3217 EQ rather than with EQUAL, as we do for color and
|
|
3218 font names. The reasons are:
|
|
3219
|
|
3220 1) pixmap data can be very long, and thus the hashing
|
|
3221 and comparing will take awhile.
|
|
3222
|
|
3223 2) It's not so likely that we'll run into things that
|
|
3224 are EQUAL but not EQ (that can happen a lot with
|
|
3225 faces, because their specifiers are copied around);
|
|
3226 but pixmaps tend not to be in faces.
|
|
3227
|
|
3228 However, if the image-instance could be a pointer, we
|
|
3229 have to use EQUAL because we massaged the
|
|
3230 instantiator into a cons3 also containing the
|
|
3231 foreground and background of the pointer face. */
|
450
|
3232 subtable = make_image_instance_cache_hash_table ();
|
|
3233
|
442
|
3234 Fputhash (make_int (dest_mask), subtable,
|
|
3235 XDEVICE (governing_domain)->image_instance_cache);
|
|
3236 instance = Qunbound;
|
|
3237 }
|
|
3238 else
|
|
3239 {
|
450
|
3240 instance = Fgethash (hash_key, subtable, Qunbound);
|
442
|
3241 }
|
|
3242 }
|
|
3243 else if (WINDOWP (governing_domain))
|
|
3244 {
|
|
3245 /* Subwindows have a per-window cache and have to be treated
|
|
3246 differently. */
|
|
3247 instance =
|
450
|
3248 Fgethash (hash_key,
|
442
|
3249 XWINDOW (governing_domain)->subwindow_instance_cache,
|
|
3250 Qunbound);
|
428
|
3251 }
|
|
3252 else
|
442
|
3253 abort (); /* We're not allowed anything else currently. */
|
|
3254
|
|
3255 /* If we don't have an instance at this point then create
|
|
3256 one. */
|
428
|
3257 if (UNBOUNDP (instance))
|
|
3258 {
|
|
3259 Lisp_Object locative =
|
|
3260 noseeum_cons (Qnil,
|
450
|
3261 noseeum_cons (hash_key,
|
442
|
3262 DEVICEP (governing_domain) ? subtable
|
|
3263 : XWINDOW (governing_domain)
|
|
3264 ->subwindow_instance_cache));
|
428
|
3265 int speccount = specpdl_depth ();
|
440
|
3266
|
442
|
3267 /* Make sure we cache the failures, too. Use an
|
|
3268 unwind-protect to catch such errors. If we fail, the
|
|
3269 unwind-protect records nil in the hash table. If we
|
|
3270 succeed, we change the car of the locative to the
|
|
3271 resulting instance, which gets recorded instead. */
|
428
|
3272 record_unwind_protect (image_instantiate_cache_result,
|
|
3273 locative);
|
442
|
3274 instance =
|
|
3275 instantiate_image_instantiator (governing_domain,
|
|
3276 domain, instantiator,
|
|
3277 pointer_fg, pointer_bg,
|
|
3278 dest_mask, glyph);
|
|
3279
|
|
3280 /* We need a per-frame cache for redisplay. */
|
|
3281 cache_subwindow_instance_in_frame_maybe (instance);
|
440
|
3282
|
428
|
3283 Fsetcar (locative, instance);
|
442
|
3284 #ifdef ERROR_CHECK_GLYPHS
|
|
3285 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
|
3286 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
|
3287 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
|
|
3288 DOMAIN_FRAME (domain)));
|
|
3289 #endif
|
771
|
3290 unbind_to (speccount);
|
442
|
3291 #ifdef ERROR_CHECK_GLYPHS
|
428
|
3292 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
442
|
3293 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
450
|
3294 assert (EQ (Fgethash (hash_key,
|
442
|
3295 XWINDOW (governing_domain)
|
|
3296 ->subwindow_instance_cache,
|
|
3297 Qunbound), instance));
|
|
3298 #endif
|
428
|
3299 }
|
442
|
3300 else if (NILP (instance))
|
563
|
3301 gui_error ("Can't instantiate image (probably cached)", instantiator);
|
442
|
3302 /* We found an instance. However, because we are using the glyph
|
|
3303 as the hash key instead of the instantiator, the current
|
|
3304 instantiator may not be the same as the original. Thus we
|
|
3305 must update the instance based on the new
|
|
3306 instantiator. Preserving instance identity like this is
|
|
3307 important to stop excessive window system widget creation and
|
|
3308 deletion - and hence flashing. */
|
|
3309 else
|
|
3310 {
|
|
3311 /* #### This function should be able to cope with *all*
|
|
3312 changes to the instantiator, but currently only copes
|
|
3313 with the most used properties. This means that it is
|
|
3314 possible to make changes that don't get reflected in the
|
|
3315 display. */
|
|
3316 update_image_instance (instance, instantiator);
|
450
|
3317 free_list (hash_key);
|
442
|
3318 }
|
|
3319
|
|
3320 #ifdef ERROR_CHECK_GLYPHS
|
|
3321 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
|
3322 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
|
3323 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
|
|
3324 DOMAIN_FRAME (domain)));
|
|
3325 #endif
|
|
3326 ERROR_CHECK_IMAGE_INSTANCE (instance);
|
|
3327 RETURN_UNGCPRO (instance);
|
428
|
3328 }
|
|
3329
|
|
3330 abort ();
|
|
3331 return Qnil; /* not reached */
|
|
3332 }
|
|
3333
|
|
3334 /* Validate an image instantiator. */
|
|
3335
|
|
3336 static void
|
|
3337 image_validate (Lisp_Object instantiator)
|
|
3338 {
|
|
3339 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
|
|
3340 return;
|
|
3341 else if (VECTORP (instantiator))
|
|
3342 {
|
|
3343 Lisp_Object *elt = XVECTOR_DATA (instantiator);
|
|
3344 int instantiator_len = XVECTOR_LENGTH (instantiator);
|
|
3345 struct image_instantiator_methods *meths;
|
|
3346 Lisp_Object already_seen = Qnil;
|
|
3347 struct gcpro gcpro1;
|
|
3348 int i;
|
|
3349
|
|
3350 if (instantiator_len < 1)
|
563
|
3351 sferror ("Vector length must be at least 1",
|
428
|
3352 instantiator);
|
|
3353
|
|
3354 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
|
|
3355 if (!(instantiator_len & 1))
|
563
|
3356 sferror
|
428
|
3357 ("Must have alternating keyword/value pairs", instantiator);
|
|
3358
|
|
3359 GCPRO1 (already_seen);
|
|
3360
|
|
3361 for (i = 1; i < instantiator_len; i += 2)
|
|
3362 {
|
|
3363 Lisp_Object keyword = elt[i];
|
|
3364 Lisp_Object value = elt[i+1];
|
|
3365 int j;
|
|
3366
|
|
3367 CHECK_SYMBOL (keyword);
|
|
3368 if (!SYMBOL_IS_KEYWORD (keyword))
|
563
|
3369 invalid_argument ("Symbol must begin with a colon", keyword);
|
428
|
3370
|
|
3371 for (j = 0; j < Dynarr_length (meths->keywords); j++)
|
|
3372 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
|
|
3373 break;
|
|
3374
|
|
3375 if (j == Dynarr_length (meths->keywords))
|
563
|
3376 invalid_argument ("Unrecognized keyword", keyword);
|
428
|
3377
|
|
3378 if (!Dynarr_at (meths->keywords, j).multiple_p)
|
|
3379 {
|
|
3380 if (!NILP (memq_no_quit (keyword, already_seen)))
|
563
|
3381 sferror
|
428
|
3382 ("Keyword may not appear more than once", keyword);
|
|
3383 already_seen = Fcons (keyword, already_seen);
|
|
3384 }
|
|
3385
|
|
3386 (Dynarr_at (meths->keywords, j).validate) (value);
|
|
3387 }
|
|
3388
|
|
3389 UNGCPRO;
|
|
3390
|
|
3391 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
|
|
3392 }
|
|
3393 else
|
563
|
3394 invalid_argument ("Must be string or vector", instantiator);
|
428
|
3395 }
|
|
3396
|
|
3397 static void
|
|
3398 image_after_change (Lisp_Object specifier, Lisp_Object locale)
|
|
3399 {
|
|
3400 Lisp_Object attachee =
|
|
3401 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
|
|
3402 Lisp_Object property =
|
|
3403 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
|
|
3404 if (FACEP (attachee))
|
448
|
3405 {
|
|
3406 face_property_was_changed (attachee, property, locale);
|
|
3407 if (BUFFERP (locale))
|
|
3408 XBUFFER (locale)->buffer_local_face_property = 1;
|
|
3409 }
|
428
|
3410 else if (GLYPHP (attachee))
|
|
3411 glyph_property_was_changed (attachee, property, locale);
|
|
3412 }
|
|
3413
|
|
3414 void
|
|
3415 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
|
|
3416 Lisp_Object property)
|
|
3417 {
|
440
|
3418 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3419
|
|
3420 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
|
|
3421 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
|
|
3422 }
|
|
3423
|
|
3424 static Lisp_Object
|
|
3425 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
|
|
3426 Lisp_Object tag_set, Lisp_Object instantiator)
|
|
3427 {
|
|
3428 Lisp_Object possible_console_types = Qnil;
|
|
3429 Lisp_Object rest;
|
|
3430 Lisp_Object retlist = Qnil;
|
|
3431 struct gcpro gcpro1, gcpro2;
|
|
3432
|
|
3433 LIST_LOOP (rest, Vconsole_type_list)
|
|
3434 {
|
|
3435 Lisp_Object contype = XCAR (rest);
|
|
3436 if (!NILP (memq_no_quit (contype, tag_set)))
|
|
3437 possible_console_types = Fcons (contype, possible_console_types);
|
|
3438 }
|
|
3439
|
|
3440 if (XINT (Flength (possible_console_types)) > 1)
|
|
3441 /* two conflicting console types specified */
|
|
3442 return Qnil;
|
|
3443
|
|
3444 if (NILP (possible_console_types))
|
|
3445 possible_console_types = Vconsole_type_list;
|
|
3446
|
|
3447 GCPRO2 (retlist, possible_console_types);
|
|
3448
|
|
3449 LIST_LOOP (rest, possible_console_types)
|
|
3450 {
|
|
3451 Lisp_Object contype = XCAR (rest);
|
|
3452 Lisp_Object newinst = call_with_suspended_errors
|
|
3453 ((lisp_fn_t) normalize_image_instantiator,
|
793
|
3454 Qnil, Qimage, ERROR_ME_DEBUG_WARN, 3, instantiator, contype,
|
428
|
3455 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
|
|
3456
|
|
3457 if (!NILP (newinst))
|
|
3458 {
|
|
3459 Lisp_Object newtag;
|
|
3460 if (NILP (memq_no_quit (contype, tag_set)))
|
|
3461 newtag = Fcons (contype, tag_set);
|
|
3462 else
|
|
3463 newtag = tag_set;
|
|
3464 retlist = Fcons (Fcons (newtag, newinst), retlist);
|
|
3465 }
|
|
3466 }
|
|
3467
|
|
3468 UNGCPRO;
|
|
3469
|
|
3470 return retlist;
|
|
3471 }
|
|
3472
|
434
|
3473 /* Copy an image instantiator. We can't use Fcopy_tree since widgets
|
|
3474 may contain circular references which would send Fcopy_tree into
|
|
3475 infloop death. */
|
|
3476 static Lisp_Object
|
|
3477 image_copy_vector_instantiator (Lisp_Object instantiator)
|
|
3478 {
|
|
3479 int i;
|
|
3480 struct image_instantiator_methods *meths;
|
|
3481 Lisp_Object *elt;
|
|
3482 int instantiator_len;
|
|
3483
|
|
3484 CHECK_VECTOR (instantiator);
|
|
3485
|
|
3486 instantiator = Fcopy_sequence (instantiator);
|
|
3487 elt = XVECTOR_DATA (instantiator);
|
|
3488 instantiator_len = XVECTOR_LENGTH (instantiator);
|
440
|
3489
|
434
|
3490 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
|
|
3491
|
|
3492 for (i = 1; i < instantiator_len; i += 2)
|
|
3493 {
|
|
3494 int j;
|
|
3495 Lisp_Object keyword = elt[i];
|
|
3496 Lisp_Object value = elt[i+1];
|
|
3497
|
|
3498 /* Find the keyword entry. */
|
|
3499 for (j = 0; j < Dynarr_length (meths->keywords); j++)
|
|
3500 {
|
|
3501 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
|
|
3502 break;
|
|
3503 }
|
|
3504
|
|
3505 /* Only copy keyword values that should be copied. */
|
|
3506 if (Dynarr_at (meths->keywords, j).copy_p
|
|
3507 &&
|
|
3508 (CONSP (value) || VECTORP (value)))
|
|
3509 {
|
|
3510 elt [i+1] = Fcopy_tree (value, Qt);
|
|
3511 }
|
|
3512 }
|
|
3513
|
|
3514 return instantiator;
|
|
3515 }
|
|
3516
|
|
3517 static Lisp_Object
|
|
3518 image_copy_instantiator (Lisp_Object arg)
|
|
3519 {
|
|
3520 if (CONSP (arg))
|
|
3521 {
|
|
3522 Lisp_Object rest;
|
|
3523 rest = arg = Fcopy_sequence (arg);
|
|
3524 while (CONSP (rest))
|
|
3525 {
|
|
3526 Lisp_Object elt = XCAR (rest);
|
|
3527 if (CONSP (elt))
|
|
3528 XCAR (rest) = Fcopy_tree (elt, Qt);
|
|
3529 else if (VECTORP (elt))
|
|
3530 XCAR (rest) = image_copy_vector_instantiator (elt);
|
|
3531 if (VECTORP (XCDR (rest))) /* hack for (a b . [c d]) */
|
|
3532 XCDR (rest) = Fcopy_tree (XCDR (rest), Qt);
|
|
3533 rest = XCDR (rest);
|
|
3534 }
|
|
3535 }
|
|
3536 else if (VECTORP (arg))
|
|
3537 {
|
|
3538 arg = image_copy_vector_instantiator (arg);
|
|
3539 }
|
|
3540 return arg;
|
|
3541 }
|
|
3542
|
428
|
3543 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
|
|
3544 Return non-nil if OBJECT is an image specifier.
|
442
|
3545 See `make-image-specifier' for a description of image instantiators.
|
428
|
3546 */
|
|
3547 (object))
|
|
3548 {
|
|
3549 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
|
|
3550 }
|
|
3551
|
|
3552
|
|
3553 /****************************************************************************
|
|
3554 * Glyph Object *
|
|
3555 ****************************************************************************/
|
|
3556
|
|
3557 static Lisp_Object
|
|
3558 mark_glyph (Lisp_Object obj)
|
|
3559 {
|
440
|
3560 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3561
|
|
3562 mark_object (glyph->image);
|
|
3563 mark_object (glyph->contrib_p);
|
|
3564 mark_object (glyph->baseline);
|
|
3565 mark_object (glyph->face);
|
|
3566
|
|
3567 return glyph->plist;
|
|
3568 }
|
|
3569
|
|
3570 static void
|
|
3571 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
3572 {
|
440
|
3573 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3574
|
|
3575 if (print_readably)
|
563
|
3576 printing_unreadable_object ("#<glyph 0x%x>", glyph->header.uid);
|
428
|
3577
|
800
|
3578 write_fmt_string_lisp (printcharfun, "#<glyph (%s", 1, Fglyph_type (obj));
|
|
3579 write_fmt_string_lisp (printcharfun, ") %S", 1, glyph->image);
|
|
3580 write_fmt_string (printcharfun, "0x%x>", glyph->header.uid);
|
428
|
3581 }
|
|
3582
|
|
3583 /* Glyphs are equal if all of their display attributes are equal. We
|
|
3584 don't compare names or doc-strings, because that would make equal
|
|
3585 be eq.
|
|
3586
|
|
3587 This isn't concerned with "unspecified" attributes, that's what
|
|
3588 #'glyph-differs-from-default-p is for. */
|
|
3589 static int
|
|
3590 glyph_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
|
|
3591 {
|
440
|
3592 Lisp_Glyph *g1 = XGLYPH (obj1);
|
|
3593 Lisp_Glyph *g2 = XGLYPH (obj2);
|
428
|
3594
|
|
3595 depth++;
|
|
3596
|
|
3597 return (internal_equal (g1->image, g2->image, depth) &&
|
|
3598 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
|
|
3599 internal_equal (g1->baseline, g2->baseline, depth) &&
|
|
3600 internal_equal (g1->face, g2->face, depth) &&
|
|
3601 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
|
|
3602 }
|
|
3603
|
665
|
3604 static Hashcode
|
428
|
3605 glyph_hash (Lisp_Object obj, int depth)
|
|
3606 {
|
|
3607 depth++;
|
|
3608
|
|
3609 /* No need to hash all of the elements; that would take too long.
|
|
3610 Just hash the most common ones. */
|
|
3611 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
|
|
3612 internal_hash (XGLYPH (obj)->face, depth));
|
|
3613 }
|
|
3614
|
|
3615 static Lisp_Object
|
|
3616 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
|
|
3617 {
|
440
|
3618 Lisp_Glyph *g = XGLYPH (obj);
|
428
|
3619
|
|
3620 if (EQ (prop, Qimage)) return g->image;
|
|
3621 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
|
|
3622 if (EQ (prop, Qbaseline)) return g->baseline;
|
|
3623 if (EQ (prop, Qface)) return g->face;
|
|
3624
|
|
3625 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
|
|
3626 }
|
|
3627
|
|
3628 static int
|
|
3629 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
|
|
3630 {
|
|
3631 if (EQ (prop, Qimage) ||
|
|
3632 EQ (prop, Qcontrib_p) ||
|
|
3633 EQ (prop, Qbaseline))
|
|
3634 return 0;
|
|
3635
|
|
3636 if (EQ (prop, Qface))
|
|
3637 {
|
|
3638 XGLYPH (obj)->face = Fget_face (value);
|
|
3639 return 1;
|
|
3640 }
|
|
3641
|
|
3642 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
|
|
3643 return 1;
|
|
3644 }
|
|
3645
|
|
3646 static int
|
|
3647 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
|
|
3648 {
|
|
3649 if (EQ (prop, Qimage) ||
|
|
3650 EQ (prop, Qcontrib_p) ||
|
|
3651 EQ (prop, Qbaseline))
|
|
3652 return -1;
|
|
3653
|
|
3654 if (EQ (prop, Qface))
|
|
3655 {
|
|
3656 XGLYPH (obj)->face = Qnil;
|
|
3657 return 1;
|
|
3658 }
|
|
3659
|
|
3660 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
|
|
3661 }
|
|
3662
|
|
3663 static Lisp_Object
|
|
3664 glyph_plist (Lisp_Object obj)
|
|
3665 {
|
440
|
3666 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3667 Lisp_Object result = glyph->plist;
|
|
3668
|
|
3669 result = cons3 (Qface, glyph->face, result);
|
|
3670 result = cons3 (Qbaseline, glyph->baseline, result);
|
|
3671 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
|
|
3672 result = cons3 (Qimage, glyph->image, result);
|
|
3673
|
|
3674 return result;
|
|
3675 }
|
|
3676
|
|
3677 static const struct lrecord_description glyph_description[] = {
|
440
|
3678 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, image) },
|
|
3679 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, contrib_p) },
|
|
3680 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, baseline) },
|
|
3681 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, face) },
|
|
3682 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, plist) },
|
428
|
3683 { XD_END }
|
|
3684 };
|
|
3685
|
|
3686 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
|
|
3687 mark_glyph, print_glyph, 0,
|
|
3688 glyph_equal, glyph_hash, glyph_description,
|
|
3689 glyph_getprop, glyph_putprop,
|
|
3690 glyph_remprop, glyph_plist,
|
440
|
3691 Lisp_Glyph);
|
428
|
3692
|
|
3693 Lisp_Object
|
|
3694 allocate_glyph (enum glyph_type type,
|
|
3695 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
|
|
3696 Lisp_Object locale))
|
|
3697 {
|
|
3698 /* This function can GC */
|
|
3699 Lisp_Object obj = Qnil;
|
440
|
3700 Lisp_Glyph *g = alloc_lcrecord_type (Lisp_Glyph, &lrecord_glyph);
|
428
|
3701
|
|
3702 g->type = type;
|
|
3703 g->image = Fmake_specifier (Qimage); /* This function can GC */
|
|
3704 g->dirty = 0;
|
|
3705 switch (g->type)
|
|
3706 {
|
|
3707 case GLYPH_BUFFER:
|
|
3708 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
440
|
3709 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK
|
|
3710 | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
442
|
3711 | IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK;
|
428
|
3712 break;
|
|
3713 case GLYPH_POINTER:
|
|
3714 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
|
3715 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
|
|
3716 break;
|
|
3717 case GLYPH_ICON:
|
|
3718 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
438
|
3719 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK
|
|
3720 | IMAGE_COLOR_PIXMAP_MASK;
|
428
|
3721 break;
|
|
3722 default:
|
|
3723 abort ();
|
|
3724 }
|
|
3725
|
|
3726 /* I think Fmake_specifier can GC. I think set_specifier_fallback can GC. */
|
|
3727 /* We're getting enough reports of odd behavior in this area it seems */
|
|
3728 /* best to GCPRO everything. */
|
|
3729 {
|
|
3730 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
|
|
3731 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
|
|
3732 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
|
|
3733 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3734
|
|
3735 GCPRO4 (obj, tem1, tem2, tem3);
|
|
3736
|
|
3737 set_specifier_fallback (g->image, tem1);
|
|
3738 g->contrib_p = Fmake_specifier (Qboolean);
|
|
3739 set_specifier_fallback (g->contrib_p, tem2);
|
|
3740 /* #### should have a specifier for the following */
|
|
3741 g->baseline = Fmake_specifier (Qgeneric);
|
|
3742 set_specifier_fallback (g->baseline, tem3);
|
|
3743 g->face = Qnil;
|
|
3744 g->plist = Qnil;
|
|
3745 g->after_change = after_change;
|
793
|
3746 obj = wrap_glyph (g);
|
428
|
3747
|
|
3748 set_image_attached_to (g->image, obj, Qimage);
|
|
3749 UNGCPRO;
|
|
3750 }
|
|
3751
|
|
3752 return obj;
|
|
3753 }
|
|
3754
|
|
3755 static enum glyph_type
|
578
|
3756 decode_glyph_type (Lisp_Object type, Error_Behavior errb)
|
428
|
3757 {
|
|
3758 if (NILP (type))
|
|
3759 return GLYPH_BUFFER;
|
|
3760
|
|
3761 if (ERRB_EQ (errb, ERROR_ME))
|
|
3762 CHECK_SYMBOL (type);
|
|
3763
|
|
3764 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
|
|
3765 if (EQ (type, Qpointer)) return GLYPH_POINTER;
|
|
3766 if (EQ (type, Qicon)) return GLYPH_ICON;
|
|
3767
|
563
|
3768 maybe_invalid_constant ("Invalid glyph type", type, Qimage, errb);
|
428
|
3769
|
|
3770 return GLYPH_UNKNOWN;
|
|
3771 }
|
|
3772
|
|
3773 static int
|
|
3774 valid_glyph_type_p (Lisp_Object type)
|
|
3775 {
|
|
3776 return !NILP (memq_no_quit (type, Vglyph_type_list));
|
|
3777 }
|
|
3778
|
|
3779 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
|
|
3780 Given a GLYPH-TYPE, return non-nil if it is valid.
|
|
3781 Valid types are `buffer', `pointer', and `icon'.
|
|
3782 */
|
|
3783 (glyph_type))
|
|
3784 {
|
|
3785 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
|
|
3786 }
|
|
3787
|
|
3788 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
|
|
3789 Return a list of valid glyph types.
|
|
3790 */
|
|
3791 ())
|
|
3792 {
|
|
3793 return Fcopy_sequence (Vglyph_type_list);
|
|
3794 }
|
|
3795
|
|
3796 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
|
442
|
3797 Create and return a new uninitialized glyph of type TYPE.
|
428
|
3798
|
|
3799 TYPE specifies the type of the glyph; this should be one of `buffer',
|
|
3800 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
|
|
3801 specifies in which contexts the glyph can be used, and controls the
|
|
3802 allowable image types into which the glyph's image can be
|
|
3803 instantiated.
|
|
3804
|
|
3805 `buffer' glyphs can be used as the begin-glyph or end-glyph of an
|
|
3806 extent, in the modeline, and in the toolbar. Their image can be
|
|
3807 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
|
|
3808 and `subwindow'.
|
|
3809
|
|
3810 `pointer' glyphs can be used to specify the mouse pointer. Their
|
|
3811 image can be instantiated as `pointer'.
|
|
3812
|
|
3813 `icon' glyphs can be used to specify the icon used when a frame is
|
|
3814 iconified. Their image can be instantiated as `mono-pixmap' and
|
|
3815 `color-pixmap'.
|
|
3816 */
|
|
3817 (type))
|
|
3818 {
|
|
3819 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
|
|
3820 return allocate_glyph (typeval, 0);
|
|
3821 }
|
|
3822
|
|
3823 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
|
|
3824 Return non-nil if OBJECT is a glyph.
|
|
3825
|
442
|
3826 A glyph is an object used for pixmaps, widgets and the like. It is used
|
428
|
3827 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
|
|
3828 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
|
442
|
3829 buttons, and the like. Much more detailed information can be found at
|
|
3830 `make-glyph'. Its image is described using an image specifier --
|
|
3831 see `make-image-specifier'. See also `make-image-instance' for further
|
|
3832 information.
|
428
|
3833 */
|
|
3834 (object))
|
|
3835 {
|
|
3836 return GLYPHP (object) ? Qt : Qnil;
|
|
3837 }
|
|
3838
|
|
3839 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
|
|
3840 Return the type of the given glyph.
|
|
3841 The return value will be one of 'buffer, 'pointer, or 'icon.
|
|
3842 */
|
|
3843 (glyph))
|
|
3844 {
|
|
3845 CHECK_GLYPH (glyph);
|
|
3846 switch (XGLYPH_TYPE (glyph))
|
|
3847 {
|
|
3848 default: abort ();
|
|
3849 case GLYPH_BUFFER: return Qbuffer;
|
|
3850 case GLYPH_POINTER: return Qpointer;
|
|
3851 case GLYPH_ICON: return Qicon;
|
|
3852 }
|
|
3853 }
|
|
3854
|
438
|
3855 Lisp_Object
|
|
3856 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
|
578
|
3857 Error_Behavior errb, int no_quit)
|
438
|
3858 {
|
|
3859 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
|
|
3860
|
|
3861 /* This can never return Qunbound. All glyphs have 'nothing as
|
|
3862 a fallback. */
|
440
|
3863 Lisp_Object image_instance = specifier_instance (specifier, Qunbound,
|
438
|
3864 domain, errb, no_quit, 0,
|
|
3865 Qzero);
|
440
|
3866 assert (!UNBOUNDP (image_instance));
|
442
|
3867 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
438
|
3868
|
|
3869 return image_instance;
|
|
3870 }
|
|
3871
|
|
3872 static Lisp_Object
|
|
3873 glyph_image_instance_maybe (Lisp_Object glyph_or_image, Lisp_Object window)
|
|
3874 {
|
|
3875 Lisp_Object instance = glyph_or_image;
|
|
3876
|
|
3877 if (GLYPHP (glyph_or_image))
|
793
|
3878 instance = glyph_image_instance (glyph_or_image, window,
|
|
3879 ERROR_ME_DEBUG_WARN, 1);
|
438
|
3880
|
|
3881 return instance;
|
|
3882 }
|
|
3883
|
428
|
3884 /*****************************************************************************
|
|
3885 glyph_width
|
|
3886
|
438
|
3887 Return the width of the given GLYPH on the given WINDOW.
|
|
3888 Calculations are done based on recursively querying the geometry of
|
|
3889 the associated image instances.
|
428
|
3890 ****************************************************************************/
|
|
3891 unsigned short
|
438
|
3892 glyph_width (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3893 {
|
438
|
3894 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3895 domain);
|
428
|
3896 if (!IMAGE_INSTANCEP (instance))
|
|
3897 return 0;
|
|
3898
|
442
|
3899 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3900 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3901 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3902 IMAGE_UNCHANGED_GEOMETRY,
|
|
3903 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3904
|
|
3905 return XIMAGE_INSTANCE_WIDTH (instance);
|
428
|
3906 }
|
|
3907
|
|
3908 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
|
|
3909 Return the width of GLYPH on WINDOW.
|
|
3910 This may not be exact as it does not take into account all of the context
|
|
3911 that redisplay will.
|
|
3912 */
|
|
3913 (glyph, window))
|
|
3914 {
|
793
|
3915 window = wrap_window (decode_window (window));
|
428
|
3916 CHECK_GLYPH (glyph);
|
|
3917
|
438
|
3918 return make_int (glyph_width (glyph, window));
|
428
|
3919 }
|
|
3920
|
|
3921 unsigned short
|
438
|
3922 glyph_ascent (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3923 {
|
438
|
3924 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3925 domain);
|
|
3926 if (!IMAGE_INSTANCEP (instance))
|
|
3927 return 0;
|
|
3928
|
442
|
3929 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3930 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3931 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3932 IMAGE_UNCHANGED_GEOMETRY,
|
|
3933 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3934
|
|
3935 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
|
|
3936 return XIMAGE_INSTANCE_TEXT_ASCENT (instance);
|
|
3937 else
|
|
3938 return XIMAGE_INSTANCE_HEIGHT (instance);
|
428
|
3939 }
|
|
3940
|
|
3941 unsigned short
|
438
|
3942 glyph_descent (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3943 {
|
438
|
3944 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3945 domain);
|
|
3946 if (!IMAGE_INSTANCEP (instance))
|
|
3947 return 0;
|
|
3948
|
442
|
3949 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3950 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3951 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3952 IMAGE_UNCHANGED_GEOMETRY,
|
|
3953 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3954
|
|
3955 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
|
|
3956 return XIMAGE_INSTANCE_TEXT_DESCENT (instance);
|
|
3957 else
|
|
3958 return 0;
|
428
|
3959 }
|
|
3960
|
|
3961 /* strictly a convenience function. */
|
|
3962 unsigned short
|
438
|
3963 glyph_height (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3964 {
|
438
|
3965 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3966 domain);
|
440
|
3967
|
438
|
3968 if (!IMAGE_INSTANCEP (instance))
|
|
3969 return 0;
|
|
3970
|
442
|
3971 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3972 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3973 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3974 IMAGE_UNCHANGED_GEOMETRY,
|
|
3975 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3976
|
|
3977 return XIMAGE_INSTANCE_HEIGHT (instance);
|
428
|
3978 }
|
|
3979
|
|
3980 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
|
|
3981 Return the ascent value of GLYPH on WINDOW.
|
|
3982 This may not be exact as it does not take into account all of the context
|
|
3983 that redisplay will.
|
|
3984 */
|
|
3985 (glyph, window))
|
|
3986 {
|
793
|
3987 window = wrap_window (decode_window (window));
|
428
|
3988 CHECK_GLYPH (glyph);
|
|
3989
|
438
|
3990 return make_int (glyph_ascent (glyph, window));
|
428
|
3991 }
|
|
3992
|
|
3993 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
|
|
3994 Return the descent value of GLYPH on WINDOW.
|
|
3995 This may not be exact as it does not take into account all of the context
|
|
3996 that redisplay will.
|
|
3997 */
|
|
3998 (glyph, window))
|
|
3999 {
|
793
|
4000 window = wrap_window (decode_window (window));
|
428
|
4001 CHECK_GLYPH (glyph);
|
|
4002
|
438
|
4003 return make_int (glyph_descent (glyph, window));
|
428
|
4004 }
|
|
4005
|
|
4006 /* This is redundant but I bet a lot of people expect it to exist. */
|
|
4007 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
|
|
4008 Return the height of GLYPH on WINDOW.
|
|
4009 This may not be exact as it does not take into account all of the context
|
|
4010 that redisplay will.
|
|
4011 */
|
|
4012 (glyph, window))
|
|
4013 {
|
793
|
4014 window = wrap_window (decode_window (window));
|
428
|
4015 CHECK_GLYPH (glyph);
|
|
4016
|
438
|
4017 return make_int (glyph_height (glyph, window));
|
428
|
4018 }
|
|
4019
|
|
4020 static void
|
|
4021 set_glyph_dirty_p (Lisp_Object glyph_or_image, Lisp_Object window, int dirty)
|
|
4022 {
|
|
4023 Lisp_Object instance = glyph_or_image;
|
|
4024
|
|
4025 if (!NILP (glyph_or_image))
|
|
4026 {
|
|
4027 if (GLYPHP (glyph_or_image))
|
|
4028 {
|
|
4029 instance = glyph_image_instance (glyph_or_image, window,
|
793
|
4030 ERROR_ME_DEBUG_WARN, 1);
|
428
|
4031 XGLYPH_DIRTYP (glyph_or_image) = dirty;
|
|
4032 }
|
|
4033
|
442
|
4034 if (!IMAGE_INSTANCEP (instance))
|
|
4035 return;
|
|
4036
|
428
|
4037 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
|
|
4038 }
|
|
4039 }
|
|
4040
|
442
|
4041 static void
|
|
4042 set_image_instance_dirty_p (Lisp_Object instance, int dirty)
|
|
4043 {
|
|
4044 if (IMAGE_INSTANCEP (instance))
|
|
4045 {
|
|
4046 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
|
|
4047 /* Now cascade up the hierarchy. */
|
|
4048 set_image_instance_dirty_p (XIMAGE_INSTANCE_PARENT (instance),
|
|
4049 dirty);
|
|
4050 }
|
|
4051 else if (GLYPHP (instance))
|
|
4052 {
|
|
4053 XGLYPH_DIRTYP (instance) = dirty;
|
|
4054 }
|
|
4055 }
|
|
4056
|
428
|
4057 /* #### do we need to cache this info to speed things up? */
|
|
4058
|
|
4059 Lisp_Object
|
|
4060 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
|
|
4061 {
|
|
4062 if (!GLYPHP (glyph))
|
|
4063 return Qnil;
|
|
4064 else
|
|
4065 {
|
|
4066 Lisp_Object retval =
|
|
4067 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
|
793
|
4068 /* #### look into error flag */
|
|
4069 Qunbound, domain, ERROR_ME_DEBUG_WARN,
|
428
|
4070 0, Qzero);
|
|
4071 if (!NILP (retval) && !INTP (retval))
|
|
4072 retval = Qnil;
|
|
4073 else if (INTP (retval))
|
|
4074 {
|
|
4075 if (XINT (retval) < 0)
|
|
4076 retval = Qzero;
|
|
4077 if (XINT (retval) > 100)
|
|
4078 retval = make_int (100);
|
|
4079 }
|
|
4080 return retval;
|
|
4081 }
|
|
4082 }
|
|
4083
|
|
4084 Lisp_Object
|
|
4085 glyph_face (Lisp_Object glyph, Lisp_Object domain)
|
|
4086 {
|
|
4087 /* #### Domain parameter not currently used but it will be */
|
|
4088 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
|
|
4089 }
|
|
4090
|
|
4091 int
|
|
4092 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
|
|
4093 {
|
|
4094 if (!GLYPHP (glyph))
|
|
4095 return 0;
|
|
4096 else
|
|
4097 return !NILP (specifier_instance_no_quit
|
|
4098 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
|
793
|
4099 /* #### look into error flag */
|
|
4100 ERROR_ME_DEBUG_WARN, 0, Qzero));
|
428
|
4101 }
|
|
4102
|
|
4103 static void
|
|
4104 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
|
|
4105 Lisp_Object locale)
|
|
4106 {
|
|
4107 if (XGLYPH (glyph)->after_change)
|
|
4108 (XGLYPH (glyph)->after_change) (glyph, property, locale);
|
|
4109 }
|
|
4110
|
442
|
4111 void
|
|
4112 glyph_query_geometry (Lisp_Object glyph_or_image, int* width, int* height,
|
438
|
4113 enum image_instance_geometry disp, Lisp_Object domain)
|
|
4114 {
|
|
4115 Lisp_Object instance = glyph_or_image;
|
|
4116
|
|
4117 if (GLYPHP (glyph_or_image))
|
793
|
4118 instance = glyph_image_instance (glyph_or_image, domain,
|
|
4119 ERROR_ME_DEBUG_WARN, 1);
|
440
|
4120
|
438
|
4121 image_instance_query_geometry (instance, width, height, disp, domain);
|
|
4122 }
|
|
4123
|
442
|
4124 void
|
|
4125 glyph_do_layout (Lisp_Object glyph_or_image, int width, int height,
|
|
4126 int xoffset, int yoffset, Lisp_Object domain)
|
438
|
4127 {
|
|
4128 Lisp_Object instance = glyph_or_image;
|
|
4129
|
|
4130 if (GLYPHP (glyph_or_image))
|
793
|
4131 instance = glyph_image_instance (glyph_or_image, domain,
|
|
4132 ERROR_ME_DEBUG_WARN, 1);
|
442
|
4133
|
|
4134 image_instance_layout (instance, width, height, xoffset, yoffset, domain);
|
|
4135 }
|
438
|
4136
|
428
|
4137
|
|
4138 /*****************************************************************************
|
|
4139 * glyph cachel functions *
|
|
4140 *****************************************************************************/
|
|
4141
|
442
|
4142 /* #### All of this is 95% copied from face cachels. Consider
|
|
4143 consolidating.
|
|
4144
|
|
4145 Why do we need glyph_cachels? Simply because a glyph_cachel captures
|
|
4146 per-window information about a particular glyph. A glyph itself is
|
|
4147 not created in any particular context, so if we were to rely on a
|
|
4148 glyph to tell us about its dirtiness we would not be able to reset
|
|
4149 the dirty flag after redisplaying it as it may exist in other
|
|
4150 contexts. When we have redisplayed we need to know which glyphs to
|
|
4151 reset the dirty flags on - the glyph_cachels give us a nice list we
|
|
4152 can iterate through doing this. */
|
428
|
4153 void
|
|
4154 mark_glyph_cachels (glyph_cachel_dynarr *elements)
|
|
4155 {
|
|
4156 int elt;
|
|
4157
|
|
4158 if (!elements)
|
|
4159 return;
|
|
4160
|
|
4161 for (elt = 0; elt < Dynarr_length (elements); elt++)
|
|
4162 {
|
|
4163 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
|
|
4164 mark_object (cachel->glyph);
|
|
4165 }
|
|
4166 }
|
|
4167
|
|
4168 static void
|
|
4169 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
|
|
4170 struct glyph_cachel *cachel)
|
|
4171 {
|
|
4172 if (!cachel->updated || NILP (cachel->glyph) || !EQ (cachel->glyph, glyph)
|
440
|
4173 || XGLYPH_DIRTYP (cachel->glyph)
|
|
4174 || XFRAME(WINDOW_FRAME(w))->faces_changed)
|
428
|
4175 {
|
|
4176 Lisp_Object window, instance;
|
|
4177
|
793
|
4178 window = wrap_window (w);
|
428
|
4179
|
|
4180 cachel->glyph = glyph;
|
440
|
4181 /* Speed things up slightly by grabbing the glyph instantiation
|
|
4182 and passing it to the size functions. */
|
793
|
4183 instance = glyph_image_instance (glyph, window, ERROR_ME_DEBUG_WARN, 1);
|
440
|
4184
|
442
|
4185 if (!IMAGE_INSTANCEP (instance))
|
|
4186 return;
|
|
4187
|
440
|
4188 /* Mark text instance of the glyph dirty if faces have changed,
|
|
4189 because its geometry might have changed. */
|
|
4190 invalidate_glyph_geometry_maybe (instance, w);
|
|
4191
|
|
4192 /* #### Do the following 2 lines buy us anything? --kkm */
|
|
4193 XGLYPH_DIRTYP (glyph) = XIMAGE_INSTANCE_DIRTYP (instance);
|
|
4194 cachel->dirty = XGLYPH_DIRTYP (glyph);
|
438
|
4195 cachel->width = glyph_width (instance, window);
|
|
4196 cachel->ascent = glyph_ascent (instance, window);
|
|
4197 cachel->descent = glyph_descent (instance, window);
|
428
|
4198 }
|
|
4199
|
|
4200 cachel->updated = 1;
|
|
4201 }
|
|
4202
|
|
4203 static void
|
|
4204 add_glyph_cachel (struct window *w, Lisp_Object glyph)
|
|
4205 {
|
|
4206 struct glyph_cachel new_cachel;
|
|
4207
|
|
4208 xzero (new_cachel);
|
|
4209 new_cachel.glyph = Qnil;
|
|
4210
|
|
4211 update_glyph_cachel_data (w, glyph, &new_cachel);
|
|
4212 Dynarr_add (w->glyph_cachels, new_cachel);
|
|
4213 }
|
|
4214
|
|
4215 glyph_index
|
|
4216 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
|
|
4217 {
|
|
4218 int elt;
|
|
4219
|
|
4220 if (noninteractive)
|
|
4221 return 0;
|
|
4222
|
|
4223 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4224 {
|
|
4225 struct glyph_cachel *cachel =
|
|
4226 Dynarr_atp (w->glyph_cachels, elt);
|
|
4227
|
|
4228 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
|
|
4229 {
|
|
4230 update_glyph_cachel_data (w, glyph, cachel);
|
|
4231 return elt;
|
|
4232 }
|
|
4233 }
|
|
4234
|
|
4235 /* If we didn't find the glyph, add it and then return its index. */
|
|
4236 add_glyph_cachel (w, glyph);
|
|
4237 return elt;
|
|
4238 }
|
|
4239
|
|
4240 void
|
|
4241 reset_glyph_cachels (struct window *w)
|
|
4242 {
|
|
4243 Dynarr_reset (w->glyph_cachels);
|
|
4244 get_glyph_cachel_index (w, Vcontinuation_glyph);
|
|
4245 get_glyph_cachel_index (w, Vtruncation_glyph);
|
|
4246 get_glyph_cachel_index (w, Vhscroll_glyph);
|
|
4247 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
|
|
4248 get_glyph_cachel_index (w, Voctal_escape_glyph);
|
|
4249 get_glyph_cachel_index (w, Vinvisible_text_glyph);
|
|
4250 }
|
|
4251
|
|
4252 void
|
|
4253 mark_glyph_cachels_as_not_updated (struct window *w)
|
|
4254 {
|
|
4255 int elt;
|
|
4256
|
|
4257 /* We need to have a dirty flag to tell if the glyph has changed.
|
|
4258 We can check to see if each glyph variable is actually a
|
|
4259 completely different glyph, though. */
|
|
4260 #define FROB(glyph_obj, gindex) \
|
|
4261 update_glyph_cachel_data (w, glyph_obj, \
|
|
4262 Dynarr_atp (w->glyph_cachels, gindex))
|
|
4263
|
|
4264 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
|
|
4265 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
|
|
4266 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
|
|
4267 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
|
|
4268 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
|
|
4269 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
|
|
4270 #undef FROB
|
|
4271
|
|
4272 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4273 {
|
|
4274 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
|
|
4275 }
|
|
4276 }
|
|
4277
|
|
4278 /* Unset the dirty bit on all the glyph cachels that have it. */
|
440
|
4279 void
|
428
|
4280 mark_glyph_cachels_as_clean (struct window* w)
|
|
4281 {
|
|
4282 int elt;
|
793
|
4283 Lisp_Object window = wrap_window (w);
|
|
4284
|
428
|
4285 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4286 {
|
|
4287 struct glyph_cachel *cachel = Dynarr_atp (w->glyph_cachels, elt);
|
|
4288 cachel->dirty = 0;
|
|
4289 set_glyph_dirty_p (cachel->glyph, window, 0);
|
|
4290 }
|
|
4291 }
|
|
4292
|
|
4293 #ifdef MEMORY_USAGE_STATS
|
|
4294
|
|
4295 int
|
|
4296 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
|
|
4297 struct overhead_stats *ovstats)
|
|
4298 {
|
|
4299 int total = 0;
|
|
4300
|
|
4301 if (glyph_cachels)
|
|
4302 total += Dynarr_memory_usage (glyph_cachels, ovstats);
|
|
4303
|
|
4304 return total;
|
|
4305 }
|
|
4306
|
|
4307 #endif /* MEMORY_USAGE_STATS */
|
|
4308
|
|
4309
|
|
4310
|
|
4311 /*****************************************************************************
|
793
|
4312 * subwindow cachel functions *
|
428
|
4313 *****************************************************************************/
|
438
|
4314 /* Subwindows are curious in that you have to physically unmap them to
|
428
|
4315 not display them. It is problematic deciding what to do in
|
|
4316 redisplay. We have two caches - a per-window instance cache that
|
|
4317 keeps track of subwindows on a window, these are linked to their
|
|
4318 instantiator in the hashtable and when the instantiator goes away
|
|
4319 we want the instance to go away also. However we also have a
|
|
4320 per-frame instance cache that we use to determine if a subwindow is
|
|
4321 obscuring an area that we want to clear. We need to be able to flip
|
|
4322 through this quickly so a hashtable is not suitable hence the
|
442
|
4323 subwindow_cachels. This is a weak list so unreference instances
|
|
4324 will get deleted properly. */
|
428
|
4325
|
|
4326 /* redisplay in general assumes that drawing something will erase
|
|
4327 what was there before. unfortunately this does not apply to
|
|
4328 subwindows that need to be specifically unmapped in order to
|
|
4329 disappear. we take a brute force approach - on the basis that its
|
|
4330 cheap - and unmap all subwindows in a display line */
|
442
|
4331
|
|
4332 /* Put new instances in the frame subwindow cache. This is less costly than
|
|
4333 doing it every time something gets mapped, and deleted instances will be
|
|
4334 removed automatically. */
|
|
4335 static void
|
|
4336 cache_subwindow_instance_in_frame_maybe (Lisp_Object instance)
|
|
4337 {
|
|
4338 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (instance);
|
|
4339 if (!NILP (DOMAIN_FRAME (IMAGE_INSTANCE_DOMAIN (ii))))
|
428
|
4340 {
|
442
|
4341 struct frame* f = DOMAIN_XFRAME (IMAGE_INSTANCE_DOMAIN (ii));
|
|
4342 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
|
|
4343 = Fcons (instance, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
|
|
4344 }
|
|
4345 }
|
|
4346
|
|
4347 /* Unmap and finalize all subwindow instances in the frame cache. This
|
|
4348 is necessary because GC will not guarantee the order things get
|
|
4349 deleted in and moreover, frame finalization deletes the window
|
|
4350 system windows before deleting XEmacs windows, and hence
|
|
4351 subwindows. */
|
|
4352 int
|
|
4353 unmap_subwindow_instance_cache_mapper (Lisp_Object key, Lisp_Object value,
|
|
4354 void* finalize)
|
|
4355 {
|
|
4356 /* value can be nil; we cache failures as well as successes */
|
|
4357 if (!NILP (value))
|
|
4358 {
|
|
4359 struct frame* f = XFRAME (XIMAGE_INSTANCE_FRAME (value));
|
|
4360 unmap_subwindow (value);
|
|
4361 if (finalize)
|
428
|
4362 {
|
442
|
4363 /* In case GC doesn't catch up fast enough, remove from the frame
|
|
4364 cache also. Otherwise code that checks the sanity of the instance
|
|
4365 will fail. */
|
|
4366 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
|
|
4367 = delq_no_quit (value,
|
|
4368 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
|
|
4369 finalize_image_instance (XIMAGE_INSTANCE (value), 0);
|
428
|
4370 }
|
|
4371 }
|
442
|
4372 return 0;
|
|
4373 }
|
|
4374
|
|
4375 static void
|
|
4376 finalize_all_subwindow_instances (struct window *w)
|
|
4377 {
|
|
4378 if (!NILP (w->next)) finalize_all_subwindow_instances (XWINDOW (w->next));
|
|
4379 if (!NILP (w->vchild)) finalize_all_subwindow_instances (XWINDOW (w->vchild));
|
|
4380 if (!NILP (w->hchild)) finalize_all_subwindow_instances (XWINDOW (w->hchild));
|
|
4381
|
|
4382 elisp_maphash (unmap_subwindow_instance_cache_mapper,
|
|
4383 w->subwindow_instance_cache, (void*)1);
|
428
|
4384 }
|
|
4385
|
|
4386 void
|
442
|
4387 free_frame_subwindow_instances (struct frame* f)
|
|
4388 {
|
|
4389 /* Make sure all instances are finalized. We have to do this via the
|
|
4390 instance cache since some instances may be extant but not
|
|
4391 displayed (and hence not in the frame cache). */
|
|
4392 finalize_all_subwindow_instances (XWINDOW (f->root_window));
|
|
4393 }
|
|
4394
|
|
4395 /* Unmap all instances in the frame cache. */
|
|
4396 void
|
|
4397 reset_frame_subwindow_instance_cache (struct frame* f)
|
|
4398 {
|
|
4399 Lisp_Object rest;
|
|
4400
|
|
4401 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
|
4402 {
|
|
4403 Lisp_Object value = XCAR (rest);
|
|
4404 unmap_subwindow (value);
|
|
4405 }
|
|
4406 }
|
428
|
4407
|
|
4408 /*****************************************************************************
|
|
4409 * subwindow exposure ignorance *
|
|
4410 *****************************************************************************/
|
|
4411 /* when we unmap subwindows the associated window system will generate
|
|
4412 expose events. This we do not want as redisplay already copes with
|
|
4413 the repainting necessary. Worse, we can get in an endless cycle of
|
|
4414 redisplay if we are not careful. Thus we keep a per-frame list of
|
|
4415 expose events that are going to come and ignore them as
|
|
4416 required. */
|
|
4417
|
|
4418 struct expose_ignore_blocktype
|
|
4419 {
|
|
4420 Blocktype_declare (struct expose_ignore);
|
|
4421 } *the_expose_ignore_blocktype;
|
|
4422
|
|
4423 int
|
647
|
4424 check_for_ignored_expose (struct frame* f, int x, int y, int width, int height)
|
428
|
4425 {
|
|
4426 struct expose_ignore *ei, *prev;
|
|
4427 /* the ignore list is FIFO so we should generally get a match with
|
|
4428 the first element in the list */
|
|
4429 for (ei = f->subwindow_exposures, prev = 0; ei; ei = ei->next)
|
|
4430 {
|
|
4431 /* Checking for exact matches just isn't good enough as we
|
442
|
4432 might get exposures for partially obscured subwindows, thus
|
|
4433 we have to check for overlaps. Being conservative, we will
|
|
4434 check for exposures wholly contained by the subwindow - this
|
428
|
4435 might give us what we want.*/
|
440
|
4436 if (ei->x <= x && ei->y <= y
|
428
|
4437 && ei->x + ei->width >= x + width
|
|
4438 && ei->y + ei->height >= y + height)
|
|
4439 {
|
|
4440 #ifdef DEBUG_WIDGETS
|
|
4441 stderr_out ("ignored %d+%d, %dx%d for exposure %d+%d, %dx%d\n",
|
|
4442 x, y, width, height, ei->x, ei->y, ei->width, ei->height);
|
|
4443 #endif
|
|
4444 if (!prev)
|
|
4445 f->subwindow_exposures = ei->next;
|
|
4446 else
|
|
4447 prev->next = ei->next;
|
440
|
4448
|
428
|
4449 if (ei == f->subwindow_exposures_tail)
|
|
4450 f->subwindow_exposures_tail = prev;
|
|
4451
|
|
4452 Blocktype_free (the_expose_ignore_blocktype, ei);
|
|
4453 return 1;
|
|
4454 }
|
|
4455 prev = ei;
|
|
4456 }
|
|
4457 return 0;
|
|
4458 }
|
|
4459
|
|
4460 static void
|
|
4461 register_ignored_expose (struct frame* f, int x, int y, int width, int height)
|
|
4462 {
|
|
4463 if (!hold_ignored_expose_registration)
|
|
4464 {
|
|
4465 struct expose_ignore *ei;
|
440
|
4466
|
428
|
4467 ei = Blocktype_alloc (the_expose_ignore_blocktype);
|
440
|
4468
|
428
|
4469 ei->next = NULL;
|
|
4470 ei->x = x;
|
|
4471 ei->y = y;
|
|
4472 ei->width = width;
|
|
4473 ei->height = height;
|
440
|
4474
|
428
|
4475 /* we have to add the exposure to the end of the list, since we
|
|
4476 want to check the oldest events first. for speed we keep a record
|
|
4477 of the end so that we can add right to it. */
|
|
4478 if (f->subwindow_exposures_tail)
|
|
4479 {
|
|
4480 f->subwindow_exposures_tail->next = ei;
|
|
4481 }
|
|
4482 if (!f->subwindow_exposures)
|
|
4483 {
|
|
4484 f->subwindow_exposures = ei;
|
|
4485 }
|
|
4486 f->subwindow_exposures_tail = ei;
|
|
4487 }
|
|
4488 }
|
|
4489
|
|
4490 /****************************************************************************
|
|
4491 find_matching_subwindow
|
|
4492
|
|
4493 See if there is a subwindow that completely encloses the requested
|
|
4494 area.
|
|
4495 ****************************************************************************/
|
647
|
4496 int
|
|
4497 find_matching_subwindow (struct frame* f, int x, int y, int width, int height)
|
428
|
4498 {
|
442
|
4499 Lisp_Object rest;
|
|
4500
|
|
4501 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
428
|
4502 {
|
442
|
4503 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (XCAR (rest));
|
|
4504
|
|
4505 if (IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii)
|
|
4506 &&
|
|
4507 IMAGE_INSTANCE_DISPLAY_X (ii) <= x
|
428
|
4508 &&
|
442
|
4509 IMAGE_INSTANCE_DISPLAY_Y (ii) <= y
|
440
|
4510 &&
|
442
|
4511 IMAGE_INSTANCE_DISPLAY_X (ii)
|
|
4512 + IMAGE_INSTANCE_DISPLAY_WIDTH (ii) >= x + width
|
428
|
4513 &&
|
442
|
4514 IMAGE_INSTANCE_DISPLAY_Y (ii)
|
|
4515 + IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) >= y + height)
|
428
|
4516 {
|
|
4517 return 1;
|
|
4518 }
|
|
4519 }
|
|
4520 return 0;
|
|
4521 }
|
|
4522
|
|
4523
|
|
4524 /*****************************************************************************
|
|
4525 * subwindow functions *
|
|
4526 *****************************************************************************/
|
|
4527
|
442
|
4528 /* Update the displayed characteristics of a subwindow. This function
|
|
4529 should generally only get called if the subwindow is actually
|
|
4530 dirty. */
|
|
4531 void
|
|
4532 redisplay_subwindow (Lisp_Object subwindow)
|
428
|
4533 {
|
440
|
4534 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
442
|
4535 int count = specpdl_depth ();
|
|
4536
|
|
4537 /* The update method is allowed to call eval. Since it is quite
|
|
4538 common for this function to get called from somewhere in
|
|
4539 redisplay we need to make sure that quits are ignored. Otherwise
|
|
4540 Fsignal will abort. */
|
|
4541 specbind (Qinhibit_quit, Qt);
|
|
4542
|
|
4543 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4544
|
|
4545 if (WIDGET_IMAGE_INSTANCEP (subwindow))
|
|
4546 {
|
|
4547 if (image_instance_changed (subwindow))
|
|
4548 redisplay_widget (subwindow);
|
|
4549 /* Reset the changed flags. */
|
|
4550 IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii) = 0;
|
|
4551 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
|
|
4552 IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii) = 0;
|
|
4553 IMAGE_INSTANCE_TEXT_CHANGED (ii) = 0;
|
|
4554 }
|
|
4555 else if (IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW
|
|
4556 &&
|
|
4557 !NILP (IMAGE_INSTANCE_FRAME (ii)))
|
|
4558 {
|
|
4559 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
|
|
4560 redisplay_subwindow, (ii));
|
|
4561 }
|
|
4562
|
|
4563 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 0;
|
|
4564 /* This function is typically called by redisplay just before
|
|
4565 outputting the information to the screen. Thus we record a hash
|
|
4566 of the output to determine whether on-screen is the same as
|
|
4567 recorded structure. This approach has limitations in there is a
|
|
4568 good chance that hash values will be different for the same
|
|
4569 visual appearance. However, we would rather that then the other
|
|
4570 way round - it simply means that we will get more displays than
|
|
4571 we might need. We can get better hashing by making the depth
|
|
4572 negative - currently it will recurse down 7 levels.*/
|
|
4573 IMAGE_INSTANCE_DISPLAY_HASH (ii) = internal_hash (subwindow,
|
|
4574 IMAGE_INSTANCE_HASH_DEPTH);
|
|
4575
|
771
|
4576 unbind_to (count);
|
442
|
4577 }
|
|
4578
|
|
4579 /* Determine whether an image_instance has changed structurally and
|
|
4580 hence needs redisplaying in some way.
|
|
4581
|
|
4582 #### This should just look at the instantiator differences when we
|
|
4583 get rid of the stored items altogether. In fact we should probably
|
|
4584 store the new instantiator as well as the old - as we do with
|
|
4585 gui_items currently - and then pick-up the new on the next
|
|
4586 redisplay. This would obviate the need for any of this trickery
|
|
4587 with hashcodes. */
|
|
4588 int
|
|
4589 image_instance_changed (Lisp_Object subwindow)
|
|
4590 {
|
|
4591 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
|
4592
|
|
4593 if (internal_hash (subwindow, IMAGE_INSTANCE_HASH_DEPTH) !=
|
|
4594 IMAGE_INSTANCE_DISPLAY_HASH (ii))
|
|
4595 return 1;
|
|
4596 /* #### I think there is probably a bug here. This gets called for
|
|
4597 layouts - and yet the pending items are always nil for
|
|
4598 layouts. We are saved by layout optimization, but I'm undecided
|
|
4599 as to what the correct fix is. */
|
|
4600 else if (WIDGET_IMAGE_INSTANCEP (subwindow)
|
853
|
4601 && (!internal_equal_trapping_problems
|
|
4602 (Qglyph, "bad subwindow instantiator",
|
|
4603 /* in this case we really don't want to be
|
|
4604 interrupted by QUIT because we care about
|
|
4605 the return value; and we know that any loops
|
|
4606 will ultimately cause errors to be issued.
|
|
4607 We specify a retval of 1 in that case so that
|
|
4608 the glyph code doesn't try to keep reoutputting
|
|
4609 a bad subwindow. */
|
|
4610 INHIBIT_QUIT, 0, 1, IMAGE_INSTANCE_WIDGET_ITEMS (ii),
|
|
4611 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii), 0)
|
442
|
4612 || !NILP (IMAGE_INSTANCE_LAYOUT_CHILDREN (ii))
|
|
4613 || IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii)))
|
|
4614 return 1;
|
|
4615 else
|
|
4616 return 0;
|
428
|
4617 }
|
|
4618
|
438
|
4619 /* Update all the subwindows on a frame. */
|
428
|
4620 void
|
442
|
4621 update_widget_instances (Lisp_Object frame)
|
|
4622 {
|
|
4623 struct frame* f;
|
|
4624 Lisp_Object rest;
|
|
4625
|
|
4626 /* Its possible for the preceding callback to have deleted the
|
|
4627 frame, so cope with this. */
|
|
4628 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
|
|
4629 return;
|
|
4630
|
|
4631 CHECK_FRAME (frame);
|
|
4632 f = XFRAME (frame);
|
|
4633
|
|
4634 /* If we get called we know something has changed. */
|
|
4635 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
|
4636 {
|
|
4637 Lisp_Object widget = XCAR (rest);
|
|
4638
|
|
4639 if (XIMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (widget)
|
|
4640 &&
|
|
4641 image_instance_changed (widget))
|
|
4642 {
|
|
4643 set_image_instance_dirty_p (widget, 1);
|
|
4644 MARK_FRAME_GLYPHS_CHANGED (f);
|
|
4645 }
|
|
4646 }
|
428
|
4647 }
|
|
4648
|
|
4649 /* remove a subwindow from its frame */
|
793
|
4650 void
|
|
4651 unmap_subwindow (Lisp_Object subwindow)
|
428
|
4652 {
|
440
|
4653 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4654 struct frame* f;
|
|
4655
|
442
|
4656 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4657
|
|
4658 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
|
|
4659 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK)
|
428
|
4660 ||
|
442
|
4661 !IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii))
|
428
|
4662 return;
|
442
|
4663
|
428
|
4664 #ifdef DEBUG_WIDGETS
|
442
|
4665 stderr_out ("unmapping subwindow %p\n", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
|
428
|
4666 #endif
|
442
|
4667 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
|
428
|
4668
|
|
4669 /* make sure we don't get expose events */
|
442
|
4670 register_ignored_expose (f, IMAGE_INSTANCE_DISPLAY_X (ii),
|
|
4671 IMAGE_INSTANCE_DISPLAY_Y (ii),
|
|
4672 IMAGE_INSTANCE_DISPLAY_WIDTH (ii),
|
|
4673 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii));
|
428
|
4674 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
|
|
4675
|
442
|
4676 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (ii)),
|
|
4677 unmap_subwindow, (ii));
|
428
|
4678 }
|
|
4679
|
|
4680 /* show a subwindow in its frame */
|
793
|
4681 void
|
|
4682 map_subwindow (Lisp_Object subwindow, int x, int y,
|
|
4683 struct display_glyph_area *dga)
|
428
|
4684 {
|
440
|
4685 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4686 struct frame* f;
|
|
4687
|
442
|
4688 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4689
|
|
4690 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
|
|
4691 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK))
|
428
|
4692 return;
|
|
4693
|
|
4694 #ifdef DEBUG_WIDGETS
|
442
|
4695 stderr_out ("mapping subwindow %p, %dx%d@%d+%d\n",
|
428
|
4696 IMAGE_INSTANCE_SUBWINDOW_ID (ii),
|
|
4697 dga->width, dga->height, x, y);
|
|
4698 #endif
|
442
|
4699 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
|
|
4700 IMAGE_INSTANCE_DISPLAY_X (ii) = x;
|
|
4701 IMAGE_INSTANCE_DISPLAY_Y (ii) = y;
|
|
4702 IMAGE_INSTANCE_DISPLAY_WIDTH (ii) = dga->width;
|
|
4703 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) = dga->height;
|
|
4704
|
|
4705 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
|
|
4706 map_subwindow, (ii, x, y, dga));
|
428
|
4707 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 1;
|
|
4708 }
|
|
4709
|
|
4710 static int
|
|
4711 subwindow_possible_dest_types (void)
|
|
4712 {
|
|
4713 return IMAGE_SUBWINDOW_MASK;
|
|
4714 }
|
|
4715
|
442
|
4716 int
|
|
4717 subwindow_governing_domain (void)
|
|
4718 {
|
|
4719 return GOVERNING_DOMAIN_WINDOW;
|
|
4720 }
|
|
4721
|
428
|
4722 /* Partially instantiate a subwindow. */
|
|
4723 void
|
|
4724 subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
4725 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
4726 int dest_mask, Lisp_Object domain)
|
|
4727 {
|
440
|
4728 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
442
|
4729 Lisp_Object device = image_instance_device (image_instance);
|
|
4730 Lisp_Object frame = DOMAIN_FRAME (domain);
|
428
|
4731 Lisp_Object width = find_keyword_in_vector (instantiator, Q_pixel_width);
|
|
4732 Lisp_Object height = find_keyword_in_vector (instantiator, Q_pixel_height);
|
|
4733
|
|
4734 if (NILP (frame))
|
563
|
4735 invalid_state ("No selected frame", device);
|
440
|
4736
|
428
|
4737 if (!(dest_mask & IMAGE_SUBWINDOW_MASK))
|
|
4738 incompatible_image_types (instantiator, dest_mask, IMAGE_SUBWINDOW_MASK);
|
|
4739
|
|
4740 ii->data = 0;
|
|
4741 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = 0;
|
|
4742 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
|
442
|
4743
|
|
4744 if (INTP (width))
|
428
|
4745 {
|
|
4746 int w = 1;
|
|
4747 if (XINT (width) > 1)
|
|
4748 w = XINT (width);
|
442
|
4749 IMAGE_INSTANCE_WIDTH (ii) = w;
|
|
4750 IMAGE_INSTANCE_SUBWINDOW_H_RESIZEP (ii) = 0;
|
428
|
4751 }
|
442
|
4752
|
|
4753 if (INTP (height))
|
428
|
4754 {
|
|
4755 int h = 1;
|
|
4756 if (XINT (height) > 1)
|
|
4757 h = XINT (height);
|
442
|
4758 IMAGE_INSTANCE_HEIGHT (ii) = h;
|
|
4759 IMAGE_INSTANCE_SUBWINDOW_V_RESIZEP (ii) = 0;
|
428
|
4760 }
|
|
4761 }
|
|
4762
|
442
|
4763 /* This is just a backup in case no-one has assigned a suitable geometry.
|
|
4764 #### It should really query the enclose window for geometry. */
|
|
4765 static void
|
|
4766 subwindow_query_geometry (Lisp_Object image_instance, int* width,
|
|
4767 int* height, enum image_instance_geometry disp,
|
|
4768 Lisp_Object domain)
|
|
4769 {
|
|
4770 if (width) *width = 20;
|
|
4771 if (height) *height = 20;
|
|
4772 }
|
|
4773
|
428
|
4774 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
|
4775 Return non-nil if OBJECT is a subwindow.
|
|
4776 */
|
|
4777 (object))
|
|
4778 {
|
|
4779 CHECK_IMAGE_INSTANCE (object);
|
|
4780 return (XIMAGE_INSTANCE_TYPE (object) == IMAGE_SUBWINDOW) ? Qt : Qnil;
|
|
4781 }
|
|
4782
|
|
4783 DEFUN ("image-instance-subwindow-id", Fimage_instance_subwindow_id, 1, 1, 0, /*
|
|
4784 Return the window id of SUBWINDOW as a number.
|
|
4785 */
|
|
4786 (subwindow))
|
|
4787 {
|
|
4788 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
442
|
4789 return make_int ((EMACS_INT) XIMAGE_INSTANCE_SUBWINDOW_ID (subwindow));
|
428
|
4790 }
|
|
4791
|
|
4792 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
|
4793 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
4794 If a value is nil that parameter is not changed.
|
|
4795 */
|
|
4796 (subwindow, width, height))
|
|
4797 {
|
|
4798 int neww, newh;
|
442
|
4799 Lisp_Image_Instance* ii;
|
428
|
4800
|
|
4801 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
442
|
4802 ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4803
|
|
4804 if (NILP (width))
|
442
|
4805 neww = IMAGE_INSTANCE_WIDTH (ii);
|
428
|
4806 else
|
|
4807 neww = XINT (width);
|
|
4808
|
|
4809 if (NILP (height))
|
442
|
4810 newh = IMAGE_INSTANCE_HEIGHT (ii);
|
428
|
4811 else
|
|
4812 newh = XINT (height);
|
|
4813
|
442
|
4814 /* The actual resizing gets done asynchronously by
|
438
|
4815 update_subwindow. */
|
442
|
4816 IMAGE_INSTANCE_HEIGHT (ii) = newh;
|
|
4817 IMAGE_INSTANCE_WIDTH (ii) = neww;
|
|
4818 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
|
428
|
4819
|
|
4820 return subwindow;
|
|
4821 }
|
|
4822
|
|
4823 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
|
4824 Generate a Map event for SUBWINDOW.
|
|
4825 */
|
|
4826 (subwindow))
|
|
4827 {
|
|
4828 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
|
4829 #if 0
|
|
4830 map_subwindow (subwindow, 0, 0);
|
|
4831 #endif
|
|
4832 return subwindow;
|
|
4833 }
|
|
4834
|
|
4835
|
|
4836 /*****************************************************************************
|
|
4837 * display tables *
|
|
4838 *****************************************************************************/
|
|
4839
|
|
4840 /* Get the display tables for use currently on window W with face
|
|
4841 FACE. #### This will have to be redone. */
|
|
4842
|
|
4843 void
|
|
4844 get_display_tables (struct window *w, face_index findex,
|
|
4845 Lisp_Object *face_table, Lisp_Object *window_table)
|
|
4846 {
|
|
4847 Lisp_Object tem;
|
|
4848 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
|
|
4849 if (UNBOUNDP (tem))
|
|
4850 tem = Qnil;
|
|
4851 if (!LISTP (tem))
|
|
4852 tem = noseeum_cons (tem, Qnil);
|
|
4853 *face_table = tem;
|
|
4854 tem = w->display_table;
|
|
4855 if (UNBOUNDP (tem))
|
|
4856 tem = Qnil;
|
|
4857 if (!LISTP (tem))
|
|
4858 tem = noseeum_cons (tem, Qnil);
|
|
4859 *window_table = tem;
|
|
4860 }
|
|
4861
|
|
4862 Lisp_Object
|
867
|
4863 display_table_entry (Ichar ch, Lisp_Object face_table,
|
428
|
4864 Lisp_Object window_table)
|
|
4865 {
|
|
4866 Lisp_Object tail;
|
|
4867
|
|
4868 /* Loop over FACE_TABLE, and then over WINDOW_TABLE. */
|
|
4869 for (tail = face_table; 1; tail = XCDR (tail))
|
|
4870 {
|
|
4871 Lisp_Object table;
|
|
4872 if (NILP (tail))
|
|
4873 {
|
|
4874 if (!NILP (window_table))
|
|
4875 {
|
|
4876 tail = window_table;
|
|
4877 window_table = Qnil;
|
|
4878 }
|
|
4879 else
|
|
4880 return Qnil;
|
|
4881 }
|
|
4882 table = XCAR (tail);
|
|
4883
|
|
4884 if (VECTORP (table))
|
|
4885 {
|
|
4886 if (ch < XVECTOR_LENGTH (table) && !NILP (XVECTOR_DATA (table)[ch]))
|
|
4887 return XVECTOR_DATA (table)[ch];
|
|
4888 else
|
|
4889 continue;
|
|
4890 }
|
|
4891 else if (CHAR_TABLEP (table)
|
|
4892 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR)
|
|
4893 {
|
826
|
4894 return get_char_table (ch, table);
|
428
|
4895 }
|
|
4896 else if (CHAR_TABLEP (table)
|
|
4897 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC)
|
|
4898 {
|
826
|
4899 Lisp_Object gotit = get_char_table (ch, table);
|
428
|
4900 if (!NILP (gotit))
|
|
4901 return gotit;
|
|
4902 else
|
|
4903 continue;
|
|
4904 }
|
|
4905 else if (RANGE_TABLEP (table))
|
|
4906 {
|
|
4907 Lisp_Object gotit = Fget_range_table (make_char (ch), table, Qnil);
|
|
4908 if (!NILP (gotit))
|
|
4909 return gotit;
|
|
4910 else
|
|
4911 continue;
|
|
4912 }
|
|
4913 else
|
|
4914 abort ();
|
|
4915 }
|
|
4916 }
|
|
4917
|
793
|
4918 /****************************************************************************
|
|
4919 * timeouts for animated glyphs *
|
|
4920 ****************************************************************************/
|
428
|
4921 static Lisp_Object Qglyph_animated_timeout_handler;
|
|
4922
|
|
4923 DEFUN ("glyph-animated-timeout-handler", Fglyph_animated_timeout_handler, 1, 1, 0, /*
|
|
4924 Callback function for updating animated images.
|
|
4925 Don't use this.
|
|
4926 */
|
|
4927 (arg))
|
|
4928 {
|
|
4929 CHECK_WEAK_LIST (arg);
|
|
4930
|
|
4931 if (!NILP (XWEAK_LIST_LIST (arg)) && !NILP (XCAR (XWEAK_LIST_LIST (arg))))
|
|
4932 {
|
|
4933 Lisp_Object value = XCAR (XWEAK_LIST_LIST (arg));
|
440
|
4934
|
428
|
4935 if (IMAGE_INSTANCEP (value))
|
|
4936 {
|
440
|
4937 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (value);
|
428
|
4938
|
|
4939 if (COLOR_PIXMAP_IMAGE_INSTANCEP (value)
|
|
4940 &&
|
|
4941 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) > 1
|
|
4942 &&
|
|
4943 !disable_animated_pixmaps)
|
|
4944 {
|
|
4945 /* Increment the index of the image slice we are currently
|
|
4946 viewing. */
|
|
4947 IMAGE_INSTANCE_PIXMAP_SLICE (ii) =
|
|
4948 (IMAGE_INSTANCE_PIXMAP_SLICE (ii) + 1)
|
|
4949 % IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii);
|
|
4950 /* We might need to kick redisplay at this point - but we
|
|
4951 also might not. */
|
440
|
4952 MARK_DEVICE_FRAMES_GLYPHS_CHANGED
|
442
|
4953 (XDEVICE (image_instance_device (value)));
|
|
4954 /* Cascade dirtiness so that we can have an animated glyph in a layout
|
|
4955 for instance. */
|
|
4956 set_image_instance_dirty_p (value, 1);
|
428
|
4957 }
|
|
4958 }
|
|
4959 }
|
|
4960 return Qnil;
|
|
4961 }
|
|
4962
|
793
|
4963 Lisp_Object
|
|
4964 add_glyph_animated_timeout (EMACS_INT tickms, Lisp_Object image)
|
428
|
4965 {
|
|
4966 Lisp_Object ret = Qnil;
|
|
4967
|
|
4968 if (tickms > 0 && IMAGE_INSTANCEP (image))
|
|
4969 {
|
|
4970 double ms = ((double)tickms) / 1000.0;
|
|
4971 struct gcpro gcpro1;
|
|
4972 Lisp_Object holder = make_weak_list (WEAK_LIST_SIMPLE);
|
|
4973
|
|
4974 GCPRO1 (holder);
|
|
4975 XWEAK_LIST_LIST (holder) = Fcons (image, Qnil);
|
|
4976
|
|
4977 ret = Fadd_timeout (make_float (ms),
|
|
4978 Qglyph_animated_timeout_handler,
|
|
4979 holder, make_float (ms));
|
|
4980
|
|
4981 UNGCPRO;
|
|
4982 }
|
|
4983 return ret;
|
|
4984 }
|
|
4985
|
793
|
4986 void
|
|
4987 disable_glyph_animated_timeout (int i)
|
|
4988 {
|
|
4989 Fdisable_timeout (make_int (i));
|
428
|
4990 }
|
|
4991
|
|
4992
|
|
4993 /*****************************************************************************
|
|
4994 * initialization *
|
|
4995 *****************************************************************************/
|
|
4996
|
|
4997 void
|
|
4998 syms_of_glyphs (void)
|
|
4999 {
|
442
|
5000 INIT_LRECORD_IMPLEMENTATION (glyph);
|
|
5001 INIT_LRECORD_IMPLEMENTATION (image_instance);
|
|
5002
|
428
|
5003 /* image instantiators */
|
|
5004
|
|
5005 DEFSUBR (Fimage_instantiator_format_list);
|
|
5006 DEFSUBR (Fvalid_image_instantiator_format_p);
|
|
5007 DEFSUBR (Fset_console_type_image_conversion_list);
|
|
5008 DEFSUBR (Fconsole_type_image_conversion_list);
|
|
5009
|
442
|
5010 DEFKEYWORD (Q_file);
|
|
5011 DEFKEYWORD (Q_data);
|
|
5012 DEFKEYWORD (Q_face);
|
|
5013 DEFKEYWORD (Q_pixel_height);
|
|
5014 DEFKEYWORD (Q_pixel_width);
|
428
|
5015
|
|
5016 #ifdef HAVE_XPM
|
442
|
5017 DEFKEYWORD (Q_color_symbols);
|
428
|
5018 #endif
|
|
5019 #ifdef HAVE_WINDOW_SYSTEM
|
442
|
5020 DEFKEYWORD (Q_mask_file);
|
|
5021 DEFKEYWORD (Q_mask_data);
|
|
5022 DEFKEYWORD (Q_hotspot_x);
|
|
5023 DEFKEYWORD (Q_hotspot_y);
|
|
5024 DEFKEYWORD (Q_foreground);
|
|
5025 DEFKEYWORD (Q_background);
|
428
|
5026 #endif
|
|
5027 /* image specifiers */
|
|
5028
|
|
5029 DEFSUBR (Fimage_specifier_p);
|
|
5030 /* Qimage in general.c */
|
|
5031
|
|
5032 /* image instances */
|
|
5033
|
563
|
5034 DEFSYMBOL_MULTIWORD_PREDICATE (Qimage_instancep);
|
428
|
5035
|
442
|
5036 DEFSYMBOL (Qnothing_image_instance_p);
|
|
5037 DEFSYMBOL (Qtext_image_instance_p);
|
|
5038 DEFSYMBOL (Qmono_pixmap_image_instance_p);
|
|
5039 DEFSYMBOL (Qcolor_pixmap_image_instance_p);
|
|
5040 DEFSYMBOL (Qpointer_image_instance_p);
|
|
5041 DEFSYMBOL (Qwidget_image_instance_p);
|
|
5042 DEFSYMBOL (Qsubwindow_image_instance_p);
|
428
|
5043
|
|
5044 DEFSUBR (Fmake_image_instance);
|
|
5045 DEFSUBR (Fimage_instance_p);
|
|
5046 DEFSUBR (Fimage_instance_type);
|
|
5047 DEFSUBR (Fvalid_image_instance_type_p);
|
|
5048 DEFSUBR (Fimage_instance_type_list);
|
|
5049 DEFSUBR (Fimage_instance_name);
|
442
|
5050 DEFSUBR (Fimage_instance_domain);
|
872
|
5051 DEFSUBR (Fimage_instance_instantiator);
|
428
|
5052 DEFSUBR (Fimage_instance_string);
|
|
5053 DEFSUBR (Fimage_instance_file_name);
|
|
5054 DEFSUBR (Fimage_instance_mask_file_name);
|
|
5055 DEFSUBR (Fimage_instance_depth);
|
|
5056 DEFSUBR (Fimage_instance_height);
|
|
5057 DEFSUBR (Fimage_instance_width);
|
|
5058 DEFSUBR (Fimage_instance_hotspot_x);
|
|
5059 DEFSUBR (Fimage_instance_hotspot_y);
|
|
5060 DEFSUBR (Fimage_instance_foreground);
|
|
5061 DEFSUBR (Fimage_instance_background);
|
|
5062 DEFSUBR (Fimage_instance_property);
|
|
5063 DEFSUBR (Fcolorize_image_instance);
|
|
5064 /* subwindows */
|
|
5065 DEFSUBR (Fsubwindowp);
|
|
5066 DEFSUBR (Fimage_instance_subwindow_id);
|
|
5067 DEFSUBR (Fresize_subwindow);
|
|
5068 DEFSUBR (Fforce_subwindow_map);
|
|
5069
|
|
5070 /* Qnothing defined as part of the "nothing" image-instantiator
|
|
5071 type. */
|
|
5072 /* Qtext defined in general.c */
|
442
|
5073 DEFSYMBOL (Qmono_pixmap);
|
|
5074 DEFSYMBOL (Qcolor_pixmap);
|
428
|
5075 /* Qpointer defined in general.c */
|
|
5076
|
|
5077 /* glyphs */
|
|
5078
|
442
|
5079 DEFSYMBOL (Qglyphp);
|
|
5080 DEFSYMBOL (Qcontrib_p);
|
|
5081 DEFSYMBOL (Qbaseline);
|
|
5082
|
|
5083 DEFSYMBOL (Qbuffer_glyph_p);
|
|
5084 DEFSYMBOL (Qpointer_glyph_p);
|
|
5085 DEFSYMBOL (Qicon_glyph_p);
|
|
5086
|
|
5087 DEFSYMBOL (Qconst_glyph_variable);
|
428
|
5088
|
|
5089 DEFSUBR (Fglyph_type);
|
|
5090 DEFSUBR (Fvalid_glyph_type_p);
|
|
5091 DEFSUBR (Fglyph_type_list);
|
|
5092 DEFSUBR (Fglyphp);
|
|
5093 DEFSUBR (Fmake_glyph_internal);
|
|
5094 DEFSUBR (Fglyph_width);
|
|
5095 DEFSUBR (Fglyph_ascent);
|
|
5096 DEFSUBR (Fglyph_descent);
|
|
5097 DEFSUBR (Fglyph_height);
|
442
|
5098 DEFSUBR (Fset_instantiator_property);
|
428
|
5099
|
|
5100 /* Qbuffer defined in general.c. */
|
|
5101 /* Qpointer defined above */
|
|
5102
|
|
5103 /* Unfortunately, timeout handlers must be lisp functions. This is
|
|
5104 for animated glyphs. */
|
442
|
5105 DEFSYMBOL (Qglyph_animated_timeout_handler);
|
428
|
5106 DEFSUBR (Fglyph_animated_timeout_handler);
|
|
5107
|
|
5108 /* Errors */
|
563
|
5109 DEFERROR_STANDARD (Qimage_conversion_error, Qconversion_error);
|
428
|
5110 }
|
|
5111
|
|
5112 static const struct lrecord_description image_specifier_description[] = {
|
440
|
5113 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee) },
|
|
5114 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee_property) },
|
428
|
5115 { XD_END }
|
|
5116 };
|
|
5117
|
|
5118 void
|
|
5119 specifier_type_create_image (void)
|
|
5120 {
|
|
5121 /* image specifiers */
|
|
5122
|
|
5123 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
|
|
5124
|
|
5125 SPECIFIER_HAS_METHOD (image, create);
|
|
5126 SPECIFIER_HAS_METHOD (image, mark);
|
|
5127 SPECIFIER_HAS_METHOD (image, instantiate);
|
|
5128 SPECIFIER_HAS_METHOD (image, validate);
|
|
5129 SPECIFIER_HAS_METHOD (image, after_change);
|
|
5130 SPECIFIER_HAS_METHOD (image, going_to_add);
|
434
|
5131 SPECIFIER_HAS_METHOD (image, copy_instantiator);
|
428
|
5132 }
|
|
5133
|
|
5134 void
|
|
5135 reinit_specifier_type_create_image (void)
|
|
5136 {
|
|
5137 REINITIALIZE_SPECIFIER_TYPE (image);
|
|
5138 }
|
|
5139
|
|
5140
|
|
5141 static const struct lrecord_description iike_description_1[] = {
|
440
|
5142 { XD_LISP_OBJECT, offsetof (ii_keyword_entry, keyword) },
|
428
|
5143 { XD_END }
|
|
5144 };
|
|
5145
|
|
5146 static const struct struct_description iike_description = {
|
440
|
5147 sizeof (ii_keyword_entry),
|
428
|
5148 iike_description_1
|
|
5149 };
|
|
5150
|
|
5151 static const struct lrecord_description iiked_description_1[] = {
|
440
|
5152 XD_DYNARR_DESC (ii_keyword_entry_dynarr, &iike_description),
|
428
|
5153 { XD_END }
|
|
5154 };
|
|
5155
|
|
5156 static const struct struct_description iiked_description = {
|
440
|
5157 sizeof (ii_keyword_entry_dynarr),
|
428
|
5158 iiked_description_1
|
|
5159 };
|
|
5160
|
|
5161 static const struct lrecord_description iife_description_1[] = {
|
440
|
5162 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, symbol) },
|
|
5163 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, device) },
|
|
5164 { XD_STRUCT_PTR, offsetof (image_instantiator_format_entry, meths), 1, &iim_description },
|
428
|
5165 { XD_END }
|
|
5166 };
|
|
5167
|
|
5168 static const struct struct_description iife_description = {
|
440
|
5169 sizeof (image_instantiator_format_entry),
|
428
|
5170 iife_description_1
|
|
5171 };
|
|
5172
|
|
5173 static const struct lrecord_description iifed_description_1[] = {
|
440
|
5174 XD_DYNARR_DESC (image_instantiator_format_entry_dynarr, &iife_description),
|
428
|
5175 { XD_END }
|
|
5176 };
|
|
5177
|
|
5178 static const struct struct_description iifed_description = {
|
440
|
5179 sizeof (image_instantiator_format_entry_dynarr),
|
428
|
5180 iifed_description_1
|
|
5181 };
|
|
5182
|
|
5183 static const struct lrecord_description iim_description_1[] = {
|
440
|
5184 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, symbol) },
|
|
5185 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, device) },
|
|
5186 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, keywords), 1, &iiked_description },
|
|
5187 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, consoles), 1, &cted_description },
|
428
|
5188 { XD_END }
|
|
5189 };
|
|
5190
|
|
5191 const struct struct_description iim_description = {
|
442
|
5192 sizeof (struct image_instantiator_methods),
|
428
|
5193 iim_description_1
|
|
5194 };
|
|
5195
|
|
5196 void
|
|
5197 image_instantiator_format_create (void)
|
|
5198 {
|
|
5199 /* image instantiators */
|
|
5200
|
|
5201 the_image_instantiator_format_entry_dynarr =
|
|
5202 Dynarr_new (image_instantiator_format_entry);
|
|
5203
|
|
5204 Vimage_instantiator_format_list = Qnil;
|
|
5205 staticpro (&Vimage_instantiator_format_list);
|
|
5206
|
452
|
5207 dump_add_root_struct_ptr (&the_image_instantiator_format_entry_dynarr, &iifed_description);
|
428
|
5208
|
|
5209 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
|
|
5210
|
|
5211 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
|
|
5212 IIFORMAT_HAS_METHOD (nothing, instantiate);
|
|
5213
|
|
5214 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
|
|
5215
|
|
5216 IIFORMAT_HAS_METHOD (inherit, validate);
|
|
5217 IIFORMAT_HAS_METHOD (inherit, normalize);
|
|
5218 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
|
|
5219 IIFORMAT_HAS_METHOD (inherit, instantiate);
|
|
5220
|
|
5221 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
|
|
5222
|
|
5223 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
|
|
5224
|
|
5225 IIFORMAT_HAS_METHOD (string, validate);
|
442
|
5226 IIFORMAT_HAS_SHARED_METHOD (string, governing_domain, subwindow);
|
428
|
5227 IIFORMAT_HAS_METHOD (string, possible_dest_types);
|
|
5228 IIFORMAT_HAS_METHOD (string, instantiate);
|
|
5229
|
|
5230 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
|
|
5231 /* Do this so we can set strings. */
|
442
|
5232 /* #### Andy, what is this? This is a bogus format and should not be
|
|
5233 visible to the user. */
|
428
|
5234 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (text, "text");
|
442
|
5235 IIFORMAT_HAS_METHOD (text, update);
|
438
|
5236 IIFORMAT_HAS_METHOD (text, query_geometry);
|
428
|
5237
|
|
5238 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
|
|
5239
|
|
5240 IIFORMAT_HAS_METHOD (formatted_string, validate);
|
|
5241 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
|
|
5242 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
|
|
5243 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
|
|
5244
|
442
|
5245 /* Do this so pointers have geometry. */
|
|
5246 /* #### Andy, what is this? This is a bogus format and should not be
|
|
5247 visible to the user. */
|
|
5248 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (pointer, "pointer");
|
|
5249 IIFORMAT_HAS_SHARED_METHOD (pointer, query_geometry, subwindow);
|
|
5250
|
428
|
5251 /* subwindows */
|
|
5252 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (subwindow, "subwindow");
|
|
5253 IIFORMAT_HAS_METHOD (subwindow, possible_dest_types);
|
442
|
5254 IIFORMAT_HAS_METHOD (subwindow, governing_domain);
|
428
|
5255 IIFORMAT_HAS_METHOD (subwindow, instantiate);
|
442
|
5256 IIFORMAT_HAS_METHOD (subwindow, query_geometry);
|
428
|
5257 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_width, check_valid_int);
|
|
5258 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_height, check_valid_int);
|
|
5259
|
|
5260 #ifdef HAVE_WINDOW_SYSTEM
|
|
5261 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
5262
|
|
5263 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
5264 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
5265 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
5266
|
|
5267 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
5268 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
5269 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
5270 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
5271 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
5272 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
5273 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
5274 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
5275 #endif /* HAVE_WINDOW_SYSTEM */
|
|
5276
|
|
5277 #ifdef HAVE_XFACE
|
|
5278 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
5279
|
|
5280 IIFORMAT_HAS_METHOD (xface, validate);
|
|
5281 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
5282 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
5283
|
|
5284 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
5285 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
5286 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
5287 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
5288 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
5289 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
|
5290 #endif
|
|
5291
|
|
5292 #ifdef HAVE_XPM
|
|
5293 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
|
|
5294
|
|
5295 IIFORMAT_HAS_METHOD (xpm, validate);
|
|
5296 IIFORMAT_HAS_METHOD (xpm, normalize);
|
|
5297 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
|
|
5298
|
|
5299 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
|
|
5300 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
|
|
5301 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
|
|
5302 #endif /* HAVE_XPM */
|
|
5303 }
|
|
5304
|
|
5305 void
|
|
5306 reinit_vars_of_glyphs (void)
|
|
5307 {
|
|
5308 the_expose_ignore_blocktype =
|
|
5309 Blocktype_new (struct expose_ignore_blocktype);
|
|
5310
|
|
5311 hold_ignored_expose_registration = 0;
|
|
5312 }
|
|
5313
|
|
5314
|
|
5315 void
|
|
5316 vars_of_glyphs (void)
|
|
5317 {
|
|
5318 reinit_vars_of_glyphs ();
|
|
5319
|
|
5320 Vthe_nothing_vector = vector1 (Qnothing);
|
|
5321 staticpro (&Vthe_nothing_vector);
|
|
5322
|
|
5323 /* image instances */
|
|
5324
|
440
|
5325 Vimage_instance_type_list = Fcons (Qnothing,
|
|
5326 list6 (Qtext, Qmono_pixmap, Qcolor_pixmap,
|
428
|
5327 Qpointer, Qsubwindow, Qwidget));
|
|
5328 staticpro (&Vimage_instance_type_list);
|
|
5329
|
|
5330 /* glyphs */
|
|
5331
|
|
5332 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
|
|
5333 staticpro (&Vglyph_type_list);
|
|
5334
|
|
5335 /* The octal-escape glyph, control-arrow-glyph and
|
|
5336 invisible-text-glyph are completely initialized in glyphs.el */
|
|
5337
|
|
5338 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
|
|
5339 What to prefix character codes displayed in octal with.
|
|
5340 */);
|
|
5341 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5342
|
|
5343 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
|
|
5344 What to use as an arrow for control characters.
|
|
5345 */);
|
|
5346 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
5347 redisplay_glyph_changed);
|
|
5348
|
|
5349 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
|
|
5350 What to use to indicate the presence of invisible text.
|
|
5351 This is the glyph that is displayed when an ellipsis is called for
|
|
5352 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
|
|
5353 Normally this is three dots ("...").
|
|
5354 */);
|
|
5355 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
5356 redisplay_glyph_changed);
|
|
5357
|
|
5358 /* Partially initialized in glyphs.el */
|
|
5359 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
|
|
5360 What to display at the beginning of horizontally scrolled lines.
|
|
5361 */);
|
|
5362 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5363 #ifdef HAVE_WINDOW_SYSTEM
|
|
5364 Fprovide (Qxbm);
|
|
5365 #endif
|
|
5366 #ifdef HAVE_XPM
|
|
5367 Fprovide (Qxpm);
|
|
5368
|
|
5369 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
|
|
5370 Definitions of logical color-names used when reading XPM files.
|
|
5371 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
|
|
5372 The COLOR-NAME should be a string, which is the name of the color to define;
|
|
5373 the FORM should evaluate to a `color' specifier object, or a string to be
|
|
5374 passed to `make-color-instance'. If a loaded XPM file references a symbolic
|
|
5375 color called COLOR-NAME, it will display as the computed color instead.
|
|
5376
|
|
5377 The default value of this variable defines the logical color names
|
|
5378 \"foreground\" and \"background\" to be the colors of the `default' face.
|
|
5379 */ );
|
|
5380 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
|
|
5381 #endif /* HAVE_XPM */
|
|
5382 #ifdef HAVE_XFACE
|
|
5383 Fprovide (Qxface);
|
|
5384 #endif
|
|
5385
|
|
5386 DEFVAR_BOOL ("disable-animated-pixmaps", &disable_animated_pixmaps /*
|
|
5387 Whether animated pixmaps should be animated.
|
|
5388 Default is t.
|
|
5389 */);
|
|
5390 disable_animated_pixmaps = 0;
|
|
5391 }
|
|
5392
|
|
5393 void
|
|
5394 specifier_vars_of_glyphs (void)
|
|
5395 {
|
|
5396 /* #### Can we GC here? The set_specifier_* calls definitely need */
|
|
5397 /* protection. */
|
|
5398 /* display tables */
|
|
5399
|
|
5400 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
|
|
5401 *The display table currently in use.
|
|
5402 This is a specifier; use `set-specifier' to change it.
|
442
|
5403
|
|
5404 Display tables are used to control how characters are displayed. Each
|
|
5405 time that redisplay processes a character, it is looked up in all the
|
|
5406 display tables that apply (obtained by calling `specifier-instance' on
|
|
5407 `current-display-table' and any overriding display tables specified in
|
|
5408 currently active faces). The first entry found that matches the
|
|
5409 character determines how the character is displayed. If there is no
|
|
5410 matching entry, the default display method is used. (Non-control
|
|
5411 characters are displayed as themselves and control characters are
|
|
5412 displayed according to the buffer-local variable `ctl-arrow'. Control
|
|
5413 characters are further affected by `control-arrow-glyph' and
|
|
5414 `octal-escape-glyph'.)
|
|
5415
|
|
5416 Each instantiator in this specifier and the display-table specifiers
|
|
5417 in faces is a display table or a list of such tables. If a list, each
|
|
5418 table will be searched in turn for an entry matching a particular
|
|
5419 character. Each display table is one of
|
|
5420
|
|
5421 -- a vector, specifying values for characters starting at 0
|
|
5422 -- a char table, either of type `char' or `generic'
|
|
5423 -- a range table
|
|
5424
|
|
5425 Each entry in a display table should be one of
|
|
5426
|
|
5427 -- nil (this entry is ignored and the search continues)
|
|
5428 -- a character (use this character; if it happens to be the same as
|
|
5429 the original character, default processing happens, otherwise
|
|
5430 redisplay attempts to display this character directly;
|
|
5431 #### At some point recursive display-table lookup will be
|
|
5432 implemented.)
|
|
5433 -- a string (display each character in the string directly;
|
|
5434 #### At some point recursive display-table lookup will be
|
|
5435 implemented.)
|
|
5436 -- a glyph (display the glyph;
|
|
5437 #### At some point recursive display-table lookup will be
|
|
5438 implemented when a string glyph is being processed.)
|
|
5439 -- a cons of the form (format "STRING") where STRING is a printf-like
|
|
5440 spec used to process the character. #### Unfortunately no
|
|
5441 formatting directives other than %% are implemented.
|
|
5442 -- a vector (each element of the vector is processed recursively;
|
|
5443 in such a case, nil elements in the vector are simply ignored)
|
|
5444
|
|
5445 #### At some point in the near future, display tables are likely to
|
|
5446 be expanded to include other features, such as referencing characters
|
|
5447 in particular fonts and allowing the character search to continue
|
|
5448 all the way up the chain of specifier instantiators. These features
|
|
5449 are necessary to properly display Unicode characters.
|
428
|
5450 */ );
|
|
5451 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
|
|
5452 set_specifier_fallback (Vcurrent_display_table,
|
|
5453 list1 (Fcons (Qnil, Qnil)));
|
|
5454 set_specifier_caching (Vcurrent_display_table,
|
438
|
5455 offsetof (struct window, display_table),
|
428
|
5456 some_window_value_changed,
|
444
|
5457 0, 0, 0);
|
428
|
5458 }
|
|
5459
|
|
5460 void
|
|
5461 complex_vars_of_glyphs (void)
|
|
5462 {
|
|
5463 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5464 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
|
|
5465 What to display at the end of truncated lines.
|
|
5466 */ );
|
|
5467 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5468
|
|
5469 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5470 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
|
|
5471 What to display at the end of wrapped lines.
|
|
5472 */ );
|
|
5473 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5474
|
|
5475 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5476 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
|
|
5477 The glyph used to display the XEmacs logo at startup.
|
|
5478 */ );
|
|
5479 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
|
|
5480 }
|