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