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