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