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