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