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
|
|
2288 /* Compute height */
|
|
2289 if (height)
|
|
2290 {
|
|
2291 /* Compute string metric info */
|
867
|
2292 find_charsets_in_ibyte_string (charsets,
|
438
|
2293 XSTRING_DATA (string),
|
|
2294 XSTRING_LENGTH (string));
|
440
|
2295
|
438
|
2296 /* Fallback to the default face if none was provided. */
|
|
2297 if (!NILP (face))
|
|
2298 {
|
|
2299 reset_face_cachel (&frame_cachel);
|
|
2300 update_face_cachel_data (&frame_cachel, frame, face);
|
|
2301 cachel = &frame_cachel;
|
|
2302 }
|
|
2303 else
|
|
2304 {
|
442
|
2305 cachel = WINDOW_FACE_CACHEL (DOMAIN_XWINDOW (domain),
|
|
2306 DEFAULT_INDEX);
|
438
|
2307 }
|
440
|
2308
|
438
|
2309 ensure_face_cachel_complete (cachel, domain, charsets);
|
|
2310 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
|
440
|
2311
|
438
|
2312 *height = fm.ascent + fm.descent;
|
|
2313 /* #### descent only gets set if we query the height as well. */
|
|
2314 if (descent)
|
|
2315 *descent = fm.descent;
|
|
2316 }
|
440
|
2317
|
438
|
2318 /* Compute width */
|
|
2319 if (width)
|
|
2320 {
|
|
2321 if (!NILP (face))
|
|
2322 *width = redisplay_frame_text_width_string (XFRAME (frame),
|
|
2323 face,
|
|
2324 0, string, 0, -1);
|
|
2325 else
|
|
2326 *width = redisplay_frame_text_width_string (XFRAME (frame),
|
|
2327 Vdefault_face,
|
|
2328 0, string, 0, -1);
|
|
2329 }
|
|
2330 }
|
|
2331
|
|
2332 Lisp_Object
|
|
2333 query_string_font (Lisp_Object string, Lisp_Object face, Lisp_Object domain)
|
|
2334 {
|
|
2335 unsigned char charsets[NUM_LEADING_BYTES];
|
|
2336 struct face_cachel frame_cachel;
|
|
2337 struct face_cachel *cachel;
|
|
2338 int i;
|
442
|
2339 Lisp_Object frame = DOMAIN_FRAME (domain);
|
438
|
2340
|
|
2341 /* Compute string font info */
|
867
|
2342 find_charsets_in_ibyte_string (charsets,
|
438
|
2343 XSTRING_DATA (string),
|
|
2344 XSTRING_LENGTH (string));
|
440
|
2345
|
438
|
2346 reset_face_cachel (&frame_cachel);
|
|
2347 update_face_cachel_data (&frame_cachel, frame, face);
|
|
2348 cachel = &frame_cachel;
|
|
2349
|
|
2350 ensure_face_cachel_complete (cachel, domain, charsets);
|
440
|
2351
|
438
|
2352 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
2353 {
|
|
2354 if (charsets[i])
|
|
2355 {
|
440
|
2356 return FACE_CACHEL_FONT (cachel,
|
826
|
2357 charset_by_leading_byte (i +
|
438
|
2358 MIN_LEADING_BYTE));
|
|
2359
|
440
|
2360 }
|
438
|
2361 }
|
|
2362
|
|
2363 return Qnil; /* NOT REACHED */
|
|
2364 }
|
|
2365
|
|
2366 static void
|
|
2367 text_query_geometry (Lisp_Object image_instance,
|
442
|
2368 int* width, int* height,
|
438
|
2369 enum image_instance_geometry disp, Lisp_Object domain)
|
|
2370 {
|
440
|
2371 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
442
|
2372 int descent = 0;
|
438
|
2373
|
|
2374 query_string_geometry (IMAGE_INSTANCE_TEXT_STRING (ii),
|
|
2375 IMAGE_INSTANCE_FACE (ii),
|
|
2376 width, height, &descent, domain);
|
|
2377
|
|
2378 /* The descent gets set as a side effect of querying the
|
|
2379 geometry. */
|
|
2380 IMAGE_INSTANCE_TEXT_DESCENT (ii) = descent;
|
|
2381 }
|
|
2382
|
428
|
2383 /* set the properties of a string */
|
442
|
2384 static void
|
|
2385 text_update (Lisp_Object image_instance, Lisp_Object instantiator)
|
|
2386 {
|
|
2387 Lisp_Object val = find_keyword_in_vector (instantiator, Q_data);
|
|
2388
|
|
2389 if (!NILP (val))
|
428
|
2390 {
|
|
2391 CHECK_STRING (val);
|
442
|
2392 XIMAGE_INSTANCE_TEXT_STRING (image_instance) = val;
|
428
|
2393 }
|
|
2394 }
|
|
2395
|
|
2396
|
|
2397 /****************************************************************************
|
|
2398 * formatted-string *
|
|
2399 ****************************************************************************/
|
|
2400
|
|
2401 static void
|
|
2402 formatted_string_validate (Lisp_Object instantiator)
|
|
2403 {
|
|
2404 data_must_be_present (instantiator);
|
|
2405 }
|
|
2406
|
|
2407 static int
|
|
2408 formatted_string_possible_dest_types (void)
|
|
2409 {
|
|
2410 return IMAGE_TEXT_MASK;
|
|
2411 }
|
|
2412
|
|
2413 static void
|
|
2414 formatted_string_instantiate (Lisp_Object image_instance,
|
|
2415 Lisp_Object instantiator,
|
|
2416 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2417 int dest_mask, Lisp_Object domain)
|
|
2418 {
|
|
2419 /* #### implement this */
|
|
2420 warn_when_safe (Qunimplemented, Qnotice,
|
|
2421 "`formatted-string' not yet implemented; assuming `string'");
|
438
|
2422
|
440
|
2423 string_instantiate (image_instance, instantiator,
|
438
|
2424 pointer_fg, pointer_bg, dest_mask, domain);
|
428
|
2425 }
|
|
2426
|
|
2427
|
|
2428 /************************************************************************/
|
|
2429 /* pixmap file functions */
|
|
2430 /************************************************************************/
|
|
2431
|
|
2432 /* If INSTANTIATOR refers to inline data, return Qnil.
|
|
2433 If INSTANTIATOR refers to data in a file, return the full filename
|
|
2434 if it exists; otherwise, return a cons of (filename).
|
|
2435
|
|
2436 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
|
|
2437 keywords used to look up the file and inline data,
|
|
2438 respectively, in the instantiator. Normally these would
|
|
2439 be Q_file and Q_data, but might be different for mask data. */
|
|
2440
|
|
2441 Lisp_Object
|
|
2442 potential_pixmap_file_instantiator (Lisp_Object instantiator,
|
|
2443 Lisp_Object file_keyword,
|
|
2444 Lisp_Object data_keyword,
|
|
2445 Lisp_Object console_type)
|
|
2446 {
|
|
2447 Lisp_Object file;
|
|
2448 Lisp_Object data;
|
|
2449
|
|
2450 assert (VECTORP (instantiator));
|
|
2451
|
|
2452 data = find_keyword_in_vector (instantiator, data_keyword);
|
|
2453 file = find_keyword_in_vector (instantiator, file_keyword);
|
|
2454
|
|
2455 if (!NILP (file) && NILP (data))
|
|
2456 {
|
|
2457 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
|
|
2458 (decode_console_type(console_type, ERROR_ME),
|
|
2459 locate_pixmap_file, (file));
|
|
2460
|
|
2461 if (!NILP (retval))
|
|
2462 return retval;
|
|
2463 else
|
|
2464 return Fcons (file, Qnil); /* should have been file */
|
|
2465 }
|
|
2466
|
|
2467 return Qnil;
|
|
2468 }
|
|
2469
|
|
2470 Lisp_Object
|
|
2471 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2472 Lisp_Object image_type_tag)
|
|
2473 {
|
|
2474 /* This function can call lisp */
|
|
2475 Lisp_Object file = Qnil;
|
|
2476 struct gcpro gcpro1, gcpro2;
|
|
2477 Lisp_Object alist = Qnil;
|
|
2478
|
|
2479 GCPRO2 (file, alist);
|
|
2480
|
|
2481 /* Now, convert any file data into inline data. At the end of this,
|
|
2482 `data' will contain the inline data (if any) or Qnil, and `file'
|
|
2483 will contain the name this data was derived from (if known) or
|
|
2484 Qnil.
|
|
2485
|
|
2486 Note that if we cannot generate any regular inline data, we
|
|
2487 skip out. */
|
|
2488
|
|
2489 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2490 console_type);
|
|
2491
|
|
2492 if (CONSP (file)) /* failure locating filename */
|
563
|
2493 signal_double_image_error ("Opening pixmap file",
|
|
2494 "no such file or directory",
|
|
2495 Fcar (file));
|
428
|
2496
|
|
2497 if (NILP (file)) /* no conversion necessary */
|
|
2498 RETURN_UNGCPRO (inst);
|
|
2499
|
|
2500 alist = tagged_vector_to_alist (inst);
|
|
2501
|
|
2502 {
|
|
2503 Lisp_Object data = make_string_from_file (file);
|
|
2504 alist = remassq_no_quit (Q_file, alist);
|
|
2505 /* there can't be a :data at this point. */
|
|
2506 alist = Fcons (Fcons (Q_file, file),
|
|
2507 Fcons (Fcons (Q_data, data), alist));
|
|
2508 }
|
|
2509
|
|
2510 {
|
|
2511 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
|
|
2512 free_alist (alist);
|
|
2513 RETURN_UNGCPRO (result);
|
|
2514 }
|
|
2515 }
|
|
2516
|
|
2517
|
|
2518 #ifdef HAVE_WINDOW_SYSTEM
|
|
2519 /**********************************************************************
|
|
2520 * XBM *
|
|
2521 **********************************************************************/
|
|
2522
|
|
2523 /* Check if DATA represents a valid inline XBM spec (i.e. a list
|
|
2524 of (width height bits), with checking done on the dimensions).
|
|
2525 If not, signal an error. */
|
|
2526
|
|
2527 static void
|
|
2528 check_valid_xbm_inline (Lisp_Object data)
|
|
2529 {
|
|
2530 Lisp_Object width, height, bits;
|
|
2531
|
|
2532 if (!CONSP (data) ||
|
|
2533 !CONSP (XCDR (data)) ||
|
|
2534 !CONSP (XCDR (XCDR (data))) ||
|
|
2535 !NILP (XCDR (XCDR (XCDR (data)))))
|
563
|
2536 sferror ("Must be list of 3 elements", data);
|
428
|
2537
|
|
2538 width = XCAR (data);
|
|
2539 height = XCAR (XCDR (data));
|
|
2540 bits = XCAR (XCDR (XCDR (data)));
|
|
2541
|
|
2542 CHECK_STRING (bits);
|
|
2543
|
|
2544 if (!NATNUMP (width))
|
563
|
2545 invalid_argument ("Width must be a natural number", width);
|
428
|
2546
|
|
2547 if (!NATNUMP (height))
|
563
|
2548 invalid_argument ("Height must be a natural number", height);
|
428
|
2549
|
826
|
2550 if (((XINT (width) * XINT (height)) / 8) > string_char_length (bits))
|
563
|
2551 invalid_argument ("data is too short for width and height",
|
428
|
2552 vector3 (width, height, bits));
|
|
2553 }
|
|
2554
|
|
2555 /* Validate method for XBM's. */
|
|
2556
|
|
2557 static void
|
|
2558 xbm_validate (Lisp_Object instantiator)
|
|
2559 {
|
|
2560 file_or_data_must_be_present (instantiator);
|
|
2561 }
|
|
2562
|
|
2563 /* Given a filename that is supposed to contain XBM data, return
|
|
2564 the inline representation of it as (width height bits). Return
|
|
2565 the hotspot through XHOT and YHOT, if those pointers are not 0.
|
|
2566 If there is no hotspot, XHOT and YHOT will contain -1.
|
|
2567
|
|
2568 If the function fails:
|
|
2569
|
|
2570 -- if OK_IF_DATA_INVALID is set and the data was invalid,
|
|
2571 return Qt.
|
|
2572 -- maybe return an error, or return Qnil.
|
|
2573 */
|
|
2574
|
|
2575 #ifdef HAVE_X_WINDOWS
|
|
2576 #include <X11/Xlib.h>
|
|
2577 #else
|
|
2578 #define XFree(data) free(data)
|
|
2579 #endif
|
|
2580
|
|
2581 Lisp_Object
|
|
2582 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
|
|
2583 int ok_if_data_invalid)
|
|
2584 {
|
647
|
2585 int w, h;
|
771
|
2586 UChar_Binary *data;
|
428
|
2587 int result;
|
771
|
2588
|
|
2589 result = read_bitmap_data_from_file (name, &w, &h, &data, xhot, yhot);
|
428
|
2590
|
|
2591 if (result == BitmapSuccess)
|
|
2592 {
|
|
2593 Lisp_Object retval;
|
|
2594 int len = (w + 7) / 8 * h;
|
|
2595
|
|
2596 retval = list3 (make_int (w), make_int (h),
|
771
|
2597 make_ext_string ((Extbyte *) data, len, Qbinary));
|
444
|
2598 XFree (data);
|
428
|
2599 return retval;
|
|
2600 }
|
|
2601
|
|
2602 switch (result)
|
|
2603 {
|
|
2604 case BitmapOpenFailed:
|
|
2605 {
|
|
2606 /* should never happen */
|
563
|
2607 signal_double_image_error ("Opening bitmap file",
|
|
2608 "no such file or directory",
|
|
2609 name);
|
428
|
2610 }
|
|
2611 case BitmapFileInvalid:
|
|
2612 {
|
|
2613 if (ok_if_data_invalid)
|
|
2614 return Qt;
|
563
|
2615 signal_double_image_error ("Reading bitmap file",
|
|
2616 "invalid data in file",
|
|
2617 name);
|
428
|
2618 }
|
|
2619 case BitmapNoMemory:
|
|
2620 {
|
563
|
2621 signal_double_image_error ("Reading bitmap file",
|
|
2622 "out of memory",
|
|
2623 name);
|
428
|
2624 }
|
|
2625 default:
|
|
2626 {
|
563
|
2627 signal_double_image_error_2 ("Reading bitmap file",
|
|
2628 "unknown error code",
|
|
2629 make_int (result), name);
|
428
|
2630 }
|
|
2631 }
|
|
2632
|
|
2633 return Qnil; /* not reached */
|
|
2634 }
|
|
2635
|
|
2636 Lisp_Object
|
|
2637 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
|
|
2638 Lisp_Object mask_file, Lisp_Object console_type)
|
|
2639 {
|
|
2640 /* This is unclean but it's fairly standard -- a number of the
|
|
2641 bitmaps in /usr/include/X11/bitmaps use it -- so we support
|
|
2642 it. */
|
|
2643 if (NILP (mask_file)
|
|
2644 /* don't override explicitly specified mask data. */
|
|
2645 && NILP (assq_no_quit (Q_mask_data, alist))
|
|
2646 && !NILP (file))
|
|
2647 {
|
|
2648 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
2649 (decode_console_type(console_type, ERROR_ME),
|
|
2650 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
|
|
2651 if (NILP (mask_file))
|
|
2652 mask_file = MAYBE_LISP_CONTYPE_METH
|
|
2653 (decode_console_type(console_type, ERROR_ME),
|
|
2654 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
|
|
2655 }
|
|
2656
|
|
2657 if (!NILP (mask_file))
|
|
2658 {
|
|
2659 Lisp_Object mask_data =
|
|
2660 bitmap_to_lisp_data (mask_file, 0, 0, 0);
|
|
2661 alist = remassq_no_quit (Q_mask_file, alist);
|
|
2662 /* there can't be a :mask-data at this point. */
|
|
2663 alist = Fcons (Fcons (Q_mask_file, mask_file),
|
|
2664 Fcons (Fcons (Q_mask_data, mask_data), alist));
|
|
2665 }
|
|
2666
|
|
2667 return alist;
|
|
2668 }
|
|
2669
|
|
2670 /* Normalize method for XBM's. */
|
|
2671
|
|
2672 static Lisp_Object
|
442
|
2673 xbm_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2674 Lisp_Object dest_mask)
|
428
|
2675 {
|
|
2676 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
2677 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2678 Lisp_Object alist = Qnil;
|
|
2679
|
|
2680 GCPRO3 (file, mask_file, alist);
|
|
2681
|
|
2682 /* Now, convert any file data into inline data for both the regular
|
|
2683 data and the mask data. At the end of this, `data' will contain
|
|
2684 the inline data (if any) or Qnil, and `file' will contain
|
|
2685 the name this data was derived from (if known) or Qnil.
|
|
2686 Likewise for `mask_file' and `mask_data'.
|
|
2687
|
|
2688 Note that if we cannot generate any regular inline data, we
|
|
2689 skip out. */
|
|
2690
|
|
2691 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2692 console_type);
|
|
2693 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
2694 Q_mask_data, console_type);
|
|
2695
|
|
2696 if (CONSP (file)) /* failure locating filename */
|
563
|
2697 signal_double_image_error ("Opening bitmap file",
|
|
2698 "no such file or directory",
|
|
2699 Fcar (file));
|
428
|
2700
|
|
2701 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
2702 RETURN_UNGCPRO (inst);
|
|
2703
|
|
2704 alist = tagged_vector_to_alist (inst);
|
|
2705
|
|
2706 if (!NILP (file))
|
|
2707 {
|
|
2708 int xhot, yhot;
|
|
2709 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
|
|
2710 alist = remassq_no_quit (Q_file, alist);
|
|
2711 /* there can't be a :data at this point. */
|
|
2712 alist = Fcons (Fcons (Q_file, file),
|
|
2713 Fcons (Fcons (Q_data, data), alist));
|
|
2714
|
|
2715 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
|
|
2716 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
2717 alist);
|
|
2718 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
|
|
2719 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
2720 alist);
|
|
2721 }
|
|
2722
|
|
2723 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
|
2724
|
|
2725 {
|
|
2726 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
2727 free_alist (alist);
|
|
2728 RETURN_UNGCPRO (result);
|
|
2729 }
|
|
2730 }
|
|
2731
|
|
2732
|
|
2733 static int
|
|
2734 xbm_possible_dest_types (void)
|
|
2735 {
|
|
2736 return
|
|
2737 IMAGE_MONO_PIXMAP_MASK |
|
|
2738 IMAGE_COLOR_PIXMAP_MASK |
|
|
2739 IMAGE_POINTER_MASK;
|
|
2740 }
|
|
2741
|
|
2742 #endif
|
|
2743
|
|
2744
|
|
2745 #ifdef HAVE_XFACE
|
|
2746 /**********************************************************************
|
|
2747 * X-Face *
|
|
2748 **********************************************************************/
|
|
2749
|
|
2750 static void
|
|
2751 xface_validate (Lisp_Object instantiator)
|
|
2752 {
|
|
2753 file_or_data_must_be_present (instantiator);
|
|
2754 }
|
|
2755
|
|
2756 static Lisp_Object
|
442
|
2757 xface_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2758 Lisp_Object dest_mask)
|
428
|
2759 {
|
|
2760 /* This function can call lisp */
|
|
2761 Lisp_Object file = Qnil, mask_file = Qnil;
|
|
2762 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2763 Lisp_Object alist = Qnil;
|
|
2764
|
|
2765 GCPRO3 (file, mask_file, alist);
|
|
2766
|
|
2767 /* Now, convert any file data into inline data for both the regular
|
|
2768 data and the mask data. At the end of this, `data' will contain
|
|
2769 the inline data (if any) or Qnil, and `file' will contain
|
|
2770 the name this data was derived from (if known) or Qnil.
|
|
2771 Likewise for `mask_file' and `mask_data'.
|
|
2772
|
|
2773 Note that if we cannot generate any regular inline data, we
|
|
2774 skip out. */
|
|
2775
|
|
2776 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2777 console_type);
|
|
2778 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
|
|
2779 Q_mask_data, console_type);
|
|
2780
|
|
2781 if (CONSP (file)) /* failure locating filename */
|
563
|
2782 signal_double_image_error ("Opening bitmap file",
|
|
2783 "no such file or directory",
|
|
2784 Fcar (file));
|
428
|
2785
|
|
2786 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
|
|
2787 RETURN_UNGCPRO (inst);
|
|
2788
|
|
2789 alist = tagged_vector_to_alist (inst);
|
|
2790
|
|
2791 {
|
|
2792 Lisp_Object data = make_string_from_file (file);
|
|
2793 alist = remassq_no_quit (Q_file, alist);
|
|
2794 /* there can't be a :data at this point. */
|
|
2795 alist = Fcons (Fcons (Q_file, file),
|
|
2796 Fcons (Fcons (Q_data, data), alist));
|
|
2797 }
|
|
2798
|
|
2799 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
|
|
2800
|
|
2801 {
|
|
2802 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
|
|
2803 free_alist (alist);
|
|
2804 RETURN_UNGCPRO (result);
|
|
2805 }
|
|
2806 }
|
|
2807
|
|
2808 static int
|
|
2809 xface_possible_dest_types (void)
|
|
2810 {
|
|
2811 return
|
|
2812 IMAGE_MONO_PIXMAP_MASK |
|
|
2813 IMAGE_COLOR_PIXMAP_MASK |
|
|
2814 IMAGE_POINTER_MASK;
|
|
2815 }
|
|
2816
|
|
2817 #endif /* HAVE_XFACE */
|
|
2818
|
|
2819
|
|
2820 #ifdef HAVE_XPM
|
|
2821
|
|
2822 /**********************************************************************
|
|
2823 * XPM *
|
|
2824 **********************************************************************/
|
|
2825
|
462
|
2826 #ifdef HAVE_GTK
|
|
2827 /* Gtk has to be gratuitously different, eh? */
|
|
2828 Lisp_Object
|
|
2829 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
2830 {
|
|
2831 return (make_string_from_file (name));
|
|
2832 }
|
|
2833 #else
|
428
|
2834 Lisp_Object
|
|
2835 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
|
|
2836 {
|
|
2837 char **data;
|
|
2838 int result;
|
|
2839 char *fname = 0;
|
440
|
2840
|
442
|
2841 LISP_STRING_TO_EXTERNAL (name, fname, Qfile_name);
|
428
|
2842 result = XpmReadFileToData (fname, &data);
|
|
2843
|
|
2844 if (result == XpmSuccess)
|
|
2845 {
|
|
2846 Lisp_Object retval = Qnil;
|
|
2847 struct buffer *old_buffer = current_buffer;
|
|
2848 Lisp_Object temp_buffer =
|
|
2849 Fget_buffer_create (build_string (" *pixmap conversion*"));
|
|
2850 int elt;
|
|
2851 int height, width, ncolors;
|
|
2852 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
2853 int speccount = specpdl_depth ();
|
|
2854
|
|
2855 GCPRO3 (name, retval, temp_buffer);
|
|
2856
|
|
2857 specbind (Qinhibit_quit, Qt);
|
|
2858 set_buffer_internal (XBUFFER (temp_buffer));
|
|
2859 Ferase_buffer (Qnil);
|
|
2860
|
|
2861 buffer_insert_c_string (current_buffer, "/* XPM */\r");
|
|
2862 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
|
|
2863
|
|
2864 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
|
|
2865 for (elt = 0; elt <= width + ncolors; elt++)
|
|
2866 {
|
|
2867 buffer_insert_c_string (current_buffer, "\"");
|
|
2868 buffer_insert_c_string (current_buffer, data[elt]);
|
|
2869
|
|
2870 if (elt < width + ncolors)
|
|
2871 buffer_insert_c_string (current_buffer, "\",\r");
|
|
2872 else
|
|
2873 buffer_insert_c_string (current_buffer, "\"};\r");
|
|
2874 }
|
|
2875
|
|
2876 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
|
|
2877 XpmFree (data);
|
|
2878
|
|
2879 set_buffer_internal (old_buffer);
|
771
|
2880 unbind_to (speccount);
|
428
|
2881
|
|
2882 RETURN_UNGCPRO (retval);
|
|
2883 }
|
|
2884
|
|
2885 switch (result)
|
|
2886 {
|
|
2887 case XpmFileInvalid:
|
|
2888 {
|
|
2889 if (ok_if_data_invalid)
|
|
2890 return Qt;
|
|
2891 signal_image_error ("invalid XPM data in file", name);
|
|
2892 }
|
|
2893 case XpmNoMemory:
|
|
2894 {
|
563
|
2895 signal_double_image_error ("Reading pixmap file",
|
|
2896 "out of memory", name);
|
428
|
2897 }
|
|
2898 case XpmOpenFailed:
|
|
2899 {
|
|
2900 /* should never happen? */
|
563
|
2901 signal_double_image_error ("Opening pixmap file",
|
|
2902 "no such file or directory", name);
|
428
|
2903 }
|
|
2904 default:
|
|
2905 {
|
563
|
2906 signal_double_image_error_2 ("Parsing pixmap file",
|
|
2907 "unknown error code",
|
|
2908 make_int (result), name);
|
428
|
2909 break;
|
|
2910 }
|
|
2911 }
|
|
2912
|
|
2913 return Qnil; /* not reached */
|
|
2914 }
|
462
|
2915 #endif /* !HAVE_GTK */
|
428
|
2916
|
|
2917 static void
|
|
2918 check_valid_xpm_color_symbols (Lisp_Object data)
|
|
2919 {
|
|
2920 Lisp_Object rest;
|
|
2921
|
|
2922 for (rest = data; !NILP (rest); rest = XCDR (rest))
|
|
2923 {
|
|
2924 if (!CONSP (rest) ||
|
|
2925 !CONSP (XCAR (rest)) ||
|
|
2926 !STRINGP (XCAR (XCAR (rest))) ||
|
|
2927 (!STRINGP (XCDR (XCAR (rest))) &&
|
|
2928 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
|
563
|
2929 sferror ("Invalid color symbol alist", data);
|
428
|
2930 }
|
|
2931 }
|
|
2932
|
|
2933 static void
|
|
2934 xpm_validate (Lisp_Object instantiator)
|
|
2935 {
|
|
2936 file_or_data_must_be_present (instantiator);
|
|
2937 }
|
|
2938
|
|
2939 Lisp_Object Vxpm_color_symbols;
|
|
2940
|
|
2941 Lisp_Object
|
|
2942 evaluate_xpm_color_symbols (void)
|
|
2943 {
|
|
2944 Lisp_Object rest, results = Qnil;
|
|
2945 struct gcpro gcpro1, gcpro2;
|
|
2946
|
|
2947 GCPRO2 (rest, results);
|
|
2948 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
|
|
2949 {
|
|
2950 Lisp_Object name, value, cons;
|
|
2951
|
|
2952 CHECK_CONS (rest);
|
|
2953 cons = XCAR (rest);
|
|
2954 CHECK_CONS (cons);
|
|
2955 name = XCAR (cons);
|
|
2956 CHECK_STRING (name);
|
|
2957 value = XCDR (cons);
|
|
2958 CHECK_CONS (value);
|
|
2959 value = XCAR (value);
|
|
2960 value = Feval (value);
|
|
2961 if (NILP (value))
|
|
2962 continue;
|
|
2963 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
|
563
|
2964 invalid_argument
|
428
|
2965 ("Result from xpm-color-symbols eval must be nil, string, or color",
|
|
2966 value);
|
|
2967 results = Fcons (Fcons (name, value), results);
|
|
2968 }
|
|
2969 UNGCPRO; /* no more evaluation */
|
|
2970 return results;
|
|
2971 }
|
|
2972
|
|
2973 static Lisp_Object
|
442
|
2974 xpm_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
2975 Lisp_Object dest_mask)
|
428
|
2976 {
|
|
2977 Lisp_Object file = Qnil;
|
|
2978 Lisp_Object color_symbols;
|
|
2979 struct gcpro gcpro1, gcpro2;
|
|
2980 Lisp_Object alist = Qnil;
|
|
2981
|
|
2982 GCPRO2 (file, alist);
|
|
2983
|
|
2984 /* Now, convert any file data into inline data. At the end of this,
|
|
2985 `data' will contain the inline data (if any) or Qnil, and
|
|
2986 `file' will contain the name this data was derived from (if
|
|
2987 known) or Qnil.
|
|
2988
|
|
2989 Note that if we cannot generate any regular inline data, we
|
|
2990 skip out. */
|
|
2991
|
|
2992 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
|
|
2993 console_type);
|
|
2994
|
|
2995 if (CONSP (file)) /* failure locating filename */
|
563
|
2996 signal_double_image_error ("Opening pixmap file",
|
|
2997 "no such file or directory",
|
|
2998 Fcar (file));
|
428
|
2999
|
|
3000 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
|
|
3001 Qunbound);
|
|
3002
|
|
3003 if (NILP (file) && !UNBOUNDP (color_symbols))
|
|
3004 /* no conversion necessary */
|
|
3005 RETURN_UNGCPRO (inst);
|
|
3006
|
|
3007 alist = tagged_vector_to_alist (inst);
|
|
3008
|
|
3009 if (!NILP (file))
|
|
3010 {
|
|
3011 Lisp_Object data = pixmap_to_lisp_data (file, 0);
|
|
3012 alist = remassq_no_quit (Q_file, alist);
|
|
3013 /* there can't be a :data at this point. */
|
|
3014 alist = Fcons (Fcons (Q_file, file),
|
|
3015 Fcons (Fcons (Q_data, data), alist));
|
|
3016 }
|
|
3017
|
|
3018 if (UNBOUNDP (color_symbols))
|
|
3019 {
|
|
3020 color_symbols = evaluate_xpm_color_symbols ();
|
|
3021 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
|
|
3022 alist);
|
|
3023 }
|
|
3024
|
|
3025 {
|
|
3026 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
3027 free_alist (alist);
|
|
3028 RETURN_UNGCPRO (result);
|
|
3029 }
|
|
3030 }
|
|
3031
|
|
3032 static int
|
|
3033 xpm_possible_dest_types (void)
|
|
3034 {
|
|
3035 return
|
|
3036 IMAGE_MONO_PIXMAP_MASK |
|
|
3037 IMAGE_COLOR_PIXMAP_MASK |
|
|
3038 IMAGE_POINTER_MASK;
|
|
3039 }
|
|
3040
|
|
3041 #endif /* HAVE_XPM */
|
|
3042
|
|
3043
|
|
3044 /****************************************************************************
|
|
3045 * Image Specifier Object *
|
|
3046 ****************************************************************************/
|
|
3047
|
|
3048 DEFINE_SPECIFIER_TYPE (image);
|
|
3049
|
|
3050 static void
|
|
3051 image_create (Lisp_Object obj)
|
|
3052 {
|
440
|
3053 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3054
|
|
3055 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
|
|
3056 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
|
|
3057 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
|
|
3058 }
|
|
3059
|
|
3060 static void
|
|
3061 image_mark (Lisp_Object obj)
|
|
3062 {
|
440
|
3063 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3064
|
|
3065 mark_object (IMAGE_SPECIFIER_ATTACHEE (image));
|
|
3066 mark_object (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image));
|
|
3067 }
|
|
3068
|
450
|
3069 static int
|
|
3070 instantiator_eq_equal (Lisp_Object obj1, Lisp_Object obj2)
|
|
3071 {
|
|
3072 if (EQ (obj1, obj2))
|
|
3073 return 1;
|
|
3074
|
|
3075 else if (CONSP (obj1) && CONSP (obj2))
|
|
3076 {
|
|
3077 return instantiator_eq_equal (XCAR (obj1), XCAR (obj2))
|
|
3078 &&
|
|
3079 instantiator_eq_equal (XCDR (obj1), XCDR (obj2));
|
|
3080 }
|
|
3081 return 0;
|
|
3082 }
|
|
3083
|
665
|
3084 static Hashcode
|
450
|
3085 instantiator_eq_hash (Lisp_Object obj)
|
|
3086 {
|
|
3087 if (CONSP (obj))
|
|
3088 {
|
|
3089 /* no point in worrying about tail recursion, since we're not
|
|
3090 going very deep */
|
|
3091 return HASH2 (instantiator_eq_hash (XCAR (obj)),
|
|
3092 instantiator_eq_hash (XCDR (obj)));
|
|
3093 }
|
|
3094 return LISP_HASH (obj);
|
|
3095 }
|
|
3096
|
|
3097 /* We need a special hash table for storing image instances. */
|
|
3098 Lisp_Object
|
|
3099 make_image_instance_cache_hash_table (void)
|
|
3100 {
|
|
3101 return make_general_lisp_hash_table
|
|
3102 (instantiator_eq_hash, instantiator_eq_equal,
|
|
3103 30, -1.0, -1.0,
|
|
3104 HASH_TABLE_KEY_CAR_VALUE_WEAK);
|
|
3105 }
|
|
3106
|
428
|
3107 static Lisp_Object
|
|
3108 image_instantiate_cache_result (Lisp_Object locative)
|
|
3109 {
|
442
|
3110 /* locative = (instance instantiator . subtable)
|
|
3111
|
|
3112 So we are using the instantiator as the key and the instance as
|
|
3113 the value. Since the hashtable is key-weak this means that the
|
|
3114 image instance will stay around as long as the instantiator stays
|
|
3115 around. The instantiator is stored in the `image' slot of the
|
|
3116 glyph, so as long as the glyph is marked the instantiator will be
|
|
3117 as well and hence the cached image instance also.*/
|
428
|
3118 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
|
853
|
3119 free_cons (XCDR (locative));
|
|
3120 free_cons (locative);
|
428
|
3121 return Qnil;
|
|
3122 }
|
|
3123
|
|
3124 /* Given a specification for an image, return an instance of
|
|
3125 the image which matches the given instantiator and which can be
|
|
3126 displayed in the given domain. */
|
|
3127
|
|
3128 static Lisp_Object
|
|
3129 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
|
|
3130 Lisp_Object domain, Lisp_Object instantiator,
|
|
3131 Lisp_Object depth)
|
|
3132 {
|
438
|
3133 Lisp_Object glyph = IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
|
428
|
3134 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
|
|
3135 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
|
|
3136
|
|
3137 if (IMAGE_INSTANCEP (instantiator))
|
|
3138 {
|
442
|
3139 /* make sure that the image instance's governing domain and type are
|
428
|
3140 matching. */
|
442
|
3141 Lisp_Object governing_domain = XIMAGE_INSTANCE_DOMAIN (instantiator);
|
|
3142
|
|
3143 if ((DEVICEP (governing_domain)
|
|
3144 && EQ (governing_domain, DOMAIN_DEVICE (domain)))
|
|
3145 || (FRAMEP (governing_domain)
|
|
3146 && EQ (governing_domain, DOMAIN_FRAME (domain)))
|
|
3147 || (WINDOWP (governing_domain)
|
|
3148 && EQ (governing_domain, DOMAIN_WINDOW (domain))))
|
428
|
3149 {
|
|
3150 int mask =
|
|
3151 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
|
|
3152 if (mask & dest_mask)
|
|
3153 return instantiator;
|
|
3154 else
|
563
|
3155 invalid_argument ("Type of image instance not allowed here",
|
428
|
3156 instantiator);
|
|
3157 }
|
|
3158 else
|
563
|
3159 invalid_argument_2 ("Wrong domain for image instance",
|
442
|
3160 instantiator, domain);
|
428
|
3161 }
|
452
|
3162 /* How ugly !! An image instanciator that uses a kludgy syntax to snarf in
|
|
3163 face properties. There's a design flaw here. -- didier */
|
428
|
3164 else if (VECTORP (instantiator)
|
450
|
3165 && EQ (INSTANTIATOR_TYPE (instantiator), Qinherit))
|
428
|
3166 {
|
|
3167 assert (XVECTOR_LENGTH (instantiator) == 3);
|
|
3168 return (FACE_PROPERTY_INSTANCE
|
|
3169 (Fget_face (XVECTOR_DATA (instantiator)[2]),
|
452
|
3170 Qbackground_pixmap, domain, 1, depth));
|
428
|
3171 }
|
|
3172 else
|
|
3173 {
|
442
|
3174 Lisp_Object instance = Qnil;
|
|
3175 Lisp_Object subtable = Qnil;
|
450
|
3176 /* #### Should this be GCPRO'd? */
|
|
3177 Lisp_Object hash_key = Qnil;
|
428
|
3178 Lisp_Object pointer_fg = Qnil;
|
|
3179 Lisp_Object pointer_bg = Qnil;
|
442
|
3180 Lisp_Object governing_domain =
|
|
3181 get_image_instantiator_governing_domain (instantiator, domain);
|
|
3182 struct gcpro gcpro1;
|
|
3183
|
|
3184 GCPRO1 (instance);
|
|
3185
|
|
3186 /* We have to put subwindow, widget and text image instances in
|
|
3187 a per-window cache so that we can see the same glyph in
|
|
3188 different windows. We use governing_domain to determine the type
|
|
3189 of image_instance that will be created. */
|
428
|
3190
|
|
3191 if (pointerp)
|
|
3192 {
|
|
3193 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
|
|
3194 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
|
452
|
3195 hash_key = list4 (glyph, INSTANTIATOR_TYPE (instantiator),
|
450
|
3196 pointer_fg, pointer_bg);
|
428
|
3197 }
|
450
|
3198 else
|
|
3199 /* We cannot simply key on the glyph since fallbacks could use
|
|
3200 the same glyph but have a totally different instantiator
|
|
3201 type. Thus we key on the glyph and the type (but not any
|
|
3202 other parts of the instantiator. */
|
|
3203 hash_key = list2 (glyph, INSTANTIATOR_TYPE (instantiator));
|
428
|
3204
|
442
|
3205 /* First look in the device cache. */
|
|
3206 if (DEVICEP (governing_domain))
|
428
|
3207 {
|
442
|
3208 subtable = Fgethash (make_int (dest_mask),
|
|
3209 XDEVICE (governing_domain)->
|
|
3210 image_instance_cache,
|
|
3211 Qunbound);
|
|
3212 if (UNBOUNDP (subtable))
|
|
3213 {
|
|
3214 /* For the image instance cache, we do comparisons with
|
|
3215 EQ rather than with EQUAL, as we do for color and
|
|
3216 font names. The reasons are:
|
|
3217
|
|
3218 1) pixmap data can be very long, and thus the hashing
|
|
3219 and comparing will take awhile.
|
|
3220
|
|
3221 2) It's not so likely that we'll run into things that
|
|
3222 are EQUAL but not EQ (that can happen a lot with
|
|
3223 faces, because their specifiers are copied around);
|
|
3224 but pixmaps tend not to be in faces.
|
|
3225
|
|
3226 However, if the image-instance could be a pointer, we
|
|
3227 have to use EQUAL because we massaged the
|
|
3228 instantiator into a cons3 also containing the
|
|
3229 foreground and background of the pointer face. */
|
450
|
3230 subtable = make_image_instance_cache_hash_table ();
|
|
3231
|
442
|
3232 Fputhash (make_int (dest_mask), subtable,
|
|
3233 XDEVICE (governing_domain)->image_instance_cache);
|
|
3234 instance = Qunbound;
|
|
3235 }
|
|
3236 else
|
|
3237 {
|
450
|
3238 instance = Fgethash (hash_key, subtable, Qunbound);
|
442
|
3239 }
|
|
3240 }
|
|
3241 else if (WINDOWP (governing_domain))
|
|
3242 {
|
|
3243 /* Subwindows have a per-window cache and have to be treated
|
|
3244 differently. */
|
|
3245 instance =
|
450
|
3246 Fgethash (hash_key,
|
442
|
3247 XWINDOW (governing_domain)->subwindow_instance_cache,
|
|
3248 Qunbound);
|
428
|
3249 }
|
|
3250 else
|
442
|
3251 abort (); /* We're not allowed anything else currently. */
|
|
3252
|
|
3253 /* If we don't have an instance at this point then create
|
|
3254 one. */
|
428
|
3255 if (UNBOUNDP (instance))
|
|
3256 {
|
|
3257 Lisp_Object locative =
|
|
3258 noseeum_cons (Qnil,
|
450
|
3259 noseeum_cons (hash_key,
|
442
|
3260 DEVICEP (governing_domain) ? subtable
|
|
3261 : XWINDOW (governing_domain)
|
|
3262 ->subwindow_instance_cache));
|
428
|
3263 int speccount = specpdl_depth ();
|
440
|
3264
|
442
|
3265 /* Make sure we cache the failures, too. Use an
|
|
3266 unwind-protect to catch such errors. If we fail, the
|
|
3267 unwind-protect records nil in the hash table. If we
|
|
3268 succeed, we change the car of the locative to the
|
|
3269 resulting instance, which gets recorded instead. */
|
428
|
3270 record_unwind_protect (image_instantiate_cache_result,
|
|
3271 locative);
|
442
|
3272 instance =
|
|
3273 instantiate_image_instantiator (governing_domain,
|
|
3274 domain, instantiator,
|
|
3275 pointer_fg, pointer_bg,
|
|
3276 dest_mask, glyph);
|
|
3277
|
|
3278 /* We need a per-frame cache for redisplay. */
|
|
3279 cache_subwindow_instance_in_frame_maybe (instance);
|
440
|
3280
|
428
|
3281 Fsetcar (locative, instance);
|
442
|
3282 #ifdef ERROR_CHECK_GLYPHS
|
|
3283 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
|
3284 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
|
3285 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
|
|
3286 DOMAIN_FRAME (domain)));
|
|
3287 #endif
|
771
|
3288 unbind_to (speccount);
|
442
|
3289 #ifdef ERROR_CHECK_GLYPHS
|
428
|
3290 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
442
|
3291 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
450
|
3292 assert (EQ (Fgethash (hash_key,
|
442
|
3293 XWINDOW (governing_domain)
|
|
3294 ->subwindow_instance_cache,
|
|
3295 Qunbound), instance));
|
|
3296 #endif
|
428
|
3297 }
|
442
|
3298 else if (NILP (instance))
|
563
|
3299 gui_error ("Can't instantiate image (probably cached)", instantiator);
|
442
|
3300 /* We found an instance. However, because we are using the glyph
|
|
3301 as the hash key instead of the instantiator, the current
|
|
3302 instantiator may not be the same as the original. Thus we
|
|
3303 must update the instance based on the new
|
|
3304 instantiator. Preserving instance identity like this is
|
|
3305 important to stop excessive window system widget creation and
|
|
3306 deletion - and hence flashing. */
|
|
3307 else
|
|
3308 {
|
|
3309 /* #### This function should be able to cope with *all*
|
|
3310 changes to the instantiator, but currently only copes
|
|
3311 with the most used properties. This means that it is
|
|
3312 possible to make changes that don't get reflected in the
|
|
3313 display. */
|
|
3314 update_image_instance (instance, instantiator);
|
450
|
3315 free_list (hash_key);
|
442
|
3316 }
|
|
3317
|
|
3318 #ifdef ERROR_CHECK_GLYPHS
|
|
3319 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
|
|
3320 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
|
|
3321 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
|
|
3322 DOMAIN_FRAME (domain)));
|
|
3323 #endif
|
|
3324 ERROR_CHECK_IMAGE_INSTANCE (instance);
|
|
3325 RETURN_UNGCPRO (instance);
|
428
|
3326 }
|
|
3327
|
|
3328 abort ();
|
|
3329 return Qnil; /* not reached */
|
|
3330 }
|
|
3331
|
|
3332 /* Validate an image instantiator. */
|
|
3333
|
|
3334 static void
|
|
3335 image_validate (Lisp_Object instantiator)
|
|
3336 {
|
|
3337 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
|
|
3338 return;
|
|
3339 else if (VECTORP (instantiator))
|
|
3340 {
|
|
3341 Lisp_Object *elt = XVECTOR_DATA (instantiator);
|
|
3342 int instantiator_len = XVECTOR_LENGTH (instantiator);
|
|
3343 struct image_instantiator_methods *meths;
|
|
3344 Lisp_Object already_seen = Qnil;
|
|
3345 struct gcpro gcpro1;
|
|
3346 int i;
|
|
3347
|
|
3348 if (instantiator_len < 1)
|
563
|
3349 sferror ("Vector length must be at least 1",
|
428
|
3350 instantiator);
|
|
3351
|
|
3352 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
|
|
3353 if (!(instantiator_len & 1))
|
563
|
3354 sferror
|
428
|
3355 ("Must have alternating keyword/value pairs", instantiator);
|
|
3356
|
|
3357 GCPRO1 (already_seen);
|
|
3358
|
|
3359 for (i = 1; i < instantiator_len; i += 2)
|
|
3360 {
|
|
3361 Lisp_Object keyword = elt[i];
|
|
3362 Lisp_Object value = elt[i+1];
|
|
3363 int j;
|
|
3364
|
|
3365 CHECK_SYMBOL (keyword);
|
|
3366 if (!SYMBOL_IS_KEYWORD (keyword))
|
563
|
3367 invalid_argument ("Symbol must begin with a colon", keyword);
|
428
|
3368
|
|
3369 for (j = 0; j < Dynarr_length (meths->keywords); j++)
|
|
3370 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
|
|
3371 break;
|
|
3372
|
|
3373 if (j == Dynarr_length (meths->keywords))
|
563
|
3374 invalid_argument ("Unrecognized keyword", keyword);
|
428
|
3375
|
|
3376 if (!Dynarr_at (meths->keywords, j).multiple_p)
|
|
3377 {
|
|
3378 if (!NILP (memq_no_quit (keyword, already_seen)))
|
563
|
3379 sferror
|
428
|
3380 ("Keyword may not appear more than once", keyword);
|
|
3381 already_seen = Fcons (keyword, already_seen);
|
|
3382 }
|
|
3383
|
|
3384 (Dynarr_at (meths->keywords, j).validate) (value);
|
|
3385 }
|
|
3386
|
|
3387 UNGCPRO;
|
|
3388
|
|
3389 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
|
|
3390 }
|
|
3391 else
|
563
|
3392 invalid_argument ("Must be string or vector", instantiator);
|
428
|
3393 }
|
|
3394
|
|
3395 static void
|
|
3396 image_after_change (Lisp_Object specifier, Lisp_Object locale)
|
|
3397 {
|
|
3398 Lisp_Object attachee =
|
|
3399 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
|
|
3400 Lisp_Object property =
|
|
3401 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
|
|
3402 if (FACEP (attachee))
|
448
|
3403 {
|
|
3404 face_property_was_changed (attachee, property, locale);
|
|
3405 if (BUFFERP (locale))
|
|
3406 XBUFFER (locale)->buffer_local_face_property = 1;
|
|
3407 }
|
428
|
3408 else if (GLYPHP (attachee))
|
|
3409 glyph_property_was_changed (attachee, property, locale);
|
|
3410 }
|
|
3411
|
|
3412 void
|
|
3413 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
|
|
3414 Lisp_Object property)
|
|
3415 {
|
440
|
3416 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
|
428
|
3417
|
|
3418 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
|
|
3419 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
|
|
3420 }
|
|
3421
|
|
3422 static Lisp_Object
|
|
3423 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
|
|
3424 Lisp_Object tag_set, Lisp_Object instantiator)
|
|
3425 {
|
|
3426 Lisp_Object possible_console_types = Qnil;
|
|
3427 Lisp_Object rest;
|
|
3428 Lisp_Object retlist = Qnil;
|
|
3429 struct gcpro gcpro1, gcpro2;
|
|
3430
|
|
3431 LIST_LOOP (rest, Vconsole_type_list)
|
|
3432 {
|
|
3433 Lisp_Object contype = XCAR (rest);
|
|
3434 if (!NILP (memq_no_quit (contype, tag_set)))
|
|
3435 possible_console_types = Fcons (contype, possible_console_types);
|
|
3436 }
|
|
3437
|
|
3438 if (XINT (Flength (possible_console_types)) > 1)
|
|
3439 /* two conflicting console types specified */
|
|
3440 return Qnil;
|
|
3441
|
|
3442 if (NILP (possible_console_types))
|
|
3443 possible_console_types = Vconsole_type_list;
|
|
3444
|
|
3445 GCPRO2 (retlist, possible_console_types);
|
|
3446
|
|
3447 LIST_LOOP (rest, possible_console_types)
|
|
3448 {
|
|
3449 Lisp_Object contype = XCAR (rest);
|
|
3450 Lisp_Object newinst = call_with_suspended_errors
|
|
3451 ((lisp_fn_t) normalize_image_instantiator,
|
793
|
3452 Qnil, Qimage, ERROR_ME_DEBUG_WARN, 3, instantiator, contype,
|
428
|
3453 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
|
|
3454
|
|
3455 if (!NILP (newinst))
|
|
3456 {
|
|
3457 Lisp_Object newtag;
|
|
3458 if (NILP (memq_no_quit (contype, tag_set)))
|
|
3459 newtag = Fcons (contype, tag_set);
|
|
3460 else
|
|
3461 newtag = tag_set;
|
|
3462 retlist = Fcons (Fcons (newtag, newinst), retlist);
|
|
3463 }
|
|
3464 }
|
|
3465
|
|
3466 UNGCPRO;
|
|
3467
|
|
3468 return retlist;
|
|
3469 }
|
|
3470
|
434
|
3471 /* Copy an image instantiator. We can't use Fcopy_tree since widgets
|
|
3472 may contain circular references which would send Fcopy_tree into
|
|
3473 infloop death. */
|
|
3474 static Lisp_Object
|
|
3475 image_copy_vector_instantiator (Lisp_Object instantiator)
|
|
3476 {
|
|
3477 int i;
|
|
3478 struct image_instantiator_methods *meths;
|
|
3479 Lisp_Object *elt;
|
|
3480 int instantiator_len;
|
|
3481
|
|
3482 CHECK_VECTOR (instantiator);
|
|
3483
|
|
3484 instantiator = Fcopy_sequence (instantiator);
|
|
3485 elt = XVECTOR_DATA (instantiator);
|
|
3486 instantiator_len = XVECTOR_LENGTH (instantiator);
|
440
|
3487
|
434
|
3488 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
|
|
3489
|
|
3490 for (i = 1; i < instantiator_len; i += 2)
|
|
3491 {
|
|
3492 int j;
|
|
3493 Lisp_Object keyword = elt[i];
|
|
3494 Lisp_Object value = elt[i+1];
|
|
3495
|
|
3496 /* Find the keyword entry. */
|
|
3497 for (j = 0; j < Dynarr_length (meths->keywords); j++)
|
|
3498 {
|
|
3499 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
|
|
3500 break;
|
|
3501 }
|
|
3502
|
|
3503 /* Only copy keyword values that should be copied. */
|
|
3504 if (Dynarr_at (meths->keywords, j).copy_p
|
|
3505 &&
|
|
3506 (CONSP (value) || VECTORP (value)))
|
|
3507 {
|
|
3508 elt [i+1] = Fcopy_tree (value, Qt);
|
|
3509 }
|
|
3510 }
|
|
3511
|
|
3512 return instantiator;
|
|
3513 }
|
|
3514
|
|
3515 static Lisp_Object
|
|
3516 image_copy_instantiator (Lisp_Object arg)
|
|
3517 {
|
|
3518 if (CONSP (arg))
|
|
3519 {
|
|
3520 Lisp_Object rest;
|
|
3521 rest = arg = Fcopy_sequence (arg);
|
|
3522 while (CONSP (rest))
|
|
3523 {
|
|
3524 Lisp_Object elt = XCAR (rest);
|
|
3525 if (CONSP (elt))
|
|
3526 XCAR (rest) = Fcopy_tree (elt, Qt);
|
|
3527 else if (VECTORP (elt))
|
|
3528 XCAR (rest) = image_copy_vector_instantiator (elt);
|
|
3529 if (VECTORP (XCDR (rest))) /* hack for (a b . [c d]) */
|
|
3530 XCDR (rest) = Fcopy_tree (XCDR (rest), Qt);
|
|
3531 rest = XCDR (rest);
|
|
3532 }
|
|
3533 }
|
|
3534 else if (VECTORP (arg))
|
|
3535 {
|
|
3536 arg = image_copy_vector_instantiator (arg);
|
|
3537 }
|
|
3538 return arg;
|
|
3539 }
|
|
3540
|
428
|
3541 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
|
|
3542 Return non-nil if OBJECT is an image specifier.
|
442
|
3543 See `make-image-specifier' for a description of image instantiators.
|
428
|
3544 */
|
|
3545 (object))
|
|
3546 {
|
|
3547 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
|
|
3548 }
|
|
3549
|
|
3550
|
|
3551 /****************************************************************************
|
|
3552 * Glyph Object *
|
|
3553 ****************************************************************************/
|
|
3554
|
|
3555 static Lisp_Object
|
|
3556 mark_glyph (Lisp_Object obj)
|
|
3557 {
|
440
|
3558 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3559
|
|
3560 mark_object (glyph->image);
|
|
3561 mark_object (glyph->contrib_p);
|
|
3562 mark_object (glyph->baseline);
|
|
3563 mark_object (glyph->face);
|
|
3564
|
|
3565 return glyph->plist;
|
|
3566 }
|
|
3567
|
|
3568 static void
|
|
3569 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
3570 {
|
440
|
3571 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3572
|
|
3573 if (print_readably)
|
563
|
3574 printing_unreadable_object ("#<glyph 0x%x>", glyph->header.uid);
|
428
|
3575
|
800
|
3576 write_fmt_string_lisp (printcharfun, "#<glyph (%s", 1, Fglyph_type (obj));
|
|
3577 write_fmt_string_lisp (printcharfun, ") %S", 1, glyph->image);
|
|
3578 write_fmt_string (printcharfun, "0x%x>", glyph->header.uid);
|
428
|
3579 }
|
|
3580
|
|
3581 /* Glyphs are equal if all of their display attributes are equal. We
|
|
3582 don't compare names or doc-strings, because that would make equal
|
|
3583 be eq.
|
|
3584
|
|
3585 This isn't concerned with "unspecified" attributes, that's what
|
|
3586 #'glyph-differs-from-default-p is for. */
|
|
3587 static int
|
|
3588 glyph_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
|
|
3589 {
|
440
|
3590 Lisp_Glyph *g1 = XGLYPH (obj1);
|
|
3591 Lisp_Glyph *g2 = XGLYPH (obj2);
|
428
|
3592
|
|
3593 depth++;
|
|
3594
|
|
3595 return (internal_equal (g1->image, g2->image, depth) &&
|
|
3596 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
|
|
3597 internal_equal (g1->baseline, g2->baseline, depth) &&
|
|
3598 internal_equal (g1->face, g2->face, depth) &&
|
|
3599 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
|
|
3600 }
|
|
3601
|
665
|
3602 static Hashcode
|
428
|
3603 glyph_hash (Lisp_Object obj, int depth)
|
|
3604 {
|
|
3605 depth++;
|
|
3606
|
|
3607 /* No need to hash all of the elements; that would take too long.
|
|
3608 Just hash the most common ones. */
|
|
3609 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
|
|
3610 internal_hash (XGLYPH (obj)->face, depth));
|
|
3611 }
|
|
3612
|
|
3613 static Lisp_Object
|
|
3614 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
|
|
3615 {
|
440
|
3616 Lisp_Glyph *g = XGLYPH (obj);
|
428
|
3617
|
|
3618 if (EQ (prop, Qimage)) return g->image;
|
|
3619 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
|
|
3620 if (EQ (prop, Qbaseline)) return g->baseline;
|
|
3621 if (EQ (prop, Qface)) return g->face;
|
|
3622
|
|
3623 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
|
|
3624 }
|
|
3625
|
|
3626 static int
|
|
3627 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
|
|
3628 {
|
|
3629 if (EQ (prop, Qimage) ||
|
|
3630 EQ (prop, Qcontrib_p) ||
|
|
3631 EQ (prop, Qbaseline))
|
|
3632 return 0;
|
|
3633
|
|
3634 if (EQ (prop, Qface))
|
|
3635 {
|
|
3636 XGLYPH (obj)->face = Fget_face (value);
|
|
3637 return 1;
|
|
3638 }
|
|
3639
|
|
3640 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
|
|
3641 return 1;
|
|
3642 }
|
|
3643
|
|
3644 static int
|
|
3645 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
|
|
3646 {
|
|
3647 if (EQ (prop, Qimage) ||
|
|
3648 EQ (prop, Qcontrib_p) ||
|
|
3649 EQ (prop, Qbaseline))
|
|
3650 return -1;
|
|
3651
|
|
3652 if (EQ (prop, Qface))
|
|
3653 {
|
|
3654 XGLYPH (obj)->face = Qnil;
|
|
3655 return 1;
|
|
3656 }
|
|
3657
|
|
3658 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
|
|
3659 }
|
|
3660
|
|
3661 static Lisp_Object
|
|
3662 glyph_plist (Lisp_Object obj)
|
|
3663 {
|
440
|
3664 Lisp_Glyph *glyph = XGLYPH (obj);
|
428
|
3665 Lisp_Object result = glyph->plist;
|
|
3666
|
|
3667 result = cons3 (Qface, glyph->face, result);
|
|
3668 result = cons3 (Qbaseline, glyph->baseline, result);
|
|
3669 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
|
|
3670 result = cons3 (Qimage, glyph->image, result);
|
|
3671
|
|
3672 return result;
|
|
3673 }
|
|
3674
|
|
3675 static const struct lrecord_description glyph_description[] = {
|
440
|
3676 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, image) },
|
|
3677 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, contrib_p) },
|
|
3678 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, baseline) },
|
|
3679 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, face) },
|
|
3680 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, plist) },
|
428
|
3681 { XD_END }
|
|
3682 };
|
|
3683
|
|
3684 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
|
|
3685 mark_glyph, print_glyph, 0,
|
|
3686 glyph_equal, glyph_hash, glyph_description,
|
|
3687 glyph_getprop, glyph_putprop,
|
|
3688 glyph_remprop, glyph_plist,
|
440
|
3689 Lisp_Glyph);
|
428
|
3690
|
|
3691 Lisp_Object
|
|
3692 allocate_glyph (enum glyph_type type,
|
|
3693 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
|
|
3694 Lisp_Object locale))
|
|
3695 {
|
|
3696 /* This function can GC */
|
|
3697 Lisp_Object obj = Qnil;
|
440
|
3698 Lisp_Glyph *g = alloc_lcrecord_type (Lisp_Glyph, &lrecord_glyph);
|
428
|
3699
|
|
3700 g->type = type;
|
|
3701 g->image = Fmake_specifier (Qimage); /* This function can GC */
|
|
3702 g->dirty = 0;
|
|
3703 switch (g->type)
|
|
3704 {
|
|
3705 case GLYPH_BUFFER:
|
|
3706 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
440
|
3707 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK
|
|
3708 | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
442
|
3709 | IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK;
|
428
|
3710 break;
|
|
3711 case GLYPH_POINTER:
|
|
3712 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
|
3713 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
|
|
3714 break;
|
|
3715 case GLYPH_ICON:
|
|
3716 XIMAGE_SPECIFIER_ALLOWED (g->image) =
|
438
|
3717 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK
|
|
3718 | IMAGE_COLOR_PIXMAP_MASK;
|
428
|
3719 break;
|
|
3720 default:
|
|
3721 abort ();
|
|
3722 }
|
|
3723
|
|
3724 /* I think Fmake_specifier can GC. I think set_specifier_fallback can GC. */
|
|
3725 /* We're getting enough reports of odd behavior in this area it seems */
|
|
3726 /* best to GCPRO everything. */
|
|
3727 {
|
|
3728 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
|
|
3729 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
|
|
3730 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
|
|
3731 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3732
|
|
3733 GCPRO4 (obj, tem1, tem2, tem3);
|
|
3734
|
|
3735 set_specifier_fallback (g->image, tem1);
|
|
3736 g->contrib_p = Fmake_specifier (Qboolean);
|
|
3737 set_specifier_fallback (g->contrib_p, tem2);
|
|
3738 /* #### should have a specifier for the following */
|
|
3739 g->baseline = Fmake_specifier (Qgeneric);
|
|
3740 set_specifier_fallback (g->baseline, tem3);
|
|
3741 g->face = Qnil;
|
|
3742 g->plist = Qnil;
|
|
3743 g->after_change = after_change;
|
793
|
3744 obj = wrap_glyph (g);
|
428
|
3745
|
|
3746 set_image_attached_to (g->image, obj, Qimage);
|
|
3747 UNGCPRO;
|
|
3748 }
|
|
3749
|
|
3750 return obj;
|
|
3751 }
|
|
3752
|
|
3753 static enum glyph_type
|
578
|
3754 decode_glyph_type (Lisp_Object type, Error_Behavior errb)
|
428
|
3755 {
|
|
3756 if (NILP (type))
|
|
3757 return GLYPH_BUFFER;
|
|
3758
|
|
3759 if (ERRB_EQ (errb, ERROR_ME))
|
|
3760 CHECK_SYMBOL (type);
|
|
3761
|
|
3762 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
|
|
3763 if (EQ (type, Qpointer)) return GLYPH_POINTER;
|
|
3764 if (EQ (type, Qicon)) return GLYPH_ICON;
|
|
3765
|
563
|
3766 maybe_invalid_constant ("Invalid glyph type", type, Qimage, errb);
|
428
|
3767
|
|
3768 return GLYPH_UNKNOWN;
|
|
3769 }
|
|
3770
|
|
3771 static int
|
|
3772 valid_glyph_type_p (Lisp_Object type)
|
|
3773 {
|
|
3774 return !NILP (memq_no_quit (type, Vglyph_type_list));
|
|
3775 }
|
|
3776
|
|
3777 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
|
|
3778 Given a GLYPH-TYPE, return non-nil if it is valid.
|
|
3779 Valid types are `buffer', `pointer', and `icon'.
|
|
3780 */
|
|
3781 (glyph_type))
|
|
3782 {
|
|
3783 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
|
|
3784 }
|
|
3785
|
|
3786 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
|
|
3787 Return a list of valid glyph types.
|
|
3788 */
|
|
3789 ())
|
|
3790 {
|
|
3791 return Fcopy_sequence (Vglyph_type_list);
|
|
3792 }
|
|
3793
|
|
3794 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
|
442
|
3795 Create and return a new uninitialized glyph of type TYPE.
|
428
|
3796
|
|
3797 TYPE specifies the type of the glyph; this should be one of `buffer',
|
|
3798 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
|
|
3799 specifies in which contexts the glyph can be used, and controls the
|
|
3800 allowable image types into which the glyph's image can be
|
|
3801 instantiated.
|
|
3802
|
|
3803 `buffer' glyphs can be used as the begin-glyph or end-glyph of an
|
|
3804 extent, in the modeline, and in the toolbar. Their image can be
|
|
3805 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
|
|
3806 and `subwindow'.
|
|
3807
|
|
3808 `pointer' glyphs can be used to specify the mouse pointer. Their
|
|
3809 image can be instantiated as `pointer'.
|
|
3810
|
|
3811 `icon' glyphs can be used to specify the icon used when a frame is
|
|
3812 iconified. Their image can be instantiated as `mono-pixmap' and
|
|
3813 `color-pixmap'.
|
|
3814 */
|
|
3815 (type))
|
|
3816 {
|
|
3817 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
|
|
3818 return allocate_glyph (typeval, 0);
|
|
3819 }
|
|
3820
|
|
3821 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
|
|
3822 Return non-nil if OBJECT is a glyph.
|
|
3823
|
442
|
3824 A glyph is an object used for pixmaps, widgets and the like. It is used
|
428
|
3825 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
|
|
3826 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
|
442
|
3827 buttons, and the like. Much more detailed information can be found at
|
|
3828 `make-glyph'. Its image is described using an image specifier --
|
|
3829 see `make-image-specifier'. See also `make-image-instance' for further
|
|
3830 information.
|
428
|
3831 */
|
|
3832 (object))
|
|
3833 {
|
|
3834 return GLYPHP (object) ? Qt : Qnil;
|
|
3835 }
|
|
3836
|
|
3837 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
|
|
3838 Return the type of the given glyph.
|
|
3839 The return value will be one of 'buffer, 'pointer, or 'icon.
|
|
3840 */
|
|
3841 (glyph))
|
|
3842 {
|
|
3843 CHECK_GLYPH (glyph);
|
|
3844 switch (XGLYPH_TYPE (glyph))
|
|
3845 {
|
|
3846 default: abort ();
|
|
3847 case GLYPH_BUFFER: return Qbuffer;
|
|
3848 case GLYPH_POINTER: return Qpointer;
|
|
3849 case GLYPH_ICON: return Qicon;
|
|
3850 }
|
|
3851 }
|
|
3852
|
438
|
3853 Lisp_Object
|
|
3854 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
|
578
|
3855 Error_Behavior errb, int no_quit)
|
438
|
3856 {
|
|
3857 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
|
|
3858
|
|
3859 /* This can never return Qunbound. All glyphs have 'nothing as
|
|
3860 a fallback. */
|
440
|
3861 Lisp_Object image_instance = specifier_instance (specifier, Qunbound,
|
438
|
3862 domain, errb, no_quit, 0,
|
|
3863 Qzero);
|
440
|
3864 assert (!UNBOUNDP (image_instance));
|
442
|
3865 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
|
438
|
3866
|
|
3867 return image_instance;
|
|
3868 }
|
|
3869
|
|
3870 static Lisp_Object
|
|
3871 glyph_image_instance_maybe (Lisp_Object glyph_or_image, Lisp_Object window)
|
|
3872 {
|
|
3873 Lisp_Object instance = glyph_or_image;
|
|
3874
|
|
3875 if (GLYPHP (glyph_or_image))
|
793
|
3876 instance = glyph_image_instance (glyph_or_image, window,
|
|
3877 ERROR_ME_DEBUG_WARN, 1);
|
438
|
3878
|
|
3879 return instance;
|
|
3880 }
|
|
3881
|
428
|
3882 /*****************************************************************************
|
|
3883 glyph_width
|
|
3884
|
438
|
3885 Return the width of the given GLYPH on the given WINDOW.
|
|
3886 Calculations are done based on recursively querying the geometry of
|
|
3887 the associated image instances.
|
428
|
3888 ****************************************************************************/
|
|
3889 unsigned short
|
438
|
3890 glyph_width (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3891 {
|
438
|
3892 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3893 domain);
|
428
|
3894 if (!IMAGE_INSTANCEP (instance))
|
|
3895 return 0;
|
|
3896
|
442
|
3897 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3898 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3899 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3900 IMAGE_UNCHANGED_GEOMETRY,
|
|
3901 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3902
|
|
3903 return XIMAGE_INSTANCE_WIDTH (instance);
|
428
|
3904 }
|
|
3905
|
|
3906 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
|
|
3907 Return the width of GLYPH on WINDOW.
|
|
3908 This may not be exact as it does not take into account all of the context
|
|
3909 that redisplay will.
|
|
3910 */
|
|
3911 (glyph, window))
|
|
3912 {
|
793
|
3913 window = wrap_window (decode_window (window));
|
428
|
3914 CHECK_GLYPH (glyph);
|
|
3915
|
438
|
3916 return make_int (glyph_width (glyph, window));
|
428
|
3917 }
|
|
3918
|
|
3919 unsigned short
|
438
|
3920 glyph_ascent (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3921 {
|
438
|
3922 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3923 domain);
|
|
3924 if (!IMAGE_INSTANCEP (instance))
|
|
3925 return 0;
|
|
3926
|
442
|
3927 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3928 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3929 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3930 IMAGE_UNCHANGED_GEOMETRY,
|
|
3931 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3932
|
|
3933 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
|
|
3934 return XIMAGE_INSTANCE_TEXT_ASCENT (instance);
|
|
3935 else
|
|
3936 return XIMAGE_INSTANCE_HEIGHT (instance);
|
428
|
3937 }
|
|
3938
|
|
3939 unsigned short
|
438
|
3940 glyph_descent (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3941 {
|
438
|
3942 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3943 domain);
|
|
3944 if (!IMAGE_INSTANCEP (instance))
|
|
3945 return 0;
|
|
3946
|
442
|
3947 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3948 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3949 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3950 IMAGE_UNCHANGED_GEOMETRY,
|
|
3951 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3952
|
|
3953 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
|
|
3954 return XIMAGE_INSTANCE_TEXT_DESCENT (instance);
|
|
3955 else
|
|
3956 return 0;
|
428
|
3957 }
|
|
3958
|
|
3959 /* strictly a convenience function. */
|
|
3960 unsigned short
|
438
|
3961 glyph_height (Lisp_Object glyph_or_image, Lisp_Object domain)
|
428
|
3962 {
|
438
|
3963 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
|
|
3964 domain);
|
440
|
3965
|
438
|
3966 if (!IMAGE_INSTANCEP (instance))
|
|
3967 return 0;
|
|
3968
|
442
|
3969 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
|
438
|
3970 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
|
442
|
3971 IMAGE_UNSPECIFIED_GEOMETRY,
|
|
3972 IMAGE_UNCHANGED_GEOMETRY,
|
|
3973 IMAGE_UNCHANGED_GEOMETRY, domain);
|
438
|
3974
|
|
3975 return XIMAGE_INSTANCE_HEIGHT (instance);
|
428
|
3976 }
|
|
3977
|
|
3978 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
|
|
3979 Return the ascent value of GLYPH on WINDOW.
|
|
3980 This may not be exact as it does not take into account all of the context
|
|
3981 that redisplay will.
|
|
3982 */
|
|
3983 (glyph, window))
|
|
3984 {
|
793
|
3985 window = wrap_window (decode_window (window));
|
428
|
3986 CHECK_GLYPH (glyph);
|
|
3987
|
438
|
3988 return make_int (glyph_ascent (glyph, window));
|
428
|
3989 }
|
|
3990
|
|
3991 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
|
|
3992 Return the descent value of GLYPH on WINDOW.
|
|
3993 This may not be exact as it does not take into account all of the context
|
|
3994 that redisplay will.
|
|
3995 */
|
|
3996 (glyph, window))
|
|
3997 {
|
793
|
3998 window = wrap_window (decode_window (window));
|
428
|
3999 CHECK_GLYPH (glyph);
|
|
4000
|
438
|
4001 return make_int (glyph_descent (glyph, window));
|
428
|
4002 }
|
|
4003
|
|
4004 /* This is redundant but I bet a lot of people expect it to exist. */
|
|
4005 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
|
|
4006 Return the height of GLYPH on WINDOW.
|
|
4007 This may not be exact as it does not take into account all of the context
|
|
4008 that redisplay will.
|
|
4009 */
|
|
4010 (glyph, window))
|
|
4011 {
|
793
|
4012 window = wrap_window (decode_window (window));
|
428
|
4013 CHECK_GLYPH (glyph);
|
|
4014
|
438
|
4015 return make_int (glyph_height (glyph, window));
|
428
|
4016 }
|
|
4017
|
|
4018 static void
|
|
4019 set_glyph_dirty_p (Lisp_Object glyph_or_image, Lisp_Object window, int dirty)
|
|
4020 {
|
|
4021 Lisp_Object instance = glyph_or_image;
|
|
4022
|
|
4023 if (!NILP (glyph_or_image))
|
|
4024 {
|
|
4025 if (GLYPHP (glyph_or_image))
|
|
4026 {
|
|
4027 instance = glyph_image_instance (glyph_or_image, window,
|
793
|
4028 ERROR_ME_DEBUG_WARN, 1);
|
428
|
4029 XGLYPH_DIRTYP (glyph_or_image) = dirty;
|
|
4030 }
|
|
4031
|
442
|
4032 if (!IMAGE_INSTANCEP (instance))
|
|
4033 return;
|
|
4034
|
428
|
4035 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
|
|
4036 }
|
|
4037 }
|
|
4038
|
442
|
4039 static void
|
|
4040 set_image_instance_dirty_p (Lisp_Object instance, int dirty)
|
|
4041 {
|
|
4042 if (IMAGE_INSTANCEP (instance))
|
|
4043 {
|
|
4044 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
|
|
4045 /* Now cascade up the hierarchy. */
|
|
4046 set_image_instance_dirty_p (XIMAGE_INSTANCE_PARENT (instance),
|
|
4047 dirty);
|
|
4048 }
|
|
4049 else if (GLYPHP (instance))
|
|
4050 {
|
|
4051 XGLYPH_DIRTYP (instance) = dirty;
|
|
4052 }
|
|
4053 }
|
|
4054
|
428
|
4055 /* #### do we need to cache this info to speed things up? */
|
|
4056
|
|
4057 Lisp_Object
|
|
4058 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
|
|
4059 {
|
|
4060 if (!GLYPHP (glyph))
|
|
4061 return Qnil;
|
|
4062 else
|
|
4063 {
|
|
4064 Lisp_Object retval =
|
|
4065 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
|
793
|
4066 /* #### look into error flag */
|
|
4067 Qunbound, domain, ERROR_ME_DEBUG_WARN,
|
428
|
4068 0, Qzero);
|
|
4069 if (!NILP (retval) && !INTP (retval))
|
|
4070 retval = Qnil;
|
|
4071 else if (INTP (retval))
|
|
4072 {
|
|
4073 if (XINT (retval) < 0)
|
|
4074 retval = Qzero;
|
|
4075 if (XINT (retval) > 100)
|
|
4076 retval = make_int (100);
|
|
4077 }
|
|
4078 return retval;
|
|
4079 }
|
|
4080 }
|
|
4081
|
|
4082 Lisp_Object
|
|
4083 glyph_face (Lisp_Object glyph, Lisp_Object domain)
|
|
4084 {
|
|
4085 /* #### Domain parameter not currently used but it will be */
|
|
4086 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
|
|
4087 }
|
|
4088
|
|
4089 int
|
|
4090 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
|
|
4091 {
|
|
4092 if (!GLYPHP (glyph))
|
|
4093 return 0;
|
|
4094 else
|
|
4095 return !NILP (specifier_instance_no_quit
|
|
4096 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
|
793
|
4097 /* #### look into error flag */
|
|
4098 ERROR_ME_DEBUG_WARN, 0, Qzero));
|
428
|
4099 }
|
|
4100
|
|
4101 static void
|
|
4102 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
|
|
4103 Lisp_Object locale)
|
|
4104 {
|
|
4105 if (XGLYPH (glyph)->after_change)
|
|
4106 (XGLYPH (glyph)->after_change) (glyph, property, locale);
|
|
4107 }
|
|
4108
|
442
|
4109 void
|
|
4110 glyph_query_geometry (Lisp_Object glyph_or_image, int* width, int* height,
|
438
|
4111 enum image_instance_geometry disp, Lisp_Object domain)
|
|
4112 {
|
|
4113 Lisp_Object instance = glyph_or_image;
|
|
4114
|
|
4115 if (GLYPHP (glyph_or_image))
|
793
|
4116 instance = glyph_image_instance (glyph_or_image, domain,
|
|
4117 ERROR_ME_DEBUG_WARN, 1);
|
440
|
4118
|
438
|
4119 image_instance_query_geometry (instance, width, height, disp, domain);
|
|
4120 }
|
|
4121
|
442
|
4122 void
|
|
4123 glyph_do_layout (Lisp_Object glyph_or_image, int width, int height,
|
|
4124 int xoffset, int yoffset, Lisp_Object domain)
|
438
|
4125 {
|
|
4126 Lisp_Object instance = glyph_or_image;
|
|
4127
|
|
4128 if (GLYPHP (glyph_or_image))
|
793
|
4129 instance = glyph_image_instance (glyph_or_image, domain,
|
|
4130 ERROR_ME_DEBUG_WARN, 1);
|
442
|
4131
|
|
4132 image_instance_layout (instance, width, height, xoffset, yoffset, domain);
|
|
4133 }
|
438
|
4134
|
428
|
4135
|
|
4136 /*****************************************************************************
|
|
4137 * glyph cachel functions *
|
|
4138 *****************************************************************************/
|
|
4139
|
442
|
4140 /* #### All of this is 95% copied from face cachels. Consider
|
|
4141 consolidating.
|
|
4142
|
|
4143 Why do we need glyph_cachels? Simply because a glyph_cachel captures
|
|
4144 per-window information about a particular glyph. A glyph itself is
|
|
4145 not created in any particular context, so if we were to rely on a
|
|
4146 glyph to tell us about its dirtiness we would not be able to reset
|
|
4147 the dirty flag after redisplaying it as it may exist in other
|
|
4148 contexts. When we have redisplayed we need to know which glyphs to
|
|
4149 reset the dirty flags on - the glyph_cachels give us a nice list we
|
|
4150 can iterate through doing this. */
|
428
|
4151 void
|
|
4152 mark_glyph_cachels (glyph_cachel_dynarr *elements)
|
|
4153 {
|
|
4154 int elt;
|
|
4155
|
|
4156 if (!elements)
|
|
4157 return;
|
|
4158
|
|
4159 for (elt = 0; elt < Dynarr_length (elements); elt++)
|
|
4160 {
|
|
4161 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
|
|
4162 mark_object (cachel->glyph);
|
|
4163 }
|
|
4164 }
|
|
4165
|
|
4166 static void
|
|
4167 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
|
|
4168 struct glyph_cachel *cachel)
|
|
4169 {
|
|
4170 if (!cachel->updated || NILP (cachel->glyph) || !EQ (cachel->glyph, glyph)
|
440
|
4171 || XGLYPH_DIRTYP (cachel->glyph)
|
|
4172 || XFRAME(WINDOW_FRAME(w))->faces_changed)
|
428
|
4173 {
|
|
4174 Lisp_Object window, instance;
|
|
4175
|
793
|
4176 window = wrap_window (w);
|
428
|
4177
|
|
4178 cachel->glyph = glyph;
|
440
|
4179 /* Speed things up slightly by grabbing the glyph instantiation
|
|
4180 and passing it to the size functions. */
|
793
|
4181 instance = glyph_image_instance (glyph, window, ERROR_ME_DEBUG_WARN, 1);
|
440
|
4182
|
442
|
4183 if (!IMAGE_INSTANCEP (instance))
|
|
4184 return;
|
|
4185
|
440
|
4186 /* Mark text instance of the glyph dirty if faces have changed,
|
|
4187 because its geometry might have changed. */
|
|
4188 invalidate_glyph_geometry_maybe (instance, w);
|
|
4189
|
|
4190 /* #### Do the following 2 lines buy us anything? --kkm */
|
|
4191 XGLYPH_DIRTYP (glyph) = XIMAGE_INSTANCE_DIRTYP (instance);
|
|
4192 cachel->dirty = XGLYPH_DIRTYP (glyph);
|
438
|
4193 cachel->width = glyph_width (instance, window);
|
|
4194 cachel->ascent = glyph_ascent (instance, window);
|
|
4195 cachel->descent = glyph_descent (instance, window);
|
428
|
4196 }
|
|
4197
|
|
4198 cachel->updated = 1;
|
|
4199 }
|
|
4200
|
|
4201 static void
|
|
4202 add_glyph_cachel (struct window *w, Lisp_Object glyph)
|
|
4203 {
|
|
4204 struct glyph_cachel new_cachel;
|
|
4205
|
|
4206 xzero (new_cachel);
|
|
4207 new_cachel.glyph = Qnil;
|
|
4208
|
|
4209 update_glyph_cachel_data (w, glyph, &new_cachel);
|
|
4210 Dynarr_add (w->glyph_cachels, new_cachel);
|
|
4211 }
|
|
4212
|
|
4213 glyph_index
|
|
4214 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
|
|
4215 {
|
|
4216 int elt;
|
|
4217
|
|
4218 if (noninteractive)
|
|
4219 return 0;
|
|
4220
|
|
4221 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4222 {
|
|
4223 struct glyph_cachel *cachel =
|
|
4224 Dynarr_atp (w->glyph_cachels, elt);
|
|
4225
|
|
4226 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
|
|
4227 {
|
|
4228 update_glyph_cachel_data (w, glyph, cachel);
|
|
4229 return elt;
|
|
4230 }
|
|
4231 }
|
|
4232
|
|
4233 /* If we didn't find the glyph, add it and then return its index. */
|
|
4234 add_glyph_cachel (w, glyph);
|
|
4235 return elt;
|
|
4236 }
|
|
4237
|
|
4238 void
|
|
4239 reset_glyph_cachels (struct window *w)
|
|
4240 {
|
|
4241 Dynarr_reset (w->glyph_cachels);
|
|
4242 get_glyph_cachel_index (w, Vcontinuation_glyph);
|
|
4243 get_glyph_cachel_index (w, Vtruncation_glyph);
|
|
4244 get_glyph_cachel_index (w, Vhscroll_glyph);
|
|
4245 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
|
|
4246 get_glyph_cachel_index (w, Voctal_escape_glyph);
|
|
4247 get_glyph_cachel_index (w, Vinvisible_text_glyph);
|
|
4248 }
|
|
4249
|
|
4250 void
|
|
4251 mark_glyph_cachels_as_not_updated (struct window *w)
|
|
4252 {
|
|
4253 int elt;
|
|
4254
|
|
4255 /* We need to have a dirty flag to tell if the glyph has changed.
|
|
4256 We can check to see if each glyph variable is actually a
|
|
4257 completely different glyph, though. */
|
|
4258 #define FROB(glyph_obj, gindex) \
|
|
4259 update_glyph_cachel_data (w, glyph_obj, \
|
|
4260 Dynarr_atp (w->glyph_cachels, gindex))
|
|
4261
|
|
4262 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
|
|
4263 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
|
|
4264 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
|
|
4265 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
|
|
4266 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
|
|
4267 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
|
|
4268 #undef FROB
|
|
4269
|
|
4270 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4271 {
|
|
4272 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
|
|
4273 }
|
|
4274 }
|
|
4275
|
|
4276 /* Unset the dirty bit on all the glyph cachels that have it. */
|
440
|
4277 void
|
428
|
4278 mark_glyph_cachels_as_clean (struct window* w)
|
|
4279 {
|
|
4280 int elt;
|
793
|
4281 Lisp_Object window = wrap_window (w);
|
|
4282
|
428
|
4283 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
|
|
4284 {
|
|
4285 struct glyph_cachel *cachel = Dynarr_atp (w->glyph_cachels, elt);
|
|
4286 cachel->dirty = 0;
|
|
4287 set_glyph_dirty_p (cachel->glyph, window, 0);
|
|
4288 }
|
|
4289 }
|
|
4290
|
|
4291 #ifdef MEMORY_USAGE_STATS
|
|
4292
|
|
4293 int
|
|
4294 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
|
|
4295 struct overhead_stats *ovstats)
|
|
4296 {
|
|
4297 int total = 0;
|
|
4298
|
|
4299 if (glyph_cachels)
|
|
4300 total += Dynarr_memory_usage (glyph_cachels, ovstats);
|
|
4301
|
|
4302 return total;
|
|
4303 }
|
|
4304
|
|
4305 #endif /* MEMORY_USAGE_STATS */
|
|
4306
|
|
4307
|
|
4308
|
|
4309 /*****************************************************************************
|
793
|
4310 * subwindow cachel functions *
|
428
|
4311 *****************************************************************************/
|
438
|
4312 /* Subwindows are curious in that you have to physically unmap them to
|
428
|
4313 not display them. It is problematic deciding what to do in
|
|
4314 redisplay. We have two caches - a per-window instance cache that
|
|
4315 keeps track of subwindows on a window, these are linked to their
|
|
4316 instantiator in the hashtable and when the instantiator goes away
|
|
4317 we want the instance to go away also. However we also have a
|
|
4318 per-frame instance cache that we use to determine if a subwindow is
|
|
4319 obscuring an area that we want to clear. We need to be able to flip
|
|
4320 through this quickly so a hashtable is not suitable hence the
|
442
|
4321 subwindow_cachels. This is a weak list so unreference instances
|
|
4322 will get deleted properly. */
|
428
|
4323
|
|
4324 /* redisplay in general assumes that drawing something will erase
|
|
4325 what was there before. unfortunately this does not apply to
|
|
4326 subwindows that need to be specifically unmapped in order to
|
|
4327 disappear. we take a brute force approach - on the basis that its
|
|
4328 cheap - and unmap all subwindows in a display line */
|
442
|
4329
|
|
4330 /* Put new instances in the frame subwindow cache. This is less costly than
|
|
4331 doing it every time something gets mapped, and deleted instances will be
|
|
4332 removed automatically. */
|
|
4333 static void
|
|
4334 cache_subwindow_instance_in_frame_maybe (Lisp_Object instance)
|
|
4335 {
|
|
4336 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (instance);
|
|
4337 if (!NILP (DOMAIN_FRAME (IMAGE_INSTANCE_DOMAIN (ii))))
|
428
|
4338 {
|
442
|
4339 struct frame* f = DOMAIN_XFRAME (IMAGE_INSTANCE_DOMAIN (ii));
|
|
4340 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
|
|
4341 = Fcons (instance, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
|
|
4342 }
|
|
4343 }
|
|
4344
|
|
4345 /* Unmap and finalize all subwindow instances in the frame cache. This
|
|
4346 is necessary because GC will not guarantee the order things get
|
|
4347 deleted in and moreover, frame finalization deletes the window
|
|
4348 system windows before deleting XEmacs windows, and hence
|
|
4349 subwindows. */
|
|
4350 int
|
|
4351 unmap_subwindow_instance_cache_mapper (Lisp_Object key, Lisp_Object value,
|
|
4352 void* finalize)
|
|
4353 {
|
|
4354 /* value can be nil; we cache failures as well as successes */
|
|
4355 if (!NILP (value))
|
|
4356 {
|
|
4357 struct frame* f = XFRAME (XIMAGE_INSTANCE_FRAME (value));
|
|
4358 unmap_subwindow (value);
|
|
4359 if (finalize)
|
428
|
4360 {
|
442
|
4361 /* In case GC doesn't catch up fast enough, remove from the frame
|
|
4362 cache also. Otherwise code that checks the sanity of the instance
|
|
4363 will fail. */
|
|
4364 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
|
|
4365 = delq_no_quit (value,
|
|
4366 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
|
|
4367 finalize_image_instance (XIMAGE_INSTANCE (value), 0);
|
428
|
4368 }
|
|
4369 }
|
442
|
4370 return 0;
|
|
4371 }
|
|
4372
|
|
4373 static void
|
|
4374 finalize_all_subwindow_instances (struct window *w)
|
|
4375 {
|
|
4376 if (!NILP (w->next)) finalize_all_subwindow_instances (XWINDOW (w->next));
|
|
4377 if (!NILP (w->vchild)) finalize_all_subwindow_instances (XWINDOW (w->vchild));
|
|
4378 if (!NILP (w->hchild)) finalize_all_subwindow_instances (XWINDOW (w->hchild));
|
|
4379
|
|
4380 elisp_maphash (unmap_subwindow_instance_cache_mapper,
|
|
4381 w->subwindow_instance_cache, (void*)1);
|
428
|
4382 }
|
|
4383
|
|
4384 void
|
442
|
4385 free_frame_subwindow_instances (struct frame* f)
|
|
4386 {
|
|
4387 /* Make sure all instances are finalized. We have to do this via the
|
|
4388 instance cache since some instances may be extant but not
|
|
4389 displayed (and hence not in the frame cache). */
|
|
4390 finalize_all_subwindow_instances (XWINDOW (f->root_window));
|
|
4391 }
|
|
4392
|
|
4393 /* Unmap all instances in the frame cache. */
|
|
4394 void
|
|
4395 reset_frame_subwindow_instance_cache (struct frame* f)
|
|
4396 {
|
|
4397 Lisp_Object rest;
|
|
4398
|
|
4399 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
|
4400 {
|
|
4401 Lisp_Object value = XCAR (rest);
|
|
4402 unmap_subwindow (value);
|
|
4403 }
|
|
4404 }
|
428
|
4405
|
|
4406 /*****************************************************************************
|
|
4407 * subwindow exposure ignorance *
|
|
4408 *****************************************************************************/
|
|
4409 /* when we unmap subwindows the associated window system will generate
|
|
4410 expose events. This we do not want as redisplay already copes with
|
|
4411 the repainting necessary. Worse, we can get in an endless cycle of
|
|
4412 redisplay if we are not careful. Thus we keep a per-frame list of
|
|
4413 expose events that are going to come and ignore them as
|
|
4414 required. */
|
|
4415
|
|
4416 struct expose_ignore_blocktype
|
|
4417 {
|
|
4418 Blocktype_declare (struct expose_ignore);
|
|
4419 } *the_expose_ignore_blocktype;
|
|
4420
|
|
4421 int
|
647
|
4422 check_for_ignored_expose (struct frame* f, int x, int y, int width, int height)
|
428
|
4423 {
|
|
4424 struct expose_ignore *ei, *prev;
|
|
4425 /* the ignore list is FIFO so we should generally get a match with
|
|
4426 the first element in the list */
|
|
4427 for (ei = f->subwindow_exposures, prev = 0; ei; ei = ei->next)
|
|
4428 {
|
|
4429 /* Checking for exact matches just isn't good enough as we
|
442
|
4430 might get exposures for partially obscured subwindows, thus
|
|
4431 we have to check for overlaps. Being conservative, we will
|
|
4432 check for exposures wholly contained by the subwindow - this
|
428
|
4433 might give us what we want.*/
|
440
|
4434 if (ei->x <= x && ei->y <= y
|
428
|
4435 && ei->x + ei->width >= x + width
|
|
4436 && ei->y + ei->height >= y + height)
|
|
4437 {
|
|
4438 #ifdef DEBUG_WIDGETS
|
|
4439 stderr_out ("ignored %d+%d, %dx%d for exposure %d+%d, %dx%d\n",
|
|
4440 x, y, width, height, ei->x, ei->y, ei->width, ei->height);
|
|
4441 #endif
|
|
4442 if (!prev)
|
|
4443 f->subwindow_exposures = ei->next;
|
|
4444 else
|
|
4445 prev->next = ei->next;
|
440
|
4446
|
428
|
4447 if (ei == f->subwindow_exposures_tail)
|
|
4448 f->subwindow_exposures_tail = prev;
|
|
4449
|
|
4450 Blocktype_free (the_expose_ignore_blocktype, ei);
|
|
4451 return 1;
|
|
4452 }
|
|
4453 prev = ei;
|
|
4454 }
|
|
4455 return 0;
|
|
4456 }
|
|
4457
|
|
4458 static void
|
|
4459 register_ignored_expose (struct frame* f, int x, int y, int width, int height)
|
|
4460 {
|
|
4461 if (!hold_ignored_expose_registration)
|
|
4462 {
|
|
4463 struct expose_ignore *ei;
|
440
|
4464
|
428
|
4465 ei = Blocktype_alloc (the_expose_ignore_blocktype);
|
440
|
4466
|
428
|
4467 ei->next = NULL;
|
|
4468 ei->x = x;
|
|
4469 ei->y = y;
|
|
4470 ei->width = width;
|
|
4471 ei->height = height;
|
440
|
4472
|
428
|
4473 /* we have to add the exposure to the end of the list, since we
|
|
4474 want to check the oldest events first. for speed we keep a record
|
|
4475 of the end so that we can add right to it. */
|
|
4476 if (f->subwindow_exposures_tail)
|
|
4477 {
|
|
4478 f->subwindow_exposures_tail->next = ei;
|
|
4479 }
|
|
4480 if (!f->subwindow_exposures)
|
|
4481 {
|
|
4482 f->subwindow_exposures = ei;
|
|
4483 }
|
|
4484 f->subwindow_exposures_tail = ei;
|
|
4485 }
|
|
4486 }
|
|
4487
|
|
4488 /****************************************************************************
|
|
4489 find_matching_subwindow
|
|
4490
|
|
4491 See if there is a subwindow that completely encloses the requested
|
|
4492 area.
|
|
4493 ****************************************************************************/
|
647
|
4494 int
|
|
4495 find_matching_subwindow (struct frame* f, int x, int y, int width, int height)
|
428
|
4496 {
|
442
|
4497 Lisp_Object rest;
|
|
4498
|
|
4499 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
428
|
4500 {
|
442
|
4501 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (XCAR (rest));
|
|
4502
|
|
4503 if (IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii)
|
|
4504 &&
|
|
4505 IMAGE_INSTANCE_DISPLAY_X (ii) <= x
|
428
|
4506 &&
|
442
|
4507 IMAGE_INSTANCE_DISPLAY_Y (ii) <= y
|
440
|
4508 &&
|
442
|
4509 IMAGE_INSTANCE_DISPLAY_X (ii)
|
|
4510 + IMAGE_INSTANCE_DISPLAY_WIDTH (ii) >= x + width
|
428
|
4511 &&
|
442
|
4512 IMAGE_INSTANCE_DISPLAY_Y (ii)
|
|
4513 + IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) >= y + height)
|
428
|
4514 {
|
|
4515 return 1;
|
|
4516 }
|
|
4517 }
|
|
4518 return 0;
|
|
4519 }
|
|
4520
|
|
4521
|
|
4522 /*****************************************************************************
|
|
4523 * subwindow functions *
|
|
4524 *****************************************************************************/
|
|
4525
|
442
|
4526 /* Update the displayed characteristics of a subwindow. This function
|
|
4527 should generally only get called if the subwindow is actually
|
|
4528 dirty. */
|
|
4529 void
|
|
4530 redisplay_subwindow (Lisp_Object subwindow)
|
428
|
4531 {
|
440
|
4532 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
442
|
4533 int count = specpdl_depth ();
|
|
4534
|
|
4535 /* The update method is allowed to call eval. Since it is quite
|
|
4536 common for this function to get called from somewhere in
|
|
4537 redisplay we need to make sure that quits are ignored. Otherwise
|
|
4538 Fsignal will abort. */
|
|
4539 specbind (Qinhibit_quit, Qt);
|
|
4540
|
|
4541 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4542
|
|
4543 if (WIDGET_IMAGE_INSTANCEP (subwindow))
|
|
4544 {
|
|
4545 if (image_instance_changed (subwindow))
|
|
4546 redisplay_widget (subwindow);
|
|
4547 /* Reset the changed flags. */
|
|
4548 IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii) = 0;
|
|
4549 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
|
|
4550 IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii) = 0;
|
|
4551 IMAGE_INSTANCE_TEXT_CHANGED (ii) = 0;
|
|
4552 }
|
|
4553 else if (IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW
|
|
4554 &&
|
|
4555 !NILP (IMAGE_INSTANCE_FRAME (ii)))
|
|
4556 {
|
|
4557 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
|
|
4558 redisplay_subwindow, (ii));
|
|
4559 }
|
|
4560
|
|
4561 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 0;
|
|
4562 /* This function is typically called by redisplay just before
|
|
4563 outputting the information to the screen. Thus we record a hash
|
|
4564 of the output to determine whether on-screen is the same as
|
|
4565 recorded structure. This approach has limitations in there is a
|
|
4566 good chance that hash values will be different for the same
|
|
4567 visual appearance. However, we would rather that then the other
|
|
4568 way round - it simply means that we will get more displays than
|
|
4569 we might need. We can get better hashing by making the depth
|
|
4570 negative - currently it will recurse down 7 levels.*/
|
|
4571 IMAGE_INSTANCE_DISPLAY_HASH (ii) = internal_hash (subwindow,
|
|
4572 IMAGE_INSTANCE_HASH_DEPTH);
|
|
4573
|
771
|
4574 unbind_to (count);
|
442
|
4575 }
|
|
4576
|
|
4577 /* Determine whether an image_instance has changed structurally and
|
|
4578 hence needs redisplaying in some way.
|
|
4579
|
|
4580 #### This should just look at the instantiator differences when we
|
|
4581 get rid of the stored items altogether. In fact we should probably
|
|
4582 store the new instantiator as well as the old - as we do with
|
|
4583 gui_items currently - and then pick-up the new on the next
|
|
4584 redisplay. This would obviate the need for any of this trickery
|
|
4585 with hashcodes. */
|
|
4586 int
|
|
4587 image_instance_changed (Lisp_Object subwindow)
|
|
4588 {
|
|
4589 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
|
4590
|
|
4591 if (internal_hash (subwindow, IMAGE_INSTANCE_HASH_DEPTH) !=
|
|
4592 IMAGE_INSTANCE_DISPLAY_HASH (ii))
|
|
4593 return 1;
|
|
4594 /* #### I think there is probably a bug here. This gets called for
|
|
4595 layouts - and yet the pending items are always nil for
|
|
4596 layouts. We are saved by layout optimization, but I'm undecided
|
|
4597 as to what the correct fix is. */
|
|
4598 else if (WIDGET_IMAGE_INSTANCEP (subwindow)
|
853
|
4599 && (!internal_equal_trapping_problems
|
|
4600 (Qglyph, "bad subwindow instantiator",
|
|
4601 /* in this case we really don't want to be
|
|
4602 interrupted by QUIT because we care about
|
|
4603 the return value; and we know that any loops
|
|
4604 will ultimately cause errors to be issued.
|
|
4605 We specify a retval of 1 in that case so that
|
|
4606 the glyph code doesn't try to keep reoutputting
|
|
4607 a bad subwindow. */
|
|
4608 INHIBIT_QUIT, 0, 1, IMAGE_INSTANCE_WIDGET_ITEMS (ii),
|
|
4609 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii), 0)
|
442
|
4610 || !NILP (IMAGE_INSTANCE_LAYOUT_CHILDREN (ii))
|
|
4611 || IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii)))
|
|
4612 return 1;
|
|
4613 else
|
|
4614 return 0;
|
428
|
4615 }
|
|
4616
|
438
|
4617 /* Update all the subwindows on a frame. */
|
428
|
4618 void
|
442
|
4619 update_widget_instances (Lisp_Object frame)
|
|
4620 {
|
|
4621 struct frame* f;
|
|
4622 Lisp_Object rest;
|
|
4623
|
|
4624 /* Its possible for the preceding callback to have deleted the
|
|
4625 frame, so cope with this. */
|
|
4626 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
|
|
4627 return;
|
|
4628
|
|
4629 CHECK_FRAME (frame);
|
|
4630 f = XFRAME (frame);
|
|
4631
|
|
4632 /* If we get called we know something has changed. */
|
|
4633 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
|
|
4634 {
|
|
4635 Lisp_Object widget = XCAR (rest);
|
|
4636
|
|
4637 if (XIMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (widget)
|
|
4638 &&
|
|
4639 image_instance_changed (widget))
|
|
4640 {
|
|
4641 set_image_instance_dirty_p (widget, 1);
|
|
4642 MARK_FRAME_GLYPHS_CHANGED (f);
|
|
4643 }
|
|
4644 }
|
428
|
4645 }
|
|
4646
|
|
4647 /* remove a subwindow from its frame */
|
793
|
4648 void
|
|
4649 unmap_subwindow (Lisp_Object subwindow)
|
428
|
4650 {
|
440
|
4651 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4652 struct frame* f;
|
|
4653
|
442
|
4654 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4655
|
|
4656 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
|
|
4657 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK)
|
428
|
4658 ||
|
442
|
4659 !IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii))
|
428
|
4660 return;
|
442
|
4661
|
428
|
4662 #ifdef DEBUG_WIDGETS
|
442
|
4663 stderr_out ("unmapping subwindow %p\n", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
|
428
|
4664 #endif
|
442
|
4665 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
|
428
|
4666
|
|
4667 /* make sure we don't get expose events */
|
442
|
4668 register_ignored_expose (f, IMAGE_INSTANCE_DISPLAY_X (ii),
|
|
4669 IMAGE_INSTANCE_DISPLAY_Y (ii),
|
|
4670 IMAGE_INSTANCE_DISPLAY_WIDTH (ii),
|
|
4671 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii));
|
428
|
4672 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
|
|
4673
|
442
|
4674 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (ii)),
|
|
4675 unmap_subwindow, (ii));
|
428
|
4676 }
|
|
4677
|
|
4678 /* show a subwindow in its frame */
|
793
|
4679 void
|
|
4680 map_subwindow (Lisp_Object subwindow, int x, int y,
|
|
4681 struct display_glyph_area *dga)
|
428
|
4682 {
|
440
|
4683 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4684 struct frame* f;
|
|
4685
|
442
|
4686 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
|
|
4687
|
|
4688 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
|
|
4689 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK))
|
428
|
4690 return;
|
|
4691
|
|
4692 #ifdef DEBUG_WIDGETS
|
442
|
4693 stderr_out ("mapping subwindow %p, %dx%d@%d+%d\n",
|
428
|
4694 IMAGE_INSTANCE_SUBWINDOW_ID (ii),
|
|
4695 dga->width, dga->height, x, y);
|
|
4696 #endif
|
442
|
4697 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
|
|
4698 IMAGE_INSTANCE_DISPLAY_X (ii) = x;
|
|
4699 IMAGE_INSTANCE_DISPLAY_Y (ii) = y;
|
|
4700 IMAGE_INSTANCE_DISPLAY_WIDTH (ii) = dga->width;
|
|
4701 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) = dga->height;
|
|
4702
|
|
4703 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
|
|
4704 map_subwindow, (ii, x, y, dga));
|
428
|
4705 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 1;
|
|
4706 }
|
|
4707
|
|
4708 static int
|
|
4709 subwindow_possible_dest_types (void)
|
|
4710 {
|
|
4711 return IMAGE_SUBWINDOW_MASK;
|
|
4712 }
|
|
4713
|
442
|
4714 int
|
|
4715 subwindow_governing_domain (void)
|
|
4716 {
|
|
4717 return GOVERNING_DOMAIN_WINDOW;
|
|
4718 }
|
|
4719
|
428
|
4720 /* Partially instantiate a subwindow. */
|
|
4721 void
|
|
4722 subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
4723 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
4724 int dest_mask, Lisp_Object domain)
|
|
4725 {
|
440
|
4726 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
442
|
4727 Lisp_Object device = image_instance_device (image_instance);
|
|
4728 Lisp_Object frame = DOMAIN_FRAME (domain);
|
428
|
4729 Lisp_Object width = find_keyword_in_vector (instantiator, Q_pixel_width);
|
|
4730 Lisp_Object height = find_keyword_in_vector (instantiator, Q_pixel_height);
|
|
4731
|
|
4732 if (NILP (frame))
|
563
|
4733 invalid_state ("No selected frame", device);
|
440
|
4734
|
428
|
4735 if (!(dest_mask & IMAGE_SUBWINDOW_MASK))
|
|
4736 incompatible_image_types (instantiator, dest_mask, IMAGE_SUBWINDOW_MASK);
|
|
4737
|
|
4738 ii->data = 0;
|
|
4739 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = 0;
|
|
4740 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
|
442
|
4741
|
|
4742 if (INTP (width))
|
428
|
4743 {
|
|
4744 int w = 1;
|
|
4745 if (XINT (width) > 1)
|
|
4746 w = XINT (width);
|
442
|
4747 IMAGE_INSTANCE_WIDTH (ii) = w;
|
|
4748 IMAGE_INSTANCE_SUBWINDOW_H_RESIZEP (ii) = 0;
|
428
|
4749 }
|
442
|
4750
|
|
4751 if (INTP (height))
|
428
|
4752 {
|
|
4753 int h = 1;
|
|
4754 if (XINT (height) > 1)
|
|
4755 h = XINT (height);
|
442
|
4756 IMAGE_INSTANCE_HEIGHT (ii) = h;
|
|
4757 IMAGE_INSTANCE_SUBWINDOW_V_RESIZEP (ii) = 0;
|
428
|
4758 }
|
|
4759 }
|
|
4760
|
442
|
4761 /* This is just a backup in case no-one has assigned a suitable geometry.
|
|
4762 #### It should really query the enclose window for geometry. */
|
|
4763 static void
|
|
4764 subwindow_query_geometry (Lisp_Object image_instance, int* width,
|
|
4765 int* height, enum image_instance_geometry disp,
|
|
4766 Lisp_Object domain)
|
|
4767 {
|
|
4768 if (width) *width = 20;
|
|
4769 if (height) *height = 20;
|
|
4770 }
|
|
4771
|
428
|
4772 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
|
|
4773 Return non-nil if OBJECT is a subwindow.
|
|
4774 */
|
|
4775 (object))
|
|
4776 {
|
|
4777 CHECK_IMAGE_INSTANCE (object);
|
|
4778 return (XIMAGE_INSTANCE_TYPE (object) == IMAGE_SUBWINDOW) ? Qt : Qnil;
|
|
4779 }
|
|
4780
|
|
4781 DEFUN ("image-instance-subwindow-id", Fimage_instance_subwindow_id, 1, 1, 0, /*
|
|
4782 Return the window id of SUBWINDOW as a number.
|
|
4783 */
|
|
4784 (subwindow))
|
|
4785 {
|
|
4786 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
442
|
4787 return make_int ((EMACS_INT) XIMAGE_INSTANCE_SUBWINDOW_ID (subwindow));
|
428
|
4788 }
|
|
4789
|
|
4790 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
|
|
4791 Resize SUBWINDOW to WIDTH x HEIGHT.
|
|
4792 If a value is nil that parameter is not changed.
|
|
4793 */
|
|
4794 (subwindow, width, height))
|
|
4795 {
|
|
4796 int neww, newh;
|
442
|
4797 Lisp_Image_Instance* ii;
|
428
|
4798
|
|
4799 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
442
|
4800 ii = XIMAGE_INSTANCE (subwindow);
|
428
|
4801
|
|
4802 if (NILP (width))
|
442
|
4803 neww = IMAGE_INSTANCE_WIDTH (ii);
|
428
|
4804 else
|
|
4805 neww = XINT (width);
|
|
4806
|
|
4807 if (NILP (height))
|
442
|
4808 newh = IMAGE_INSTANCE_HEIGHT (ii);
|
428
|
4809 else
|
|
4810 newh = XINT (height);
|
|
4811
|
442
|
4812 /* The actual resizing gets done asynchronously by
|
438
|
4813 update_subwindow. */
|
442
|
4814 IMAGE_INSTANCE_HEIGHT (ii) = newh;
|
|
4815 IMAGE_INSTANCE_WIDTH (ii) = neww;
|
|
4816 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
|
428
|
4817
|
|
4818 return subwindow;
|
|
4819 }
|
|
4820
|
|
4821 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
|
|
4822 Generate a Map event for SUBWINDOW.
|
|
4823 */
|
|
4824 (subwindow))
|
|
4825 {
|
|
4826 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
|
|
4827 #if 0
|
|
4828 map_subwindow (subwindow, 0, 0);
|
|
4829 #endif
|
|
4830 return subwindow;
|
|
4831 }
|
|
4832
|
|
4833
|
|
4834 /*****************************************************************************
|
|
4835 * display tables *
|
|
4836 *****************************************************************************/
|
|
4837
|
|
4838 /* Get the display tables for use currently on window W with face
|
|
4839 FACE. #### This will have to be redone. */
|
|
4840
|
|
4841 void
|
|
4842 get_display_tables (struct window *w, face_index findex,
|
|
4843 Lisp_Object *face_table, Lisp_Object *window_table)
|
|
4844 {
|
|
4845 Lisp_Object tem;
|
|
4846 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
|
|
4847 if (UNBOUNDP (tem))
|
|
4848 tem = Qnil;
|
|
4849 if (!LISTP (tem))
|
|
4850 tem = noseeum_cons (tem, Qnil);
|
|
4851 *face_table = tem;
|
|
4852 tem = w->display_table;
|
|
4853 if (UNBOUNDP (tem))
|
|
4854 tem = Qnil;
|
|
4855 if (!LISTP (tem))
|
|
4856 tem = noseeum_cons (tem, Qnil);
|
|
4857 *window_table = tem;
|
|
4858 }
|
|
4859
|
|
4860 Lisp_Object
|
867
|
4861 display_table_entry (Ichar ch, Lisp_Object face_table,
|
428
|
4862 Lisp_Object window_table)
|
|
4863 {
|
|
4864 Lisp_Object tail;
|
|
4865
|
|
4866 /* Loop over FACE_TABLE, and then over WINDOW_TABLE. */
|
|
4867 for (tail = face_table; 1; tail = XCDR (tail))
|
|
4868 {
|
|
4869 Lisp_Object table;
|
|
4870 if (NILP (tail))
|
|
4871 {
|
|
4872 if (!NILP (window_table))
|
|
4873 {
|
|
4874 tail = window_table;
|
|
4875 window_table = Qnil;
|
|
4876 }
|
|
4877 else
|
|
4878 return Qnil;
|
|
4879 }
|
|
4880 table = XCAR (tail);
|
|
4881
|
|
4882 if (VECTORP (table))
|
|
4883 {
|
|
4884 if (ch < XVECTOR_LENGTH (table) && !NILP (XVECTOR_DATA (table)[ch]))
|
|
4885 return XVECTOR_DATA (table)[ch];
|
|
4886 else
|
|
4887 continue;
|
|
4888 }
|
|
4889 else if (CHAR_TABLEP (table)
|
|
4890 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR)
|
|
4891 {
|
826
|
4892 return get_char_table (ch, table);
|
428
|
4893 }
|
|
4894 else if (CHAR_TABLEP (table)
|
|
4895 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC)
|
|
4896 {
|
826
|
4897 Lisp_Object gotit = get_char_table (ch, table);
|
428
|
4898 if (!NILP (gotit))
|
|
4899 return gotit;
|
|
4900 else
|
|
4901 continue;
|
|
4902 }
|
|
4903 else if (RANGE_TABLEP (table))
|
|
4904 {
|
|
4905 Lisp_Object gotit = Fget_range_table (make_char (ch), table, Qnil);
|
|
4906 if (!NILP (gotit))
|
|
4907 return gotit;
|
|
4908 else
|
|
4909 continue;
|
|
4910 }
|
|
4911 else
|
|
4912 abort ();
|
|
4913 }
|
|
4914 }
|
|
4915
|
793
|
4916 /****************************************************************************
|
|
4917 * timeouts for animated glyphs *
|
|
4918 ****************************************************************************/
|
428
|
4919 static Lisp_Object Qglyph_animated_timeout_handler;
|
|
4920
|
|
4921 DEFUN ("glyph-animated-timeout-handler", Fglyph_animated_timeout_handler, 1, 1, 0, /*
|
|
4922 Callback function for updating animated images.
|
|
4923 Don't use this.
|
|
4924 */
|
|
4925 (arg))
|
|
4926 {
|
|
4927 CHECK_WEAK_LIST (arg);
|
|
4928
|
|
4929 if (!NILP (XWEAK_LIST_LIST (arg)) && !NILP (XCAR (XWEAK_LIST_LIST (arg))))
|
|
4930 {
|
|
4931 Lisp_Object value = XCAR (XWEAK_LIST_LIST (arg));
|
440
|
4932
|
428
|
4933 if (IMAGE_INSTANCEP (value))
|
|
4934 {
|
440
|
4935 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (value);
|
428
|
4936
|
|
4937 if (COLOR_PIXMAP_IMAGE_INSTANCEP (value)
|
|
4938 &&
|
|
4939 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) > 1
|
|
4940 &&
|
|
4941 !disable_animated_pixmaps)
|
|
4942 {
|
|
4943 /* Increment the index of the image slice we are currently
|
|
4944 viewing. */
|
|
4945 IMAGE_INSTANCE_PIXMAP_SLICE (ii) =
|
|
4946 (IMAGE_INSTANCE_PIXMAP_SLICE (ii) + 1)
|
|
4947 % IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii);
|
|
4948 /* We might need to kick redisplay at this point - but we
|
|
4949 also might not. */
|
440
|
4950 MARK_DEVICE_FRAMES_GLYPHS_CHANGED
|
442
|
4951 (XDEVICE (image_instance_device (value)));
|
|
4952 /* Cascade dirtiness so that we can have an animated glyph in a layout
|
|
4953 for instance. */
|
|
4954 set_image_instance_dirty_p (value, 1);
|
428
|
4955 }
|
|
4956 }
|
|
4957 }
|
|
4958 return Qnil;
|
|
4959 }
|
|
4960
|
793
|
4961 Lisp_Object
|
|
4962 add_glyph_animated_timeout (EMACS_INT tickms, Lisp_Object image)
|
428
|
4963 {
|
|
4964 Lisp_Object ret = Qnil;
|
|
4965
|
|
4966 if (tickms > 0 && IMAGE_INSTANCEP (image))
|
|
4967 {
|
|
4968 double ms = ((double)tickms) / 1000.0;
|
|
4969 struct gcpro gcpro1;
|
|
4970 Lisp_Object holder = make_weak_list (WEAK_LIST_SIMPLE);
|
|
4971
|
|
4972 GCPRO1 (holder);
|
|
4973 XWEAK_LIST_LIST (holder) = Fcons (image, Qnil);
|
|
4974
|
|
4975 ret = Fadd_timeout (make_float (ms),
|
|
4976 Qglyph_animated_timeout_handler,
|
|
4977 holder, make_float (ms));
|
|
4978
|
|
4979 UNGCPRO;
|
|
4980 }
|
|
4981 return ret;
|
|
4982 }
|
|
4983
|
793
|
4984 void
|
|
4985 disable_glyph_animated_timeout (int i)
|
|
4986 {
|
|
4987 Fdisable_timeout (make_int (i));
|
428
|
4988 }
|
|
4989
|
|
4990
|
|
4991 /*****************************************************************************
|
|
4992 * initialization *
|
|
4993 *****************************************************************************/
|
|
4994
|
|
4995 void
|
|
4996 syms_of_glyphs (void)
|
|
4997 {
|
442
|
4998 INIT_LRECORD_IMPLEMENTATION (glyph);
|
|
4999 INIT_LRECORD_IMPLEMENTATION (image_instance);
|
|
5000
|
428
|
5001 /* image instantiators */
|
|
5002
|
|
5003 DEFSUBR (Fimage_instantiator_format_list);
|
|
5004 DEFSUBR (Fvalid_image_instantiator_format_p);
|
|
5005 DEFSUBR (Fset_console_type_image_conversion_list);
|
|
5006 DEFSUBR (Fconsole_type_image_conversion_list);
|
|
5007
|
442
|
5008 DEFKEYWORD (Q_file);
|
|
5009 DEFKEYWORD (Q_data);
|
|
5010 DEFKEYWORD (Q_face);
|
|
5011 DEFKEYWORD (Q_pixel_height);
|
|
5012 DEFKEYWORD (Q_pixel_width);
|
428
|
5013
|
|
5014 #ifdef HAVE_XPM
|
442
|
5015 DEFKEYWORD (Q_color_symbols);
|
428
|
5016 #endif
|
|
5017 #ifdef HAVE_WINDOW_SYSTEM
|
442
|
5018 DEFKEYWORD (Q_mask_file);
|
|
5019 DEFKEYWORD (Q_mask_data);
|
|
5020 DEFKEYWORD (Q_hotspot_x);
|
|
5021 DEFKEYWORD (Q_hotspot_y);
|
|
5022 DEFKEYWORD (Q_foreground);
|
|
5023 DEFKEYWORD (Q_background);
|
428
|
5024 #endif
|
|
5025 /* image specifiers */
|
|
5026
|
|
5027 DEFSUBR (Fimage_specifier_p);
|
|
5028 /* Qimage in general.c */
|
|
5029
|
|
5030 /* image instances */
|
|
5031
|
563
|
5032 DEFSYMBOL_MULTIWORD_PREDICATE (Qimage_instancep);
|
428
|
5033
|
442
|
5034 DEFSYMBOL (Qnothing_image_instance_p);
|
|
5035 DEFSYMBOL (Qtext_image_instance_p);
|
|
5036 DEFSYMBOL (Qmono_pixmap_image_instance_p);
|
|
5037 DEFSYMBOL (Qcolor_pixmap_image_instance_p);
|
|
5038 DEFSYMBOL (Qpointer_image_instance_p);
|
|
5039 DEFSYMBOL (Qwidget_image_instance_p);
|
|
5040 DEFSYMBOL (Qsubwindow_image_instance_p);
|
428
|
5041
|
|
5042 DEFSUBR (Fmake_image_instance);
|
|
5043 DEFSUBR (Fimage_instance_p);
|
|
5044 DEFSUBR (Fimage_instance_type);
|
|
5045 DEFSUBR (Fvalid_image_instance_type_p);
|
|
5046 DEFSUBR (Fimage_instance_type_list);
|
|
5047 DEFSUBR (Fimage_instance_name);
|
442
|
5048 DEFSUBR (Fimage_instance_domain);
|
872
|
5049 DEFSUBR (Fimage_instance_instantiator);
|
428
|
5050 DEFSUBR (Fimage_instance_string);
|
|
5051 DEFSUBR (Fimage_instance_file_name);
|
|
5052 DEFSUBR (Fimage_instance_mask_file_name);
|
|
5053 DEFSUBR (Fimage_instance_depth);
|
|
5054 DEFSUBR (Fimage_instance_height);
|
|
5055 DEFSUBR (Fimage_instance_width);
|
|
5056 DEFSUBR (Fimage_instance_hotspot_x);
|
|
5057 DEFSUBR (Fimage_instance_hotspot_y);
|
|
5058 DEFSUBR (Fimage_instance_foreground);
|
|
5059 DEFSUBR (Fimage_instance_background);
|
|
5060 DEFSUBR (Fimage_instance_property);
|
|
5061 DEFSUBR (Fcolorize_image_instance);
|
|
5062 /* subwindows */
|
|
5063 DEFSUBR (Fsubwindowp);
|
|
5064 DEFSUBR (Fimage_instance_subwindow_id);
|
|
5065 DEFSUBR (Fresize_subwindow);
|
|
5066 DEFSUBR (Fforce_subwindow_map);
|
|
5067
|
|
5068 /* Qnothing defined as part of the "nothing" image-instantiator
|
|
5069 type. */
|
|
5070 /* Qtext defined in general.c */
|
442
|
5071 DEFSYMBOL (Qmono_pixmap);
|
|
5072 DEFSYMBOL (Qcolor_pixmap);
|
428
|
5073 /* Qpointer defined in general.c */
|
|
5074
|
|
5075 /* glyphs */
|
|
5076
|
442
|
5077 DEFSYMBOL (Qglyphp);
|
|
5078 DEFSYMBOL (Qcontrib_p);
|
|
5079 DEFSYMBOL (Qbaseline);
|
|
5080
|
|
5081 DEFSYMBOL (Qbuffer_glyph_p);
|
|
5082 DEFSYMBOL (Qpointer_glyph_p);
|
|
5083 DEFSYMBOL (Qicon_glyph_p);
|
|
5084
|
|
5085 DEFSYMBOL (Qconst_glyph_variable);
|
428
|
5086
|
|
5087 DEFSUBR (Fglyph_type);
|
|
5088 DEFSUBR (Fvalid_glyph_type_p);
|
|
5089 DEFSUBR (Fglyph_type_list);
|
|
5090 DEFSUBR (Fglyphp);
|
|
5091 DEFSUBR (Fmake_glyph_internal);
|
|
5092 DEFSUBR (Fglyph_width);
|
|
5093 DEFSUBR (Fglyph_ascent);
|
|
5094 DEFSUBR (Fglyph_descent);
|
|
5095 DEFSUBR (Fglyph_height);
|
442
|
5096 DEFSUBR (Fset_instantiator_property);
|
428
|
5097
|
|
5098 /* Qbuffer defined in general.c. */
|
|
5099 /* Qpointer defined above */
|
|
5100
|
|
5101 /* Unfortunately, timeout handlers must be lisp functions. This is
|
|
5102 for animated glyphs. */
|
442
|
5103 DEFSYMBOL (Qglyph_animated_timeout_handler);
|
428
|
5104 DEFSUBR (Fglyph_animated_timeout_handler);
|
|
5105
|
|
5106 /* Errors */
|
563
|
5107 DEFERROR_STANDARD (Qimage_conversion_error, Qconversion_error);
|
428
|
5108 }
|
|
5109
|
|
5110 static const struct lrecord_description image_specifier_description[] = {
|
440
|
5111 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee) },
|
|
5112 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee_property) },
|
428
|
5113 { XD_END }
|
|
5114 };
|
|
5115
|
|
5116 void
|
|
5117 specifier_type_create_image (void)
|
|
5118 {
|
|
5119 /* image specifiers */
|
|
5120
|
|
5121 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
|
|
5122
|
|
5123 SPECIFIER_HAS_METHOD (image, create);
|
|
5124 SPECIFIER_HAS_METHOD (image, mark);
|
|
5125 SPECIFIER_HAS_METHOD (image, instantiate);
|
|
5126 SPECIFIER_HAS_METHOD (image, validate);
|
|
5127 SPECIFIER_HAS_METHOD (image, after_change);
|
|
5128 SPECIFIER_HAS_METHOD (image, going_to_add);
|
434
|
5129 SPECIFIER_HAS_METHOD (image, copy_instantiator);
|
428
|
5130 }
|
|
5131
|
|
5132 void
|
|
5133 reinit_specifier_type_create_image (void)
|
|
5134 {
|
|
5135 REINITIALIZE_SPECIFIER_TYPE (image);
|
|
5136 }
|
|
5137
|
|
5138
|
|
5139 static const struct lrecord_description iike_description_1[] = {
|
440
|
5140 { XD_LISP_OBJECT, offsetof (ii_keyword_entry, keyword) },
|
428
|
5141 { XD_END }
|
|
5142 };
|
|
5143
|
|
5144 static const struct struct_description iike_description = {
|
440
|
5145 sizeof (ii_keyword_entry),
|
428
|
5146 iike_description_1
|
|
5147 };
|
|
5148
|
|
5149 static const struct lrecord_description iiked_description_1[] = {
|
440
|
5150 XD_DYNARR_DESC (ii_keyword_entry_dynarr, &iike_description),
|
428
|
5151 { XD_END }
|
|
5152 };
|
|
5153
|
|
5154 static const struct struct_description iiked_description = {
|
440
|
5155 sizeof (ii_keyword_entry_dynarr),
|
428
|
5156 iiked_description_1
|
|
5157 };
|
|
5158
|
|
5159 static const struct lrecord_description iife_description_1[] = {
|
440
|
5160 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, symbol) },
|
|
5161 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, device) },
|
|
5162 { XD_STRUCT_PTR, offsetof (image_instantiator_format_entry, meths), 1, &iim_description },
|
428
|
5163 { XD_END }
|
|
5164 };
|
|
5165
|
|
5166 static const struct struct_description iife_description = {
|
440
|
5167 sizeof (image_instantiator_format_entry),
|
428
|
5168 iife_description_1
|
|
5169 };
|
|
5170
|
|
5171 static const struct lrecord_description iifed_description_1[] = {
|
440
|
5172 XD_DYNARR_DESC (image_instantiator_format_entry_dynarr, &iife_description),
|
428
|
5173 { XD_END }
|
|
5174 };
|
|
5175
|
|
5176 static const struct struct_description iifed_description = {
|
440
|
5177 sizeof (image_instantiator_format_entry_dynarr),
|
428
|
5178 iifed_description_1
|
|
5179 };
|
|
5180
|
|
5181 static const struct lrecord_description iim_description_1[] = {
|
440
|
5182 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, symbol) },
|
|
5183 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, device) },
|
|
5184 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, keywords), 1, &iiked_description },
|
|
5185 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, consoles), 1, &cted_description },
|
428
|
5186 { XD_END }
|
|
5187 };
|
|
5188
|
|
5189 const struct struct_description iim_description = {
|
442
|
5190 sizeof (struct image_instantiator_methods),
|
428
|
5191 iim_description_1
|
|
5192 };
|
|
5193
|
|
5194 void
|
|
5195 image_instantiator_format_create (void)
|
|
5196 {
|
|
5197 /* image instantiators */
|
|
5198
|
|
5199 the_image_instantiator_format_entry_dynarr =
|
|
5200 Dynarr_new (image_instantiator_format_entry);
|
|
5201
|
|
5202 Vimage_instantiator_format_list = Qnil;
|
|
5203 staticpro (&Vimage_instantiator_format_list);
|
|
5204
|
452
|
5205 dump_add_root_struct_ptr (&the_image_instantiator_format_entry_dynarr, &iifed_description);
|
428
|
5206
|
|
5207 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
|
|
5208
|
|
5209 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
|
|
5210 IIFORMAT_HAS_METHOD (nothing, instantiate);
|
|
5211
|
|
5212 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
|
|
5213
|
|
5214 IIFORMAT_HAS_METHOD (inherit, validate);
|
|
5215 IIFORMAT_HAS_METHOD (inherit, normalize);
|
|
5216 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
|
|
5217 IIFORMAT_HAS_METHOD (inherit, instantiate);
|
|
5218
|
|
5219 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
|
|
5220
|
|
5221 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
|
|
5222
|
|
5223 IIFORMAT_HAS_METHOD (string, validate);
|
442
|
5224 IIFORMAT_HAS_SHARED_METHOD (string, governing_domain, subwindow);
|
428
|
5225 IIFORMAT_HAS_METHOD (string, possible_dest_types);
|
|
5226 IIFORMAT_HAS_METHOD (string, instantiate);
|
|
5227
|
|
5228 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
|
|
5229 /* Do this so we can set strings. */
|
442
|
5230 /* #### Andy, what is this? This is a bogus format and should not be
|
|
5231 visible to the user. */
|
428
|
5232 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (text, "text");
|
442
|
5233 IIFORMAT_HAS_METHOD (text, update);
|
438
|
5234 IIFORMAT_HAS_METHOD (text, query_geometry);
|
428
|
5235
|
|
5236 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
|
|
5237
|
|
5238 IIFORMAT_HAS_METHOD (formatted_string, validate);
|
|
5239 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
|
|
5240 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
|
|
5241 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
|
|
5242
|
442
|
5243 /* Do this so pointers have geometry. */
|
|
5244 /* #### Andy, what is this? This is a bogus format and should not be
|
|
5245 visible to the user. */
|
|
5246 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (pointer, "pointer");
|
|
5247 IIFORMAT_HAS_SHARED_METHOD (pointer, query_geometry, subwindow);
|
|
5248
|
428
|
5249 /* subwindows */
|
|
5250 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (subwindow, "subwindow");
|
|
5251 IIFORMAT_HAS_METHOD (subwindow, possible_dest_types);
|
442
|
5252 IIFORMAT_HAS_METHOD (subwindow, governing_domain);
|
428
|
5253 IIFORMAT_HAS_METHOD (subwindow, instantiate);
|
442
|
5254 IIFORMAT_HAS_METHOD (subwindow, query_geometry);
|
428
|
5255 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_width, check_valid_int);
|
|
5256 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_height, check_valid_int);
|
|
5257
|
|
5258 #ifdef HAVE_WINDOW_SYSTEM
|
|
5259 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
|
|
5260
|
|
5261 IIFORMAT_HAS_METHOD (xbm, validate);
|
|
5262 IIFORMAT_HAS_METHOD (xbm, normalize);
|
|
5263 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
|
|
5264
|
|
5265 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
|
|
5266 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
|
|
5267 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
|
|
5268 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
|
|
5269 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
|
|
5270 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
|
|
5271 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
|
|
5272 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
|
|
5273 #endif /* HAVE_WINDOW_SYSTEM */
|
|
5274
|
|
5275 #ifdef HAVE_XFACE
|
|
5276 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
|
|
5277
|
|
5278 IIFORMAT_HAS_METHOD (xface, validate);
|
|
5279 IIFORMAT_HAS_METHOD (xface, normalize);
|
|
5280 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
|
|
5281
|
|
5282 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
|
|
5283 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
|
|
5284 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
|
|
5285 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
|
|
5286 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
|
|
5287 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
|
|
5288 #endif
|
|
5289
|
|
5290 #ifdef HAVE_XPM
|
|
5291 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
|
|
5292
|
|
5293 IIFORMAT_HAS_METHOD (xpm, validate);
|
|
5294 IIFORMAT_HAS_METHOD (xpm, normalize);
|
|
5295 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
|
|
5296
|
|
5297 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
|
|
5298 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
|
|
5299 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
|
|
5300 #endif /* HAVE_XPM */
|
|
5301 }
|
|
5302
|
|
5303 void
|
|
5304 reinit_vars_of_glyphs (void)
|
|
5305 {
|
|
5306 the_expose_ignore_blocktype =
|
|
5307 Blocktype_new (struct expose_ignore_blocktype);
|
|
5308
|
|
5309 hold_ignored_expose_registration = 0;
|
|
5310 }
|
|
5311
|
|
5312
|
|
5313 void
|
|
5314 vars_of_glyphs (void)
|
|
5315 {
|
|
5316 reinit_vars_of_glyphs ();
|
|
5317
|
|
5318 Vthe_nothing_vector = vector1 (Qnothing);
|
|
5319 staticpro (&Vthe_nothing_vector);
|
|
5320
|
|
5321 /* image instances */
|
|
5322
|
440
|
5323 Vimage_instance_type_list = Fcons (Qnothing,
|
|
5324 list6 (Qtext, Qmono_pixmap, Qcolor_pixmap,
|
428
|
5325 Qpointer, Qsubwindow, Qwidget));
|
|
5326 staticpro (&Vimage_instance_type_list);
|
|
5327
|
|
5328 /* glyphs */
|
|
5329
|
|
5330 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
|
|
5331 staticpro (&Vglyph_type_list);
|
|
5332
|
|
5333 /* The octal-escape glyph, control-arrow-glyph and
|
|
5334 invisible-text-glyph are completely initialized in glyphs.el */
|
|
5335
|
|
5336 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
|
|
5337 What to prefix character codes displayed in octal with.
|
|
5338 */);
|
|
5339 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5340
|
|
5341 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
|
|
5342 What to use as an arrow for control characters.
|
|
5343 */);
|
|
5344 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
5345 redisplay_glyph_changed);
|
|
5346
|
|
5347 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
|
|
5348 What to use to indicate the presence of invisible text.
|
|
5349 This is the glyph that is displayed when an ellipsis is called for
|
|
5350 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
|
|
5351 Normally this is three dots ("...").
|
|
5352 */);
|
|
5353 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
|
|
5354 redisplay_glyph_changed);
|
|
5355
|
|
5356 /* Partially initialized in glyphs.el */
|
|
5357 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
|
|
5358 What to display at the beginning of horizontally scrolled lines.
|
|
5359 */);
|
|
5360 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5361 #ifdef HAVE_WINDOW_SYSTEM
|
|
5362 Fprovide (Qxbm);
|
|
5363 #endif
|
|
5364 #ifdef HAVE_XPM
|
|
5365 Fprovide (Qxpm);
|
|
5366
|
|
5367 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
|
|
5368 Definitions of logical color-names used when reading XPM files.
|
|
5369 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
|
|
5370 The COLOR-NAME should be a string, which is the name of the color to define;
|
|
5371 the FORM should evaluate to a `color' specifier object, or a string to be
|
|
5372 passed to `make-color-instance'. If a loaded XPM file references a symbolic
|
|
5373 color called COLOR-NAME, it will display as the computed color instead.
|
|
5374
|
|
5375 The default value of this variable defines the logical color names
|
|
5376 \"foreground\" and \"background\" to be the colors of the `default' face.
|
|
5377 */ );
|
|
5378 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
|
|
5379 #endif /* HAVE_XPM */
|
|
5380 #ifdef HAVE_XFACE
|
|
5381 Fprovide (Qxface);
|
|
5382 #endif
|
|
5383
|
|
5384 DEFVAR_BOOL ("disable-animated-pixmaps", &disable_animated_pixmaps /*
|
|
5385 Whether animated pixmaps should be animated.
|
|
5386 Default is t.
|
|
5387 */);
|
|
5388 disable_animated_pixmaps = 0;
|
|
5389 }
|
|
5390
|
|
5391 void
|
|
5392 specifier_vars_of_glyphs (void)
|
|
5393 {
|
|
5394 /* #### Can we GC here? The set_specifier_* calls definitely need */
|
|
5395 /* protection. */
|
|
5396 /* display tables */
|
|
5397
|
|
5398 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
|
|
5399 *The display table currently in use.
|
|
5400 This is a specifier; use `set-specifier' to change it.
|
442
|
5401
|
|
5402 Display tables are used to control how characters are displayed. Each
|
|
5403 time that redisplay processes a character, it is looked up in all the
|
|
5404 display tables that apply (obtained by calling `specifier-instance' on
|
|
5405 `current-display-table' and any overriding display tables specified in
|
|
5406 currently active faces). The first entry found that matches the
|
|
5407 character determines how the character is displayed. If there is no
|
|
5408 matching entry, the default display method is used. (Non-control
|
|
5409 characters are displayed as themselves and control characters are
|
|
5410 displayed according to the buffer-local variable `ctl-arrow'. Control
|
|
5411 characters are further affected by `control-arrow-glyph' and
|
|
5412 `octal-escape-glyph'.)
|
|
5413
|
|
5414 Each instantiator in this specifier and the display-table specifiers
|
|
5415 in faces is a display table or a list of such tables. If a list, each
|
|
5416 table will be searched in turn for an entry matching a particular
|
|
5417 character. Each display table is one of
|
|
5418
|
|
5419 -- a vector, specifying values for characters starting at 0
|
|
5420 -- a char table, either of type `char' or `generic'
|
|
5421 -- a range table
|
|
5422
|
|
5423 Each entry in a display table should be one of
|
|
5424
|
|
5425 -- nil (this entry is ignored and the search continues)
|
|
5426 -- a character (use this character; if it happens to be the same as
|
|
5427 the original character, default processing happens, otherwise
|
|
5428 redisplay attempts to display this character directly;
|
|
5429 #### At some point recursive display-table lookup will be
|
|
5430 implemented.)
|
|
5431 -- a string (display each character in the string directly;
|
|
5432 #### At some point recursive display-table lookup will be
|
|
5433 implemented.)
|
|
5434 -- a glyph (display the glyph;
|
|
5435 #### At some point recursive display-table lookup will be
|
|
5436 implemented when a string glyph is being processed.)
|
|
5437 -- a cons of the form (format "STRING") where STRING is a printf-like
|
|
5438 spec used to process the character. #### Unfortunately no
|
|
5439 formatting directives other than %% are implemented.
|
|
5440 -- a vector (each element of the vector is processed recursively;
|
|
5441 in such a case, nil elements in the vector are simply ignored)
|
|
5442
|
|
5443 #### At some point in the near future, display tables are likely to
|
|
5444 be expanded to include other features, such as referencing characters
|
|
5445 in particular fonts and allowing the character search to continue
|
|
5446 all the way up the chain of specifier instantiators. These features
|
|
5447 are necessary to properly display Unicode characters.
|
428
|
5448 */ );
|
|
5449 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
|
|
5450 set_specifier_fallback (Vcurrent_display_table,
|
|
5451 list1 (Fcons (Qnil, Qnil)));
|
|
5452 set_specifier_caching (Vcurrent_display_table,
|
438
|
5453 offsetof (struct window, display_table),
|
428
|
5454 some_window_value_changed,
|
444
|
5455 0, 0, 0);
|
428
|
5456 }
|
|
5457
|
|
5458 void
|
|
5459 complex_vars_of_glyphs (void)
|
|
5460 {
|
|
5461 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5462 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
|
|
5463 What to display at the end of truncated lines.
|
|
5464 */ );
|
|
5465 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5466
|
|
5467 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5468 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
|
|
5469 What to display at the end of wrapped lines.
|
|
5470 */ );
|
|
5471 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
|
|
5472
|
|
5473 /* Partially initialized in glyphs-x.c, glyphs.el */
|
|
5474 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
|
|
5475 The glyph used to display the XEmacs logo at startup.
|
|
5476 */ );
|
|
5477 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
|
|
5478 }
|