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