annotate src/glyphs.c @ 420:41dbb7a9d5f2 r21-2-18

Import from CVS: tag r21-2-18
author cvs
date Mon, 13 Aug 2007 11:24:09 +0200
parents e804706bfb8c
children 11054d720c21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Generic glyph/image implementation + display tables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995 Sun Microsystems
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
6 Copyright (C) 1998 Andy Piper
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
7
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
27 /* Written by Ben Wing and Chuck Thompson */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
37 #include "insdel.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
38 #include "opaque.h"
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
39 #include "objects.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "window.h"
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
42 #include "frame.h"
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
43 #include "chartab.h"
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
44 #include "rangetab.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
46 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
47 #include <X11/xpm.h>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
48 #endif
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
49
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
50 Lisp_Object Qimage_conversion_error;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
51
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object Qglyphp, Qcontrib_p, Qbaseline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Lisp_Object Qbuffer_glyph_p, Qpointer_glyph_p, Qicon_glyph_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object Qnothing_image_instance_p, Qtext_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Qmono_pixmap_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object Qcolor_pixmap_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Lisp_Object Qpointer_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object Qsubwindow_image_instance_p;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
59 Lisp_Object Qwidget_image_instance_p;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Lisp_Object Qconst_glyph_variable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object Qmono_pixmap, Qcolor_pixmap, Qsubwindow;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
62 Lisp_Object Q_file, Q_data, Q_face, Q_pixel_width, Q_pixel_height;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
63 Lisp_Object Qformatted_string;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object Vcurrent_display_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object Vtruncation_glyph, Vcontinuation_glyph, Voctal_escape_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Lisp_Object Vcontrol_arrow_glyph, Vinvisible_text_glyph, Vhscroll_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object Vxemacs_logo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Lisp_Object Vthe_nothing_vector;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
69 Lisp_Object Vimage_instantiator_format_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
70 Lisp_Object Vimage_instance_type_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
71 Lisp_Object Vglyph_type_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
72
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 DEFINE_IMAGE_INSTANTIATOR_FORMAT (nothing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 DEFINE_IMAGE_INSTANTIATOR_FORMAT (inherit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 DEFINE_IMAGE_INSTANTIATOR_FORMAT (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 DEFINE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
77 DEFINE_IMAGE_INSTANTIATOR_FORMAT (subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
79 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
80 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
81 Lisp_Object Qxbm;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
82
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
83 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
84 Lisp_Object Q_foreground, Q_background;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
85 #ifndef BitmapSuccess
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
86 #define BitmapSuccess 0
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
87 #define BitmapOpenFailed 1
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
88 #define BitmapFileInvalid 2
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
89 #define BitmapNoMemory 3
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
90 #endif
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
91 #endif
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
92
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
93 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
94 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
95 Lisp_Object Qxface;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
96 #endif
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
97
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
98 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
99 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
100 Lisp_Object Qxpm;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
101 Lisp_Object Q_color_symbols;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
102 #endif
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
103
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
104 typedef struct image_instantiator_format_entry image_instantiator_format_entry;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 struct image_instantiator_format_entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Lisp_Object symbol;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
108 Lisp_Object device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 struct image_instantiator_methods *meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
112 typedef struct
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Dynarr_declare (struct image_instantiator_format_entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 } image_instantiator_format_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 image_instantiator_format_entry_dynarr *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 the_image_instantiator_format_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
120 static Lisp_Object allocate_image_instance (Lisp_Object device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 static void image_validate (Lisp_Object instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 static void glyph_property_was_changed (Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object locale);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
125 EXFUN (Fimage_instance_type, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
126 EXFUN (Fglyph_type, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 * Image Instantiators *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
133 struct image_instantiator_methods *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
134 decode_device_ii_format (Lisp_Object device, Lisp_Object format,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
135 Error_behavior errb)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 if (!SYMBOLP (format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 CHECK_SYMBOL (format);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 for (i = 0; i < Dynarr_length (the_image_instantiator_format_entry_dynarr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
149 if ( EQ (format,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
150 Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
151 symbol) )
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
152 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
153 Lisp_Object d = Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
154 device;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
155 if ((NILP (d) && NILP (device))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
156 ||
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
157 (!NILP (device) &&
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
158 EQ (CONSOLE_TYPE (XCONSOLE
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
159 (DEVICE_CONSOLE (XDEVICE (device)))), d)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
160 return Dynarr_at (the_image_instantiator_format_entry_dynarr, i).meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
161 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 maybe_signal_simple_error ("Invalid image-instantiator format", format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 Qimage, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
170 struct image_instantiator_methods *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
171 decode_image_instantiator_format (Lisp_Object format, Error_behavior errb)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
172 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
173 return decode_device_ii_format (Qnil, format, errb);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
174 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
175
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 static int
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
177 valid_image_instantiator_format_p (Lisp_Object format, Lisp_Object locale)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 {
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
179 int i;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
180 struct image_instantiator_methods* meths =
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
181 decode_image_instantiator_format (format, ERROR_ME_NOT);
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
182 struct console* console = decode_console (locale);
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
183 Lisp_Object contype = console ? CONSOLE_TYPE (console) : locale;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
184 /* nothing is valid in all locales */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
185 if (EQ (format, Qnothing))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
186 return 1;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
187 /* reject unknown formats */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
188 else if (!console || !meths)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
189 return 0;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
190
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
191 for (i = 0; i < Dynarr_length (meths->consoles); i++)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
192 if (EQ (contype, Dynarr_at (meths->consoles, i).symbol))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
193 return 1;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
194 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
197 DEFUN ("valid-image-instantiator-format-p", Fvalid_image_instantiator_format_p,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
198 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 Given an IMAGE-INSTANTIATOR-FORMAT, return non-nil if it is valid.
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
200 If LOCALE is non-nil then the format is checked in that domain.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
201 If LOCALE is nil the current console is used.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
202 Valid formats are some subset of 'nothing, 'string, 'formatted-string,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
203 'xpm, 'xbm, 'xface, 'gif, 'jpeg, 'png, 'tiff, 'cursor-font, 'font,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
204 'autodetect, 'widget and 'subwindow, depending on how XEmacs was compiled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
205 */
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
206 (image_instantiator_format, locale))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 {
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
208 return valid_image_instantiator_format_p (image_instantiator_format, locale) ?
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
209 Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
212 DEFUN ("image-instantiator-format-list", Fimage_instantiator_format_list,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
213 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 Return a list of valid image-instantiator formats.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
215 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
216 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 return Fcopy_sequence (Vimage_instantiator_format_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 void
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
222 add_entry_to_device_ii_format_list (Lisp_Object device, Lisp_Object symbol,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
223 struct image_instantiator_methods *meths)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
224 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
225 struct image_instantiator_format_entry entry;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
226
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
227 entry.symbol = symbol;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
228 entry.device = device;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
229 entry.meths = meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
230 Dynarr_add (the_image_instantiator_format_entry_dynarr, entry);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
231 Vimage_instantiator_format_list =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
232 Fcons (symbol, Vimage_instantiator_format_list);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
233 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
234
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
235 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 add_entry_to_image_instantiator_format_list (Lisp_Object symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 image_instantiator_methods *meths)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
240 add_entry_to_device_ii_format_list (Qnil, symbol, meths);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 static Lisp_Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 get_image_conversion_list (Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 return &decode_console_type (console_type, ERROR_ME)->image_conversion_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
249 DEFUN ("set-console-type-image-conversion-list", Fset_console_type_image_conversion_list,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
250 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 Set the image-conversion-list for consoles of the given TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 The image-conversion-list specifies how image instantiators that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 are strings should be interpreted. Each element of the list should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 a list of two elements (a regular expression string and a vector) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 a list of three elements (the preceding two plus an integer index into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 the vector). The string is converted to the vector associated with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 first matching regular expression. If a vector index is specified, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 string itself is substituted into that position in the vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 Note: The conversion above is applied when the image instantiator is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 added to an image specifier, not when the specifier is actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 instantiated. Therefore, changing the image-conversion-list only affects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 newly-added instantiators. Existing instantiators in glyphs and image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 specifiers will not be affected.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
265 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
266 (console_type, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Lisp_Object *imlist = get_image_conversion_list (console_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /* Check the list to make sure that it only has valid entries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 EXTERNAL_LIST_LOOP (tail, list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 Lisp_Object mapping = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 /* Mapping form should be (STRING VECTOR) or (STRING VECTOR INTEGER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 if (!CONSP (mapping) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 !CONSP (XCDR (mapping)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (!NILP (XCDR (XCDR (mapping))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (!CONSP (XCDR (XCDR (mapping))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 !NILP (XCDR (XCDR (XCDR (mapping)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 signal_simple_error ("Invalid mapping form", mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 Lisp_Object exp = XCAR (mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 Lisp_Object typevec = XCAR (XCDR (mapping));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 Lisp_Object pos = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 Lisp_Object newvec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 CHECK_STRING (exp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 CHECK_VECTOR (typevec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if (!NILP (XCDR (XCDR (mapping))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 pos = XCAR (XCDR (XCDR (mapping)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 CHECK_INT (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 if (XINT (pos) < 0 ||
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
299 XINT (pos) >= XVECTOR_LENGTH (typevec))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 args_out_of_range_3
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
301 (pos, Qzero, make_int (XVECTOR_LENGTH (typevec) - 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
303
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 newvec = Fcopy_sequence (typevec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 if (INTP (pos))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
306 XVECTOR_DATA (newvec)[XINT (pos)] = exp;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 GCPRO1 (newvec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 image_validate (newvec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 *imlist = Fcopy_tree (list, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
317 DEFUN ("console-type-image-conversion-list", Fconsole_type_image_conversion_list,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
318 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 Return the image-conversion-list for devices of the given TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 The image-conversion-list specifies how to interpret image string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 instantiators for the specified console type. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 `set-console-type-image-conversion-list' for a description of its syntax.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
323 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
324 (console_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 return Fcopy_tree (*get_image_conversion_list (console_type), Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
329 /* Process a string instantiator according to the image-conversion-list for
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 CONSOLE_TYPE. Returns a vector. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 process_image_string_instantiator (Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 Lisp_Object console_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 int dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 LIST_LOOP (tail, *get_image_conversion_list (console_type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 Lisp_Object mapping = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 Lisp_Object exp = XCAR (mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Lisp_Object typevec = XCAR (XCDR (mapping));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 /* if the result is of a type that can't be instantiated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (e.g. a string when we're dealing with a pointer glyph),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 skip it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 if (!(dest_mask &
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 IIFORMAT_METH (decode_image_instantiator_format
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
350 (XVECTOR_DATA (typevec)[0], ERROR_ME),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 possible_dest_types, ())))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 if (fast_string_match (exp, 0, data, 0, -1, 0, ERROR_ME, 0) >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 if (!NILP (XCDR (XCDR (mapping))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 int pos = XINT (XCAR (XCDR (XCDR (mapping))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 Lisp_Object newvec = Fcopy_sequence (typevec);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
359 XVECTOR_DATA (newvec)[pos] = data;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 return newvec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 return typevec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* Oh well. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 signal_simple_error ("Unable to interpret glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 data);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
370
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 find_keyword_in_vector_or_given (Lisp_Object vector, Lisp_Object keyword,
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
376 Lisp_Object default_)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 Lisp_Object *elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 int instantiator_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
381 elt = XVECTOR_DATA (vector);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
382 instantiator_len = XVECTOR_LENGTH (vector);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 elt++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 instantiator_len--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 while (instantiator_len > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if (EQ (elt[0], keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 return elt[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 elt += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 instantiator_len -= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
395 return default_;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 find_keyword_in_vector (Lisp_Object vector, Lisp_Object keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 return find_keyword_in_vector_or_given (vector, keyword, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 check_valid_string (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
410 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
411 check_valid_vector (Lisp_Object data)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
412 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
413 CHECK_VECTOR (data);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
414 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
415
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
416 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 check_valid_face (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Fget_face (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 check_valid_int (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 CHECK_INT (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 file_or_data_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 if (NILP (find_keyword_in_vector (instantiator, Q_file)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 NILP (find_keyword_in_vector (instantiator, Q_data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 signal_simple_error ("Must supply either :file or :data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 data_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 if (NILP (find_keyword_in_vector (instantiator, Q_data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 signal_simple_error ("Must supply :data", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 face_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 if (NILP (find_keyword_in_vector (instantiator, Q_face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 signal_simple_error ("Must supply :face", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 /* utility function useful in retrieving data from a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 make_string_from_file (Lisp_Object file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 84
diff changeset
456 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 Lisp_Object temp_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 Lisp_Object data;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
461
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 temp_buffer = Fget_buffer_create (build_string (" *pixmap conversion*"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 GCPRO1 (temp_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 set_buffer_internal (XBUFFER (temp_buffer));
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 185
diff changeset
467 Ferase_buffer (Qnil);
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 124
diff changeset
468 specbind (intern ("format-alist"), Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
469 Finsert_file_contents_internal (file, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 185
diff changeset
470 data = Fbuffer_substring (Qnil, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 return data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 /* The following two functions are provided to make it easier for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 the normalize methods to work with keyword-value vectors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 Hash tables are kind of heavyweight for this purpose.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (If vectors were resizable, we could avoid this problem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 but they're not.) An alternative approach that might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 more efficient but require more work is to use a type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 assoc-Dynarr and provide primitives for deleting elements out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 of it. (However, you'd also have to add an unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 to make sure the Dynarr got freed in case of an error in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 the normalization process.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 tagged_vector_to_alist (Lisp_Object vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
490 Lisp_Object *elt = XVECTOR_DATA (vector);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
491 int len = XVECTOR_LENGTH (vector);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 assert (len & 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 for (len -= 2; len >= 1; len -= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 result = Fcons (Fcons (elt[len], elt[len+1]), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 alist_to_tagged_vector (Lisp_Object tag, Lisp_Object alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 int len = 1 + 2 * XINT (Flength (alist));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
505 Lisp_Object *elt = alloca_array (Lisp_Object, len);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 elt[i++] = tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 LIST_LOOP (rest, alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 Lisp_Object pair = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 elt[i] = XCAR (pair);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 elt[i+1] = XCDR (pair);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 i += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 return Fvector (len, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 normalize_image_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Lisp_Object contype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 Lisp_Object dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 if (IMAGE_INSTANCEP (instantiator))
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 361
diff changeset
528 return instantiator;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 if (STRINGP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 instantiator = process_image_string_instantiator (instantiator, contype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 XINT (dest_mask));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 assert (VECTORP (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 /* We have to always store the actual pixmap data and not the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 filename even though this is a potential memory pig. We have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 do this because it is quite possible that we will need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 instantiate a new instance of the pixmap and the file will no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 longer exist (e.g. w3 pixmaps are almost always from temporary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 files). */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
541 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
542 struct gcpro gcpro1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
543 struct image_instantiator_methods *meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
544
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
545 GCPRO1 (instantiator);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
546
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
547 meths = decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
548 ERROR_ME);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
549 RETURN_UNGCPRO (IIFORMAT_METH_OR_GIVEN (meths, normalize,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
550 (instantiator, contype),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
551 instantiator));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
552 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
556 instantiate_image_instantiator (Lisp_Object device, Lisp_Object domain,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
557 Lisp_Object instantiator,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
559 int dest_mask)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
561 Lisp_Object ii = allocate_image_instance (device);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
562 struct image_instantiator_methods *meths;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 struct gcpro gcpro1;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
564 int methp = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 GCPRO1 (ii);
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
567 if (!valid_image_instantiator_format_p (XVECTOR_DATA (instantiator)[0], device))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
568 signal_simple_error
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
569 ("Image instantiator format is invalid in this locale.",
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
570 instantiator);
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
571
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
572 meths = decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
573 ERROR_ME);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
574 methp = (int)HAS_IIFORMAT_METH_P (meths, instantiate);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
575 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
576 pointer_bg, dest_mask, domain));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
577
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
578 /* now do device specific instantiation */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
579 meths = decode_device_ii_format (device, XVECTOR_DATA (instantiator)[0],
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
580 ERROR_ME_NOT);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
581
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
582 if (!methp && (!meths || !HAS_IIFORMAT_METH_P (meths, instantiate)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
583 signal_simple_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
584 ("Don't know how to instantiate this image instantiator?",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
585 instantiator);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
586 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
587 pointer_bg, dest_mask, domain));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
588 UNGCPRO;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
589
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
590 return ii;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 * Image-Instance Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 Lisp_Object Qimage_instancep;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
599
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
601 mark_image_instance (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
603 struct Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
604
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
605 markobj (i->name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 switch (IMAGE_INSTANCE_TYPE (i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 case IMAGE_TEXT:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
609 markobj (IMAGE_INSTANCE_TEXT_STRING (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 case IMAGE_COLOR_PIXMAP:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
613 markobj (IMAGE_INSTANCE_PIXMAP_FILENAME (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
614 markobj (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
615 markobj (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
616 markobj (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
617 markobj (IMAGE_INSTANCE_PIXMAP_FG (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
618 markobj (IMAGE_INSTANCE_PIXMAP_BG (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 break;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
620
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
621 case IMAGE_WIDGET:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
622 markobj (IMAGE_INSTANCE_WIDGET_TYPE (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
623 markobj (IMAGE_INSTANCE_WIDGET_PROPS (i));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
624 markobj (IMAGE_INSTANCE_WIDGET_FACE (i));
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
625 markobj (IMAGE_INSTANCE_WIDGET_ITEM (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 case IMAGE_SUBWINDOW:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
627 markobj (IMAGE_INSTANCE_SUBWINDOW_FRAME (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 break;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
629
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
634 MAYBE_DEVMETH (XDEVICE (i->device), mark_image_instance, (i, markobj));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
636 return i->device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 print_image_instance (Lisp_Object obj, Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 char buf[100];
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
644 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 error ("printing unreadable object #<image-instance 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 ii->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 write_c_string ("#<image-instance (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 print_internal (Fimage_instance_type (obj), printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 write_c_string (") ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 if (!NILP (ii->name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 print_internal (ii->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 write_c_string (" ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 write_c_string ("on ", printcharfun);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
658 print_internal (ii->device, printcharfun, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 write_c_string (" ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 switch (IMAGE_INSTANCE_TYPE (ii))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 print_internal (IMAGE_INSTANCE_TEXT_STRING (ii), printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 if (STRINGP (IMAGE_INSTANCE_PIXMAP_FILENAME (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 char *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 Lisp_Object filename = IMAGE_INSTANCE_PIXMAP_FILENAME (ii);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
676 s = strrchr ((char *) XSTRING_DATA (filename), '/');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 if (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 print_internal (build_string (s + 1), printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 print_internal (filename, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 if (IMAGE_INSTANCE_PIXMAP_DEPTH (ii) > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 sprintf (buf, " %dx%dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 IMAGE_INSTANCE_PIXMAP_DEPTH (ii));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 sprintf (buf, " %dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 write_c_string (" @", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
696 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 write_c_string ("??", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 write_c_string (",", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
704 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 write_c_string ("??", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 !NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 write_c_string (" (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 print_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (XCOLOR_INSTANCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (IMAGE_INSTANCE_PIXMAP_FG (ii))->name, printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 write_c_string ("/", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 if (!NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 print_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (XCOLOR_INSTANCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (IMAGE_INSTANCE_PIXMAP_BG (ii))->name, printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
731 case IMAGE_WIDGET:
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
732 /*
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
733 if (!NILP (IMAGE_INSTANCE_WIDGET_CALLBACK (ii)))
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
734 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
735 print_internal (IMAGE_INSTANCE_WIDGET_CALLBACK (ii), printcharfun, 0);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
736 write_c_string (", ", printcharfun);
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
737 }
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
738 */
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
739 if (!NILP (IMAGE_INSTANCE_WIDGET_FACE (ii)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
740 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
741 write_c_string (" (", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
742 print_internal
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
743 (IMAGE_INSTANCE_WIDGET_FACE (ii), printcharfun, 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
744 write_c_string (")", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
745 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
746
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
747 if (!NILP (IMAGE_INSTANCE_WIDGET_TEXT (ii)))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
748 print_internal (IMAGE_INSTANCE_WIDGET_TEXT (ii), printcharfun, 0);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
749
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 case IMAGE_SUBWINDOW:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
751 sprintf (buf, " %dx%d", IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
752 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
753 write_c_string (buf, printcharfun);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
754
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
755 /* This is stolen from frame.c. Subwindows are strange in that they
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
756 are specific to a particular frame so we want to print in their
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
757 description what that frame is. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
758
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
759 write_c_string (" on #<", printcharfun);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
760 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
761 struct frame* f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
762
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
763 if (!FRAME_LIVE_P (f))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
764 write_c_string ("dead", printcharfun);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
765 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
766 write_c_string (DEVICE_TYPE_NAME (XDEVICE (FRAME_DEVICE (f))),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
767 printcharfun);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
768
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
769 write_c_string ("-frame ", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
770 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
771 write_c_string (">", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
772 sprintf (buf, " 0x%p", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
773 write_c_string (buf, printcharfun);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
774
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
781 MAYBE_DEVMETH (XDEVICE (ii->device), print_image_instance,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (ii, printcharfun, escapeflag));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 sprintf (buf, " 0x%x>", ii->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 finalize_image_instance (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
790 struct Lisp_Image_Instance *i = (struct Lisp_Image_Instance *) header;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
791
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
792 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_NOTHING)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
793 /* objects like this exist at dump time, so don't bomb out. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 if (for_disksave) finalose (i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
797 /* do this so that the cachels get reset */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
798 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_WIDGET
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
799 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
800 IMAGE_INSTANCE_TYPE (i) == IMAGE_SUBWINDOW)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
801 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
802 MARK_FRAME_GLYPHS_CHANGED
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
803 (XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (i)));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
804 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
805
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
806 MAYBE_DEVMETH (XDEVICE (i->device), finalize_image_instance, (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
810 image_instance_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
812 struct Lisp_Image_Instance *i1 = XIMAGE_INSTANCE (obj1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
813 struct Lisp_Image_Instance *i2 = XIMAGE_INSTANCE (obj2);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
814 struct device *d1 = XDEVICE (i1->device);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
815 struct device *d2 = XDEVICE (i2->device);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
816
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
817 if (d1 != d2)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
818 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
819 if (IMAGE_INSTANCE_TYPE (i1) != IMAGE_INSTANCE_TYPE (i2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 if (!internal_equal (IMAGE_INSTANCE_NAME (i1), IMAGE_INSTANCE_NAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 switch (IMAGE_INSTANCE_TYPE (i1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 if (!internal_equal (IMAGE_INSTANCE_TEXT_STRING (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 IMAGE_INSTANCE_TEXT_STRING (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 case IMAGE_POINTER:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
840 if (!(IMAGE_INSTANCE_PIXMAP_WIDTH (i1) ==
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
841 IMAGE_INSTANCE_PIXMAP_WIDTH (i2) &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
842 IMAGE_INSTANCE_PIXMAP_HEIGHT (i1) ==
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
843 IMAGE_INSTANCE_PIXMAP_HEIGHT (i2) &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
844 IMAGE_INSTANCE_PIXMAP_DEPTH (i1) ==
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 IMAGE_INSTANCE_PIXMAP_DEPTH (i2) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i2)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i2)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 internal_equal (IMAGE_INSTANCE_PIXMAP_FILENAME (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 IMAGE_INSTANCE_PIXMAP_FILENAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 depth + 1) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 internal_equal (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 depth + 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
859 case IMAGE_WIDGET:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
860 if (!(EQ (IMAGE_INSTANCE_WIDGET_TYPE (i1),
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
861 IMAGE_INSTANCE_WIDGET_TYPE (i2))
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
862 && internal_equal (IMAGE_INSTANCE_WIDGET_ITEM (i1),
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
863 IMAGE_INSTANCE_WIDGET_ITEM (i2),
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
864 depth + 1)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
865 && internal_equal (IMAGE_INSTANCE_WIDGET_PROPS (i1),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
866 IMAGE_INSTANCE_WIDGET_PROPS (i2),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
867 depth + 1)
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
868 ))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
869 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 case IMAGE_SUBWINDOW:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
871 if (!(IMAGE_INSTANCE_SUBWINDOW_WIDTH (i1) ==
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
872 IMAGE_INSTANCE_SUBWINDOW_WIDTH (i2) &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
873 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (i1) ==
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
874 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (i2) &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
875 IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
876 IMAGE_INSTANCE_SUBWINDOW_ID (i2)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
877 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
884 return DEVMETH_OR_GIVEN (d1, image_instance_equal, (i1, i2, depth), 1);
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
885 }
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
886
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
887 static unsigned long
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 image_instance_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
890 struct Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
891 struct device *d = XDEVICE (i->device);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
892 unsigned long hash = (unsigned long) d;
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
893
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 switch (IMAGE_INSTANCE_TYPE (i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 hash = HASH2 (hash, internal_hash (IMAGE_INSTANCE_TEXT_STRING (i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 case IMAGE_POINTER:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
907 hash = HASH5 (hash, IMAGE_INSTANCE_PIXMAP_WIDTH (i),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
908 IMAGE_INSTANCE_PIXMAP_HEIGHT (i),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
909 IMAGE_INSTANCE_PIXMAP_DEPTH (i),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 internal_hash (IMAGE_INSTANCE_PIXMAP_FILENAME (i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
914 case IMAGE_WIDGET:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
915 hash = HASH4 (hash,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
916 internal_hash (IMAGE_INSTANCE_WIDGET_TYPE (i), depth + 1),
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
917 internal_hash (IMAGE_INSTANCE_WIDGET_PROPS (i), depth + 1),
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
918 internal_hash (IMAGE_INSTANCE_WIDGET_ITEM (i), depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 case IMAGE_SUBWINDOW:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
920 hash = HASH4 (hash, IMAGE_INSTANCE_SUBWINDOW_WIDTH (i),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
921 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (i),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
922 (int) IMAGE_INSTANCE_SUBWINDOW_ID (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
929 return HASH2 (hash, DEVMETH_OR_GIVEN (d, image_instance_hash, (i, depth),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
930 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
933 DEFINE_LRECORD_IMPLEMENTATION ("image-instance", image_instance,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
934 mark_image_instance, print_image_instance,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
935 finalize_image_instance, image_instance_equal,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
936 image_instance_hash, 0,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
937 struct Lisp_Image_Instance);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
938
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
940 allocate_image_instance (Lisp_Object device)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
942 struct Lisp_Image_Instance *lp =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
943 alloc_lcrecord_type (struct Lisp_Image_Instance, &lrecord_image_instance);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
944 Lisp_Object val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 zero_lcrecord (lp);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
947 lp->device = device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 lp->type = IMAGE_NOTHING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 lp->name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 XSETIMAGE_INSTANCE (val, lp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 static enum image_instance_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 decode_image_instance_type (Lisp_Object type, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
960 if (EQ (type, Qnothing)) return IMAGE_NOTHING;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
961 if (EQ (type, Qtext)) return IMAGE_TEXT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
962 if (EQ (type, Qmono_pixmap)) return IMAGE_MONO_PIXMAP;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
963 if (EQ (type, Qcolor_pixmap)) return IMAGE_COLOR_PIXMAP;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
964 if (EQ (type, Qpointer)) return IMAGE_POINTER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
965 if (EQ (type, Qsubwindow)) return IMAGE_SUBWINDOW;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
966 if (EQ (type, Qwidget)) return IMAGE_WIDGET;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 maybe_signal_simple_error ("Invalid image-instance type", type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 Qimage, errb);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
970
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
971 return IMAGE_UNKNOWN; /* not reached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 encode_image_instance_type (enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
979 case IMAGE_NOTHING: return Qnothing;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
980 case IMAGE_TEXT: return Qtext;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
981 case IMAGE_MONO_PIXMAP: return Qmono_pixmap;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
982 case IMAGE_COLOR_PIXMAP: return Qcolor_pixmap;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
983 case IMAGE_POINTER: return Qpointer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
984 case IMAGE_SUBWINDOW: return Qsubwindow;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
985 case IMAGE_WIDGET: return Qwidget;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 static int
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
994 image_instance_type_to_mask (enum image_instance_type type)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
995 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
996 /* This depends on the fact that enums are assigned consecutive
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
997 integers starting at 0. (Remember that IMAGE_UNKNOWN is the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
998 first enum.) I'm fairly sure this behavior in ANSI-mandated,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
999 so there should be no portability problems here. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1000 return (1 << ((int) (type) - 1));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1001 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1002
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1003 static int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 decode_image_instance_type_list (Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 int mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 return ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 if (!CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 enum image_instance_type type =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 decode_image_instance_type (list, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 return image_instance_type_to_mask (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 EXTERNAL_LIST_LOOP (rest, list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 enum image_instance_type type =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 decode_image_instance_type (XCAR (rest), ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 mask |= image_instance_type_to_mask (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 return mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 encode_image_instance_type_list (int mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 while (mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 if (mask & 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 result = Fcons (encode_image_instance_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 ((enum image_instance_type) count), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 mask >>= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 return Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 incompatible_image_types (Lisp_Object instantiator, int given_dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 int desired_dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 signal_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 list2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (emacs_doprnt_string_lisp_2
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1055 ((CONST Bufbyte *)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 "No compatible image-instance types given: wanted one of %s, got %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 Qnil, -1, 2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 encode_image_instance_type_list (desired_dest_mask),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 encode_image_instance_type_list (given_dest_mask)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 valid_image_instance_type_p (Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1066 return !NILP (memq_no_quit (type, Vimage_instance_type_list));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1069 DEFUN ("valid-image-instance-type-p", Fvalid_image_instance_type_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 Given an IMAGE-INSTANCE-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 Valid types are some subset of 'nothing, 'text, 'mono-pixmap, 'color-pixmap,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1072 'pointer, and 'subwindow, depending on how XEmacs was compiled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1073 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1074 (image_instance_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1076 return valid_image_instance_type_p (image_instance_type) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1079 DEFUN ("image-instance-type-list", Fimage_instance_type_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 Return a list of valid image-instance types.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1081 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1082 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 return Fcopy_sequence (Vimage_instance_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 Error_behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 decode_error_behavior_flag (Lisp_Object no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1090 if (NILP (no_error)) return ERROR_ME;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1091 else if (EQ (no_error, Qt)) return ERROR_ME_NOT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1092 else return ERROR_ME_WARN;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 encode_error_behavior_flag (Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 else if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 assert (ERRB_EQ (errb, ERROR_ME_WARN));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 return Qwarning;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1110 make_image_instance_1 (Lisp_Object data, Lisp_Object device,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 Lisp_Object dest_types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 Lisp_Object ii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 int dest_mask;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1116
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1117 XSETDEVICE (device, decode_device (device));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1118 /* instantiate_image_instantiator() will abort if given an
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1119 image instance ... */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 if (IMAGE_INSTANCEP (data))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1121 signal_simple_error ("Image instances not allowed here", data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 image_validate (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 dest_mask = decode_image_instance_type_list (dest_types);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1124 data = normalize_image_instantiator (data, DEVICE_TYPE (XDEVICE (device)),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 make_int (dest_mask));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 GCPRO1 (data);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1127 if (VECTORP (data) && EQ (XVECTOR_DATA (data)[0], Qinherit))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1128 signal_simple_error ("Inheritance not allowed here", data);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1129 ii = instantiate_image_instantiator (device, device, data,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1130 Qnil, Qnil, dest_mask);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 RETURN_UNGCPRO (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1134 DEFUN ("make-image-instance", Fmake_image_instance, 1, 4, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1135 Return a new `image-instance' object.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 Image-instance objects encapsulate the way a particular image (pixmap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 etc.) is displayed on a particular device. In most circumstances, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 do not need to directly create image instances; use a glyph instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 However, it may occasionally be useful to explicitly create image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 instances, if you want more control over the instantiation process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 DATA is an image instantiator, which describes the image; see
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1144 `image-specifier-p' for a description of the allowed values.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 DEST-TYPES should be a list of allowed image instance types that can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 be generated. The recognized image instance types are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 'nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 Nothing is displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 'text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 Displayed as text. The foreground and background colors and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 font of the text are specified independent of the pixmap. Typically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 these attributes will come from the face of the surrounding text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 unless a face is specified for the glyph in which the image appears.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 'mono-pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 Displayed as a mono pixmap (a pixmap with only two colors where the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 foreground and background can be specified independent of the pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 typically the pixmap assumes the foreground and background colors of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 the text around it, unless a face is specified for the glyph in which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 the image appears).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 'color-pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 Displayed as a color pixmap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 'pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 Used as the mouse pointer for a window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 'subwindow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 A child window that is treated as an image. This allows (e.g.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 another program to be responsible for drawing into the window.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1169 Not currently implemented.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1170
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1171 The DEST-TYPES list is unordered. If multiple destination types
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1172 are possible for a given instantiator, the "most natural" type
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1173 for the instantiator's format is chosen. (For XBM, the most natural
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1174 types are `mono-pixmap', followed by `color-pixmap', followed by
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1175 `pointer'. For the other normal image formats, the most natural
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1176 types are `color-pixmap', followed by `mono-pixmap', followed by
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1177 `pointer'. For the string and formatted-string formats, the most
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1178 natural types are `text', followed by `mono-pixmap' (not currently
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1179 implemented), followed by `color-pixmap' (not currently implemented).
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1180 The other formats can only be instantiated as one type. (If you
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1181 want to control more specifically the order of the types into which
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1182 an image is instantiated, just call `make-image-instance' repeatedly
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1183 until it succeeds, passing less and less preferred destination types
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1184 each time.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 If DEST-TYPES is omitted, all possible types are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 NO-ERROR controls what happens when the image cannot be generated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 If nil, an error message is generated. If t, no messages are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 generated and this function returns nil. If anything else, a warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 message is generated and this function returns nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1192 */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1193 (data, device, dest_types, no_error))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 Error_behavior errb = decode_error_behavior_flag (no_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1197 return call_with_suspended_errors ((lisp_fn_t) make_image_instance_1,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 Qnil, Qimage, errb,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1199 3, data, device, dest_types);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1202 DEFUN ("image-instance-p", Fimage_instance_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 Return non-nil if OBJECT is an image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1204 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1205 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1207 return IMAGE_INSTANCEP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1210 DEFUN ("image-instance-type", Fimage_instance_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 Return the type of the given image instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 The return value will be one of 'nothing, 'text, 'mono-pixmap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 'color-pixmap, 'pointer, or 'subwindow.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1214 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1215 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 return encode_image_instance_type (XIMAGE_INSTANCE_TYPE (image_instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1221 DEFUN ("image-instance-name", Fimage_instance_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 Return the name of the given image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1223 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1224 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 CHECK_IMAGE_INSTANCE (image_instance);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1227 return XIMAGE_INSTANCE_NAME (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1230 DEFUN ("image-instance-string", Fimage_instance_string, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 Return the string of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1232 This will only be non-nil for text image instances and widgets.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1233 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1234 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_TEXT)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1238 return XIMAGE_INSTANCE_TEXT_STRING (image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1239 else if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_WIDGET)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1240 return XIMAGE_INSTANCE_WIDGET_TEXT (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1245 DEFUN ("image-instance-property", Fimage_instance_property, 2, 2, 0, /*
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1246 Return the given property of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1247 Returns nil if the property or the property method do not exist for
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1248 the image instance in the domain.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1249 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1250 (image_instance, prop))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1251 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1252 struct Lisp_Image_Instance* ii;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1253 Lisp_Object type, ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1254 struct image_instantiator_methods* meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1255
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1256 CHECK_IMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1257 CHECK_SYMBOL (prop);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1258 ii = XIMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1259
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1260 /* ... then try device specific methods ... */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1261 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1262 meths = decode_device_ii_format (IMAGE_INSTANCE_DEVICE (ii),
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1263 type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1264 if (meths && HAS_IIFORMAT_METH_P (meths, property)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1265 &&
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1266 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1267 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1268 return ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1269 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1270 /* ... then format specific methods ... */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1271 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1272 if (meths && HAS_IIFORMAT_METH_P (meths, property)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1273 &&
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1274 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1275 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1276 return ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1277 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1278 /* ... then fail */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1279 return Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1280 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1281
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1282 DEFUN ("set-image-instance-property", Fset_image_instance_property, 3, 3, 0, /*
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1283 Set the given property of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1284 Does nothing if the property or the property method do not exist for
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1285 the image instance in the domain.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1286 */
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1287 (image_instance, prop, val))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1288 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1289 struct Lisp_Image_Instance* ii;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1290 Lisp_Object type, ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1291 struct image_instantiator_methods* meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1292
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1293 CHECK_IMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1294 CHECK_SYMBOL (prop);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1295 ii = XIMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1296 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1297 /* try device specific methods first ... */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1298 meths = decode_device_ii_format (IMAGE_INSTANCE_DEVICE (ii),
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1299 type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1300 if (meths && HAS_IIFORMAT_METH_P (meths, set_property)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1301 &&
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1302 !UNBOUNDP (ret =
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1303 IIFORMAT_METH (meths, set_property, (image_instance, prop, val))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1304 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1305 return ret;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1306 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1307 /* ... then format specific methods ... */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1308 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1309 if (meths && HAS_IIFORMAT_METH_P (meths, set_property)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1310 &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1311 !UNBOUNDP (ret =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1312 IIFORMAT_METH (meths, set_property, (image_instance, prop, val))))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1313 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1314 return ret;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1315 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1316
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1317 return val;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1318 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1319
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1320 DEFUN ("image-instance-file-name", Fimage_instance_file_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 Return the file name from which IMAGE-INSTANCE was read, if known.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1322 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1323 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 return XIMAGE_INSTANCE_PIXMAP_FILENAME (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1339 DEFUN ("image-instance-mask-file-name", Fimage_instance_mask_file_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 Return the file name from which IMAGE-INSTANCE's mask was read, if known.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1341 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1342 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 return XIMAGE_INSTANCE_PIXMAP_MASK_FILENAME (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1358 DEFUN ("image-instance-depth", Fimage_instance_depth, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 Return the depth of the image instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 This is 0 for a bitmap, or a positive integer for a pixmap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1361 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1362 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 case IMAGE_POINTER:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1371 return make_int (XIMAGE_INSTANCE_PIXMAP_DEPTH (image_instance));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1378 DEFUN ("image-instance-height", Fimage_instance_height, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 Return the height of the image instance, in pixels.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1380 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1381 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 case IMAGE_POINTER:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1390 return make_int (XIMAGE_INSTANCE_PIXMAP_HEIGHT (image_instance));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1391
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1392 case IMAGE_SUBWINDOW:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1393 case IMAGE_WIDGET:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1394 return make_int (XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (image_instance));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1395
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1401 DEFUN ("image-instance-width", Fimage_instance_width, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 Return the width of the image instance, in pixels.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1403 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1404 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 case IMAGE_POINTER:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1413 return make_int (XIMAGE_INSTANCE_PIXMAP_WIDTH (image_instance));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1414
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1415 case IMAGE_SUBWINDOW:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1416 case IMAGE_WIDGET:
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1417 return make_int (XIMAGE_INSTANCE_SUBWINDOW_WIDTH (image_instance));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1418
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1424 DEFUN ("image-instance-hotspot-x", Fimage_instance_hotspot_x, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 Return the X coordinate of the image instance's hotspot, if known.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 This is a point relative to the origin of the pixmap. When an image is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 used as a mouse pointer, the hotspot is the point on the image that sits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 over the location that the pointer points to. This is, for example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 tip of the arrow or the center of the crosshairs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 This will always be nil for a non-pointer image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1431 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1432 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1448 DEFUN ("image-instance-hotspot-y", Fimage_instance_hotspot_y, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 Return the Y coordinate of the image instance's hotspot, if known.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 This is a point relative to the origin of the pixmap. When an image is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 used as a mouse pointer, the hotspot is the point on the image that sits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 over the location that the pointer points to. This is, for example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 tip of the arrow or the center of the crosshairs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 This will always be nil for a non-pointer image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1455 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1456 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1472 DEFUN ("image-instance-foreground", Fimage_instance_foreground, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 Return the foreground color of IMAGE-INSTANCE, if applicable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 This will be a color instance or nil. (It will only be non-nil for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 colorized mono pixmaps and for pointers.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1476 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1477 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 return XIMAGE_INSTANCE_PIXMAP_FG (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1488 case IMAGE_WIDGET:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1489 return FACE_FOREGROUND (
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1490 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1491 XIMAGE_INSTANCE_SUBWINDOW_FRAME
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1492 (image_instance));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1493
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1499 DEFUN ("image-instance-background", Fimage_instance_background, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 Return the background color of IMAGE-INSTANCE, if applicable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 This will be a color instance or nil. (It will only be non-nil for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 colorized mono pixmaps and for pointers.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1503 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1504 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 return XIMAGE_INSTANCE_PIXMAP_BG (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1515 case IMAGE_WIDGET:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1516 return FACE_BACKGROUND (
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1517 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1518 XIMAGE_INSTANCE_SUBWINDOW_FRAME
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1519 (image_instance));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1520
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1527 DEFUN ("colorize-image-instance", Fcolorize_image_instance, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 Make the image instance be displayed in the given colors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 This function returns a new image instance that is exactly like the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 specified one except that (if possible) the foreground and background
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 colors and as specified. Currently, this only does anything if the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 instance is a mono pixmap; otherwise, the same image instance is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1533 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1534 (image_instance, foreground, background))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 CHECK_COLOR_INSTANCE (foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 CHECK_COLOR_INSTANCE (background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1543 device = XIMAGE_INSTANCE_DEVICE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 if (!HAS_DEVMETH_P (XDEVICE (device), colorize_image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 return image_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1547 new = allocate_image_instance (device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 copy_lcrecord (XIMAGE_INSTANCE (new), XIMAGE_INSTANCE (image_instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 /* note that if this method returns non-zero, this method MUST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 copy any window-system resources, so that when one image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 freed, the other one is not hosed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 if (!DEVMETH (XDEVICE (device), colorize_image_instance, (new, foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 background)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 return image_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 return new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1559 /************************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1560 /* error helpers */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1561 /************************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1562 DOESNT_RETURN
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1563 signal_image_error (CONST char *reason, Lisp_Object frob)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1564 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1565 signal_error (Qimage_conversion_error,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1566 list2 (build_translated_string (reason), frob));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1567 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1568
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1569 DOESNT_RETURN
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1570 signal_image_error_2 (CONST char *reason, Lisp_Object frob0, Lisp_Object frob1)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1571 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1572 signal_error (Qimage_conversion_error,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1573 list3 (build_translated_string (reason), frob0, frob1));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1574 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1575
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 * nothing *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1581 nothing_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 return IMAGE_NOTHING_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 nothing_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1589 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1591 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 if (dest_mask & IMAGE_NOTHING_MASK)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1594 IMAGE_INSTANCE_TYPE (ii) = IMAGE_NOTHING;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 incompatible_image_types (instantiator, dest_mask, IMAGE_NOTHING_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 * inherit *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 inherit_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 face_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 inherit_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 Lisp_Object face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1615 assert (XVECTOR_LENGTH (inst) == 3);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1616 face = XVECTOR_DATA (inst)[2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 if (!FACEP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 inst = vector3 (Qinherit, Q_face, Fget_face (face));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 return inst;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1623 inherit_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 return IMAGE_MONO_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 inherit_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1631 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 /* handled specially in image_instantiate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 * string *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 string_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1649 string_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 return IMAGE_TEXT_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1654 /* called from autodetect_instantiate() */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 string_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1658 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1660 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1661 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1662
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1663 assert (!NILP (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 if (dest_mask & IMAGE_TEXT_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1667 IMAGE_INSTANCE_TEXT_STRING (ii) = data;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 * formatted-string *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 formatted_string_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1685 formatted_string_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 return IMAGE_TEXT_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 formatted_string_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1694 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1696 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1697 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1698
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1699 assert (!NILP (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 /* #### implement this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 warn_when_safe (Qunimplemented, Qnotice,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 "`formatted-string' not yet implemented; assuming `string'");
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1703 if (dest_mask & IMAGE_TEXT_MASK)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1704 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1705 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1706 IMAGE_INSTANCE_TEXT_STRING (ii) = data;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1707 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1708 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1709 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1713 /************************************************************************/
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1714 /* pixmap file functions */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1715 /************************************************************************/
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1716
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1717 /* If INSTANTIATOR refers to inline data, return Qnil.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1718 If INSTANTIATOR refers to data in a file, return the full filename
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1719 if it exists; otherwise, return a cons of (filename).
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1720
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1721 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1722 keywords used to look up the file and inline data,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1723 respectively, in the instantiator. Normally these would
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1724 be Q_file and Q_data, but might be different for mask data. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1725
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1726 Lisp_Object
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1727 potential_pixmap_file_instantiator (Lisp_Object instantiator,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1728 Lisp_Object file_keyword,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1729 Lisp_Object data_keyword,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1730 Lisp_Object console_type)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1731 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1732 Lisp_Object file;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1733 Lisp_Object data;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1734
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1735 assert (VECTORP (instantiator));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1736
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1737 data = find_keyword_in_vector (instantiator, data_keyword);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1738 file = find_keyword_in_vector (instantiator, file_keyword);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1739
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1740 if (!NILP (file) && NILP (data))
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1741 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1742 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1743 (decode_console_type(console_type, ERROR_ME),
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1744 locate_pixmap_file, (file));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1745
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1746 if (!NILP (retval))
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1747 return retval;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1748 else
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1749 return Fcons (file, Qnil); /* should have been file */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1750 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1751
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1752 return Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1753 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1754
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1755 Lisp_Object
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1756 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1757 Lisp_Object image_type_tag)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1758 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1759 /* This function can call lisp */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1760 Lisp_Object file = Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1761 struct gcpro gcpro1, gcpro2;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1762 Lisp_Object alist = Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1763
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1764 GCPRO2 (file, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1765
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1766 /* Now, convert any file data into inline data. At the end of this,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1767 `data' will contain the inline data (if any) or Qnil, and `file'
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1768 will contain the name this data was derived from (if known) or
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1769 Qnil.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1770
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1771 Note that if we cannot generate any regular inline data, we
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1772 skip out. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1773
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1774 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1775 console_type);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1776
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1777 if (CONSP (file)) /* failure locating filename */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1778 signal_double_file_error ("Opening pixmap file",
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1779 "no such file or directory",
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1780 Fcar (file));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1781
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1782 if (NILP (file)) /* no conversion necessary */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1783 RETURN_UNGCPRO (inst);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1784
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1785 alist = tagged_vector_to_alist (inst);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1786
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1787 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1788 Lisp_Object data = make_string_from_file (file);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1789 alist = remassq_no_quit (Q_file, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1790 /* there can't be a :data at this point. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1791 alist = Fcons (Fcons (Q_file, file),
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1792 Fcons (Fcons (Q_data, data), alist));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1793 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1794
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1795 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1796 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1797 free_alist (alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1798 RETURN_UNGCPRO (result);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1799 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1800 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1801
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
1802
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1803 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1804 /**********************************************************************
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1805 * XBM *
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1806 **********************************************************************/
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1807
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1808 /* Check if DATA represents a valid inline XBM spec (i.e. a list
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1809 of (width height bits), with checking done on the dimensions).
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1810 If not, signal an error. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1811
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1812 static void
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1813 check_valid_xbm_inline (Lisp_Object data)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1814 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1815 Lisp_Object width, height, bits;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1816
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1817 if (!CONSP (data) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1818 !CONSP (XCDR (data)) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1819 !CONSP (XCDR (XCDR (data))) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1820 !NILP (XCDR (XCDR (XCDR (data)))))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1821 signal_simple_error ("Must be list of 3 elements", data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1822
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1823 width = XCAR (data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1824 height = XCAR (XCDR (data));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1825 bits = XCAR (XCDR (XCDR (data)));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1826
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1827 CHECK_STRING (bits);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1828
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1829 if (!NATNUMP (width))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1830 signal_simple_error ("Width must be a natural number", width);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1831
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1832 if (!NATNUMP (height))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1833 signal_simple_error ("Height must be a natural number", height);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1834
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1835 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1836 signal_simple_error ("data is too short for width and height",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1837 vector3 (width, height, bits));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1838 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1839
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1840 /* Validate method for XBM's. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1841
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1842 static void
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1843 xbm_validate (Lisp_Object instantiator)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1844 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1845 file_or_data_must_be_present (instantiator);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1846 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1847
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1848 /* Given a filename that is supposed to contain XBM data, return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1849 the inline representation of it as (width height bits). Return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1850 the hotspot through XHOT and YHOT, if those pointers are not 0.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1851 If there is no hotspot, XHOT and YHOT will contain -1.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1852
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1853 If the function fails:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1854
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1855 -- if OK_IF_DATA_INVALID is set and the data was invalid,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1856 return Qt.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1857 -- maybe return an error, or return Qnil.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1858 */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1859
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1860 #ifdef HAVE_X_WINDOWS
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1861 #include <X11/Xlib.h>
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1862 #else
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1863 #define XFree(data) free(data)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1864 #endif
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1865
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1866 Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1867 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1868 int ok_if_data_invalid)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1869 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1870 unsigned int w, h;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1871 Extbyte *data;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1872 int result;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1873 CONST char *filename_ext;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1874
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1875 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1876 result = read_bitmap_data_from_file (filename_ext, &w, &h,
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1877 &data, xhot, yhot);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1878
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1879 if (result == BitmapSuccess)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1880 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1881 Lisp_Object retval;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1882 int len = (w + 7) / 8 * h;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1883
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1884 retval = list3 (make_int (w), make_int (h),
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1885 make_ext_string (data, len, FORMAT_BINARY));
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1886 XFree ((char *) data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1887 return retval;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1888 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1889
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1890 switch (result)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1891 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1892 case BitmapOpenFailed:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1893 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1894 /* should never happen */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1895 signal_double_file_error ("Opening bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1896 "no such file or directory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1897 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1898 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1899 case BitmapFileInvalid:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1900 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1901 if (ok_if_data_invalid)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1902 return Qt;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1903 signal_double_file_error ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1904 "invalid data in file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1905 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1906 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1907 case BitmapNoMemory:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1908 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1909 signal_double_file_error ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1910 "out of memory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1911 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1912 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1913 default:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1914 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1915 signal_double_file_error_2 ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1916 "unknown error code",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1917 make_int (result), name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1918 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1919 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1920
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1921 return Qnil; /* not reached */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1922 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1923
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1924 Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1925 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1926 Lisp_Object mask_file, Lisp_Object console_type)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1927 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1928 /* This is unclean but it's fairly standard -- a number of the
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1929 bitmaps in /usr/include/X11/bitmaps use it -- so we support
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1930 it. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1931 if (NILP (mask_file)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1932 /* don't override explicitly specified mask data. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1933 && NILP (assq_no_quit (Q_mask_data, alist))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1934 && !NILP (file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1935 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1936 mask_file = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1937 (decode_console_type(console_type, ERROR_ME),
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1938 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1939 if (NILP (mask_file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1940 mask_file = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1941 (decode_console_type(console_type, ERROR_ME),
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1942 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1943 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1944
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1945 if (!NILP (mask_file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1946 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1947 Lisp_Object mask_data =
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1948 bitmap_to_lisp_data (mask_file, 0, 0, 0);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1949 alist = remassq_no_quit (Q_mask_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1950 /* there can't be a :mask-data at this point. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1951 alist = Fcons (Fcons (Q_mask_file, mask_file),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1952 Fcons (Fcons (Q_mask_data, mask_data), alist));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1953 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1954
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1955 return alist;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1956 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1957
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1958 /* Normalize method for XBM's. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1959
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1960 static Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1961 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1962 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1963 Lisp_Object file = Qnil, mask_file = Qnil;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1964 struct gcpro gcpro1, gcpro2, gcpro3;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1965 Lisp_Object alist = Qnil;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1966
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1967 GCPRO3 (file, mask_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1968
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1969 /* Now, convert any file data into inline data for both the regular
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1970 data and the mask data. At the end of this, `data' will contain
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1971 the inline data (if any) or Qnil, and `file' will contain
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1972 the name this data was derived from (if known) or Qnil.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1973 Likewise for `mask_file' and `mask_data'.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1974
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1975 Note that if we cannot generate any regular inline data, we
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1976 skip out. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1977
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1978 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1979 console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1980 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1981 Q_mask_data, console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1982
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1983 if (CONSP (file)) /* failure locating filename */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1984 signal_double_file_error ("Opening bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1985 "no such file or directory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1986 Fcar (file));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1987
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1988 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1989 RETURN_UNGCPRO (inst);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1990
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1991 alist = tagged_vector_to_alist (inst);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1992
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1993 if (!NILP (file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1994 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1995 int xhot, yhot;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1996 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1997 alist = remassq_no_quit (Q_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1998 /* there can't be a :data at this point. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
1999 alist = Fcons (Fcons (Q_file, file),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2000 Fcons (Fcons (Q_data, data), alist));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2001
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2002 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2003 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2004 alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2005 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2006 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2007 alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2008 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2009
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2010 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2011
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2012 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2013 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2014 free_alist (alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2015 RETURN_UNGCPRO (result);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2016 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2017 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2018
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2019
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2020 static int
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2021 xbm_possible_dest_types (void)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2022 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2023 return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2024 IMAGE_MONO_PIXMAP_MASK |
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2025 IMAGE_COLOR_PIXMAP_MASK |
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2026 IMAGE_POINTER_MASK;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2027 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2028
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2029 #endif
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2030
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2031
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2032 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2033 /**********************************************************************
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2034 * X-Face *
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2035 **********************************************************************/
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2036
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2037 static void
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2038 xface_validate (Lisp_Object instantiator)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2039 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2040 file_or_data_must_be_present (instantiator);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2041 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2042
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2043 static Lisp_Object
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2044 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2045 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2046 /* This function can call lisp */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2047 Lisp_Object file = Qnil, mask_file = Qnil;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2048 struct gcpro gcpro1, gcpro2, gcpro3;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2049 Lisp_Object alist = Qnil;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2050
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2051 GCPRO3 (file, mask_file, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2052
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2053 /* Now, convert any file data into inline data for both the regular
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2054 data and the mask data. At the end of this, `data' will contain
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2055 the inline data (if any) or Qnil, and `file' will contain
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2056 the name this data was derived from (if known) or Qnil.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2057 Likewise for `mask_file' and `mask_data'.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2058
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2059 Note that if we cannot generate any regular inline data, we
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2060 skip out. */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2061
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2062 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2063 console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2064 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2065 Q_mask_data, console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2066
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2067 if (CONSP (file)) /* failure locating filename */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2068 signal_double_file_error ("Opening bitmap file",
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2069 "no such file or directory",
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2070 Fcar (file));
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2071
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2072 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2073 RETURN_UNGCPRO (inst);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2074
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2075 alist = tagged_vector_to_alist (inst);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2076
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2077 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2078 Lisp_Object data = make_string_from_file (file);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2079 alist = remassq_no_quit (Q_file, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2080 /* there can't be a :data at this point. */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2081 alist = Fcons (Fcons (Q_file, file),
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2082 Fcons (Fcons (Q_data, data), alist));
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2083 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2084
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2085 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2086
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2087 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2088 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2089 free_alist (alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2090 RETURN_UNGCPRO (result);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2091 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2092 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2093
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2094 static int
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2095 xface_possible_dest_types (void)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2096 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2097 return
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2098 IMAGE_MONO_PIXMAP_MASK |
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2099 IMAGE_COLOR_PIXMAP_MASK |
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2100 IMAGE_POINTER_MASK;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2101 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2102
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2103 #endif /* HAVE_XFACE */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2104
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2105
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2106 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2107
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2108 /**********************************************************************
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2109 * XPM *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2110 **********************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2111
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2112 Lisp_Object
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2113 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2114 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2115 char **data;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2116 int result;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2117 char *fname = 0;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2118
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2119 GET_C_STRING_FILENAME_DATA_ALLOCA (name, fname);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2120 result = XpmReadFileToData (fname, &data);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2121
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2122 if (result == XpmSuccess)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2123 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2124 Lisp_Object retval = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2125 struct buffer *old_buffer = current_buffer;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2126 Lisp_Object temp_buffer =
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2127 Fget_buffer_create (build_string (" *pixmap conversion*"));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2128 int elt;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2129 int height, width, ncolors;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2130 struct gcpro gcpro1, gcpro2, gcpro3;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2131 int speccount = specpdl_depth ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2132
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2133 GCPRO3 (name, retval, temp_buffer);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2134
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2135 specbind (Qinhibit_quit, Qt);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2136 set_buffer_internal (XBUFFER (temp_buffer));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2137 Ferase_buffer (Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2138
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2139 buffer_insert_c_string (current_buffer, "/* XPM */\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2140 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2141
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2142 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2143 for (elt = 0; elt <= width + ncolors; elt++)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2144 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2145 buffer_insert_c_string (current_buffer, "\"");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2146 buffer_insert_c_string (current_buffer, data[elt]);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2147
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2148 if (elt < width + ncolors)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2149 buffer_insert_c_string (current_buffer, "\",\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2150 else
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2151 buffer_insert_c_string (current_buffer, "\"};\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2152 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2153
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2154 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2155 XpmFree (data);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2156
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2157 set_buffer_internal (old_buffer);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2158 unbind_to (speccount, Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2159
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2160 RETURN_UNGCPRO (retval);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2161 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2162
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2163 switch (result)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2164 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2165 case XpmFileInvalid:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2166 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2167 if (ok_if_data_invalid)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2168 return Qt;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2169 signal_image_error ("invalid XPM data in file", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2170 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2171 case XpmNoMemory:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2172 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2173 signal_double_file_error ("Reading pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2174 "out of memory", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2175 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2176 case XpmOpenFailed:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2177 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2178 /* should never happen? */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2179 signal_double_file_error ("Opening pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2180 "no such file or directory", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2181 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2182 default:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2183 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2184 signal_double_file_error_2 ("Parsing pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2185 "unknown error code",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2186 make_int (result), name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2187 break;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2188 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2189 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2190
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2191 return Qnil; /* not reached */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2192 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2193
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2194 static void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2195 check_valid_xpm_color_symbols (Lisp_Object data)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2196 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2197 Lisp_Object rest;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2198
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2199 for (rest = data; !NILP (rest); rest = XCDR (rest))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2200 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2201 if (!CONSP (rest) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2202 !CONSP (XCAR (rest)) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2203 !STRINGP (XCAR (XCAR (rest))) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2204 (!STRINGP (XCDR (XCAR (rest))) &&
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2205 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2206 signal_simple_error ("Invalid color symbol alist", data);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2207 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2208 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2209
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2210 static void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2211 xpm_validate (Lisp_Object instantiator)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2212 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2213 file_or_data_must_be_present (instantiator);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2214 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2215
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2216 Lisp_Object Vxpm_color_symbols;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2217
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2218 Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2219 evaluate_xpm_color_symbols (void)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2220 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2221 Lisp_Object rest, results = Qnil;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2222 struct gcpro gcpro1, gcpro2;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2223
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2224 GCPRO2 (rest, results);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2225 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2226 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2227 Lisp_Object name, value, cons;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2228
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2229 CHECK_CONS (rest);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2230 cons = XCAR (rest);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2231 CHECK_CONS (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2232 name = XCAR (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2233 CHECK_STRING (name);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2234 value = XCDR (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2235 CHECK_CONS (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2236 value = XCAR (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2237 value = Feval (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2238 if (NILP (value))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2239 continue;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2240 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2241 signal_simple_error
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2242 ("Result from xpm-color-symbols eval must be nil, string, or color",
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2243 value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2244 results = Fcons (Fcons (name, value), results);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2245 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2246 UNGCPRO; /* no more evaluation */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2247 return results;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2248 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2249
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2250 static Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2251 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2252 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2253 Lisp_Object file = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2254 Lisp_Object color_symbols;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2255 struct gcpro gcpro1, gcpro2;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2256 Lisp_Object alist = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2257
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2258 GCPRO2 (file, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2259
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2260 /* Now, convert any file data into inline data. At the end of this,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2261 `data' will contain the inline data (if any) or Qnil, and
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2262 `file' will contain the name this data was derived from (if
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2263 known) or Qnil.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2264
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2265 Note that if we cannot generate any regular inline data, we
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2266 skip out. */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2267
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2268 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2269 console_type);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2270
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2271 if (CONSP (file)) /* failure locating filename */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2272 signal_double_file_error ("Opening pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2273 "no such file or directory",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2274 Fcar (file));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2275
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2276 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2277 Qunbound);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2278
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2279 if (NILP (file) && !UNBOUNDP (color_symbols))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2280 /* no conversion necessary */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2281 RETURN_UNGCPRO (inst);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2282
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2283 alist = tagged_vector_to_alist (inst);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2284
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2285 if (!NILP (file))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2286 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2287 Lisp_Object data = pixmap_to_lisp_data (file, 0);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2288 alist = remassq_no_quit (Q_file, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2289 /* there can't be a :data at this point. */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2290 alist = Fcons (Fcons (Q_file, file),
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2291 Fcons (Fcons (Q_data, data), alist));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2292 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2293
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2294 if (UNBOUNDP (color_symbols))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2295 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2296 color_symbols = evaluate_xpm_color_symbols ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2297 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2298 alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2299 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2300
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2301 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2302 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2303 free_alist (alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2304 RETURN_UNGCPRO (result);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2305 }
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2306 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2307
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2308 static int
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2309 xpm_possible_dest_types (void)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2310 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2311 return
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2312 IMAGE_MONO_PIXMAP_MASK |
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2313 IMAGE_COLOR_PIXMAP_MASK |
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2314 IMAGE_POINTER_MASK;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2315 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2316
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2317 #endif /* HAVE_XPM */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2318
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2319
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 * Image Specifier Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 DEFINE_SPECIFIER_TYPE (image);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 image_create (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2329 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2337 image_mark (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2339 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2340
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2341 markobj (IMAGE_SPECIFIER_ATTACHEE (image));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2342 markobj (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 image_instantiate_cache_result (Lisp_Object locative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2348 /* locative = (instance instantiator . subtable) */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2349 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 free_cons (XCONS (XCDR (locative)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 free_cons (XCONS (locative));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 /* Given a specification for an image, return an instance of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 the image which matches the given instantiator and which can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 displayed in the given domain. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 Lisp_Object domain, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 Lisp_Object depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2364 Lisp_Object device = DFW_DEVICE (domain);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2365 struct device *d = XDEVICE (device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 if (IMAGE_INSTANCEP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2371 /* make sure that the image instance's device and type are
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 matching. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2373
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2374 if (EQ (device, XIMAGE_INSTANCE_DEVICE (instantiator)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 int mask =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 if (mask & dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 return instantiator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 signal_simple_error ("Type of image instance not allowed here",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2385 signal_simple_error_2 ("Wrong device for image instance",
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2386 instantiator, device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 else if (VECTORP (instantiator)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2389 && EQ (XVECTOR_DATA (instantiator)[0], Qinherit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2391 assert (XVECTOR_LENGTH (instantiator) == 3);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 return (FACE_PROPERTY_INSTANCE
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2393 (Fget_face (XVECTOR_DATA (instantiator)[2]),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 Qbackground_pixmap, domain, 0, depth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2398 Lisp_Object instance;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2399 Lisp_Object subtable;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 Lisp_Object ls3 = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 Lisp_Object pointer_fg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 Lisp_Object pointer_bg = Qnil;
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2403
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 if (pointerp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 ls3 = list3 (instantiator, pointer_fg, pointer_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2411 /* First look in the hash table. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2412 subtable = Fgethash (make_int (dest_mask), d->image_instance_cache,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2413 Qunbound);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2414 if (UNBOUNDP (subtable))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2416 /* For the image instance cache, we do comparisons with EQ rather
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2417 than with EQUAL, as we do for color and font names.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2418 The reasons are:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2419
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2420 1) pixmap data can be very long, and thus the hashing and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2421 comparing will take awhile.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2422 2) It's not so likely that we'll run into things that are EQUAL
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2423 but not EQ (that can happen a lot with faces, because their
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2424 specifiers are copied around); but pixmaps tend not to be
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2425 in faces.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2426
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2427 However, if the image-instance could be a pointer, we have to
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2428 use EQUAL because we massaged the instantiator into a cons3
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2429 also containing the foreground and background of the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2430 pointer face.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2431 */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2432
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2433 subtable = make_lisp_hash_table (20,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2434 pointerp ? HASH_TABLE_KEY_CAR_WEAK
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2435 : HASH_TABLE_KEY_WEAK,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2436 pointerp ? HASH_TABLE_EQUAL
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2437 : HASH_TABLE_EQ);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2438 Fputhash (make_int (dest_mask), subtable,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2439 d->image_instance_cache);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2440 instance = Qunbound;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2441 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2442 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2443 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2444 instance = Fgethash (pointerp ? ls3 : instantiator,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2445 subtable, Qunbound);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2446 /* subwindows have a per-window cache and have to be treated
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2447 differently. dest_mask can be a bitwise OR of all image
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2448 types so we will only catch someone possibly trying to
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2449 instantiate a subwindow type thing. Unfortunately, this
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2450 will occur most of the time so this probably slows things
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2451 down. But with the current design I don't see anyway
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2452 round it. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2453 if (UNBOUNDP (instance)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2454 &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2455 dest_mask & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2456 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2457 if (!WINDOWP (domain))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2458 signal_simple_error ("Can't instantiate subwindow outside a window",
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2459 instantiator);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2460 instance = Fgethash (instantiator,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2461 XWINDOW (domain)->subwindow_instance_cache,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2462 Qunbound);
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2463 }
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2464 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2465
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 if (UNBOUNDP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 Lisp_Object locative =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 noseeum_cons (Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 noseeum_cons (pointerp ? ls3 : instantiator,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2471 subtable));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 int speccount = specpdl_depth ();
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2473
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2474 /* make sure we cache the failures, too.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2475 Use an unwind-protect to catch such errors.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2476 If we fail, the unwind-protect records nil in
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2477 the hash table. If we succeed, we change the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2478 car of the locative to the resulting instance,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2479 which gets recorded instead. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 record_unwind_protect (image_instantiate_cache_result,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 locative);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2482 instance = instantiate_image_instantiator (device,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2483 domain,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2484 instantiator,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2485 pointer_fg, pointer_bg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2486 dest_mask);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2487
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 Fsetcar (locative, instance);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2489 /* only after the image has been instantiated do we know
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2490 whether we need to put it in the per-window image instance
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2491 cache. */
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2492 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2493 &
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2494 (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2495 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2496 if (!WINDOWP (domain))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2497 signal_simple_error ("Can't instantiate subwindow outside a window",
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2498 instantiator);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2499
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2500 Fsetcdr (XCDR (locative), XWINDOW (domain)->subwindow_instance_cache );
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2501 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 free_list (ls3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 if (NILP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 signal_simple_error ("Can't instantiate image (probably cached)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 instantiator);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2510 return instance;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 /* Validate an image instantiator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 image_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 else if (VECTORP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2526 Lisp_Object *elt = XVECTOR_DATA (instantiator);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2527 int instantiator_len = XVECTOR_LENGTH (instantiator);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 struct image_instantiator_methods *meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 Lisp_Object already_seen = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 if (instantiator_len < 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 signal_simple_error ("Vector length must be at least 1",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 if (!(instantiator_len & 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 ("Must have alternating keyword/value pairs", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 GCPRO1 (already_seen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 for (i = 1; i < instantiator_len; i += 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 Lisp_Object keyword = elt[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 Lisp_Object value = elt[i+1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 int j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 CHECK_SYMBOL (keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 if (!SYMBOL_IS_KEYWORD (keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 signal_simple_error ("Symbol must begin with a colon", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 for (j = 0; j < Dynarr_length (meths->keywords); j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 if (j == Dynarr_length (meths->keywords))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 signal_simple_error ("Unrecognized keyword", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 if (!Dynarr_at (meths->keywords, j).multiple_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 if (!NILP (memq_no_quit (keyword, already_seen)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 ("Keyword may not appear more than once", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 already_seen = Fcons (keyword, already_seen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 (Dynarr_at (meths->keywords, j).validate) (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 signal_simple_error ("Must be string or vector", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 image_after_change (Lisp_Object specifier, Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 Lisp_Object attachee =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 Lisp_Object property =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 if (FACEP (attachee))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 face_property_was_changed (attachee, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 else if (GLYPHP (attachee))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 glyph_property_was_changed (attachee, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2597 struct Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 Lisp_Object tag_set, Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 Lisp_Object possible_console_types = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 Lisp_Object retlist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 LIST_LOOP (rest, Vconsole_type_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 Lisp_Object contype = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 if (!NILP (memq_no_quit (contype, tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 possible_console_types = Fcons (contype, possible_console_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 if (XINT (Flength (possible_console_types)) > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 /* two conflicting console types specified */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 if (NILP (possible_console_types))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 possible_console_types = Vconsole_type_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 GCPRO2 (retlist, possible_console_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 LIST_LOOP (rest, possible_console_types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 Lisp_Object contype = XCAR (rest);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2631 Lisp_Object newinst = call_with_suspended_errors
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2632 ((lisp_fn_t) normalize_image_instantiator,
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2633 Qnil, Qimage, ERROR_ME_NOT, 3, instantiator, contype,
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2634 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
2635
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 if (!NILP (newinst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 Lisp_Object newtag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 if (NILP (memq_no_quit (contype, tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 newtag = Fcons (contype, tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 newtag = tag_set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 retlist = Fcons (Fcons (newtag, newinst), retlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 return retlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2652 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 Return non-nil if OBJECT is an image specifier.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2654
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2655 An image specifier is used for images (pixmaps and the like). It is used
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2656 to describe the actual image in a glyph. It is instanced as an image-
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2657 instance.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2658
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2659 Image instantiators come in many formats: `xbm', `xpm', `gif', `jpeg',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2660 etc. This describes the format of the data describing the image. The
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2661 resulting image instances also come in many types -- `mono-pixmap',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2662 `color-pixmap', `text', `pointer', etc. This refers to the behavior of
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2663 the image and the sorts of places it can appear. (For example, a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2664 color-pixmap image has fixed colors specified for it, while a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2665 mono-pixmap image comes in two unspecified shades "foreground" and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2666 "background" that are determined from the face of the glyph or
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2667 surrounding text; a text image appears as a string of text and has an
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2668 unspecified foreground, background, and font; a pointer image behaves
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2669 like a mono-pixmap image but can only be used as a mouse pointer
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2670 \[mono-pixmap images cannot be used as mouse pointers]; etc.) It is
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2671 important to keep the distinction between image instantiator format and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2672 image instance type in mind. Typically, a given image instantiator
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2673 format can result in many different image instance types (for example,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2674 `xpm' can be instanced as `color-pixmap', `mono-pixmap', or `pointer';
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2675 whereas `cursor-font' can be instanced only as `pointer'), and a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2676 particular image instance type can be generated by many different
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2677 image instantiator formats (e.g. `color-pixmap' can be generated by `xpm',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2678 `gif', `jpeg', etc.).
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2679
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2680 See `make-image-instance' for a more detailed discussion of image
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2681 instance types.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2682
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2683 An image instantiator should be a string or a vector of the form
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2684
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2685 [FORMAT :KEYWORD VALUE ...]
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2686
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2687 i.e. a format symbol followed by zero or more alternating keyword-value
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2688 pairs. FORMAT should be one of
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2689
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2690 'nothing
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2691 (Don't display anything; no keywords are valid for this.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2692 Can only be instanced as `nothing'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2693 'string
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2694 (Display this image as a text string. Can only be instanced
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2695 as `text', although support for instancing as `mono-pixmap'
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2696 should be added.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2697 'formatted-string
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2698 (Display this image as a text string, with replaceable fields;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2699 not currently implemented.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2700 'xbm
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2701 (An X bitmap; only if X or Windows support was compiled into this XEmacs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2702 Can be instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2703 'xpm
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2704 (An XPM pixmap; only if XPM support was compiled into this XEmacs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2705 Can be instanced as `color-pixmap', `mono-pixmap', or `pointer'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2706 'xface
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2707 (An X-Face bitmap, used to encode people's faces in e-mail messages;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2708 only if X-Face support was compiled into this XEmacs. Can be
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2709 instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2710 'gif
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2711 (A GIF87 or GIF89 image; only if GIF support was compiled into this
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2712 XEmacs. NOTE: only the first frame of animated gifs will be displayed.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2713 Can be instanced as `color-pixmap'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2714 'jpeg
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2715 (A JPEG image; only if JPEG support was compiled into this XEmacs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2716 Can be instanced as `color-pixmap'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2717 'png
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2718 (A PNG image; only if PNG support was compiled into this XEmacs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2719 Can be instanced as `color-pixmap'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2720 'tiff
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2721 (A TIFF image; only if TIFF support was compiled into this XEmacs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2722 Can be instanced as `color-pixmap'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2723 'cursor-font
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2724 (One of the standard cursor-font names, such as "watch" or
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2725 "right_ptr" under X. Under X, this is, more specifically, any
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2726 of the standard cursor names from appendix B of the Xlib manual
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2727 [also known as the file <X11/cursorfont.h>] minus the XC_ prefix.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2728 On other window systems, the valid names will be specific to the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2729 type of window system. Can only be instanced as `pointer'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2730 'font
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2731 (A glyph from a font; i.e. the name of a font, and glyph index into it
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2732 of the form "FONT fontname index [[mask-font] mask-index]".
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2733 Currently can only be instanced as `pointer', although this should
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2734 probably be fixed.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2735 'subwindow
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2736 (An embedded X window; not currently implemented.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2737 'widget
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2738 (A widget control, for instance text field or radio button.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2739 'autodetect
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2740 (XEmacs tries to guess what format the data is in. If X support
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2741 exists, the data string will be checked to see if it names a filename.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2742 If so, and this filename contains XBM or XPM data, the appropriate
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2743 sort of pixmap or pointer will be created. [This includes picking up
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2744 any specified hotspot or associated mask file.] Otherwise, if `pointer'
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2745 is one of the allowable image-instance types and the string names a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2746 valid cursor-font name, the image will be created as a pointer.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2747 Otherwise, the image will be displayed as text. If no X support
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2748 exists, the image will always be displayed as text.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2749 'inherit
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2750 Inherit from the background-pixmap property of a face.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2751
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2752 The valid keywords are:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2753
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2754 :data
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2755 (Inline data. For most formats above, this should be a string. For
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2756 XBM images, this should be a list of three elements: width, height, and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2757 a string of bit data. This keyword is not valid for instantiator
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2758 formats `nothing' and `inherit'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2759 :file
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2760 (Data is contained in a file. The value is the name of this file.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2761 If both :data and :file are specified, the image is created from
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2762 what is specified in :data and the string in :file becomes the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2763 value of the `image-instance-file-name' function when applied to
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2764 the resulting image-instance. This keyword is not valid for
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2765 instantiator formats `nothing', `string', `formatted-string',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2766 `cursor-font', `font', `autodetect', and `inherit'.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2767 :foreground
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2768 :background
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2769 (For `xbm', `xface', `cursor-font', `widget' and `font'. These keywords
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2770 allow you to explicitly specify foreground and background colors.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2771 The argument should be anything acceptable to `make-color-instance'.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2772 This will cause what would be a `mono-pixmap' to instead be colorized
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2773 as a two-color color-pixmap, and specifies the foreground and/or
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2774 background colors for a pointer instead of black and white.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2775 :mask-data
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2776 (For `xbm' and `xface'. This specifies a mask to be used with the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2777 bitmap. The format is a list of width, height, and bits, like for
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2778 :data.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2779 :mask-file
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2780 (For `xbm' and `xface'. This specifies a file containing the mask data.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2781 If neither a mask file nor inline mask data is given for an XBM image,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2782 and the XBM image comes from a file, XEmacs will look for a mask file
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2783 with the same name as the image file but with "Mask" or "msk"
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2784 appended. For example, if you specify the XBM file "left_ptr"
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2785 [usually located in "/usr/include/X11/bitmaps"], the associated
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2786 mask file "left_ptrmsk" will automatically be picked up.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2787 :hotspot-x
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2788 :hotspot-y
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2789 (For `xbm' and `xface'. These keywords specify a hotspot if the image
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2790 is instantiated as a `pointer'. Note that if the XBM image file
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2791 specifies a hotspot, it will automatically be picked up if no
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2792 explicit hotspot is given.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2793 :color-symbols
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2794 (Only for `xpm'. This specifies an alist that maps strings
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2795 that specify symbolic color names to the actual color to be used
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2796 for that symbolic color (in the form of a string or a color-specifier
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2797 object). If this is not specified, the contents of `xpm-color-symbols'
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2798 are used to generate the alist.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2799 :face
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2800 (Only for `inherit'. This specifies the face to inherit from.)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2801
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2802 If instead of a vector, the instantiator is a string, it will be
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2803 converted into a vector by looking it up according to the specs in the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2804 `console-type-image-conversion-list' (q.v.) for the console type of
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2805 the domain (usually a window; sometimes a frame or device) over which
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2806 the image is being instantiated.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2807
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2808 If the instantiator specifies data from a file, the data will be read
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2809 in at the time that the instantiator is added to the image (which may
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2810 be well before when the image is actually displayed), and the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2811 instantiator will be converted into one of the inline-data forms, with
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2812 the filename retained using a :file keyword. This implies that the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2813 file must exist when the instantiator is added to the image, but does
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2814 not need to exist at any other time (e.g. it may safely be a temporary
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2815 file).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2816 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2817 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2819 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 * Glyph Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2828 mark_glyph (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2830 struct Lisp_Glyph *glyph = XGLYPH (obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2831
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2832 markobj (glyph->image);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2833 markobj (glyph->contrib_p);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2834 markobj (glyph->baseline);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2835 markobj (glyph->face);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2837 return glyph->plist;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2843 struct Lisp_Glyph *glyph = XGLYPH (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 char buf[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 error ("printing unreadable object #<glyph 0x%x>", glyph->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 write_c_string ("#<glyph (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 print_internal (Fglyph_type (obj), printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 write_c_string (") ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 print_internal (glyph->image, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 sprintf (buf, "0x%x>", glyph->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 /* Glyphs are equal if all of their display attributes are equal. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 don't compare names or doc-strings, because that would make equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 be eq.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 This isn't concerned with "unspecified" attributes, that's what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 #'glyph-differs-from-default-p is for. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2864 glyph_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2866 struct Lisp_Glyph *g1 = XGLYPH (obj1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2867 struct Lisp_Glyph *g2 = XGLYPH (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 depth++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2871 return (internal_equal (g1->image, g2->image, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2872 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2873 internal_equal (g1->baseline, g2->baseline, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2874 internal_equal (g1->face, g2->face, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2875 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 glyph_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 depth++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 /* No need to hash all of the elements; that would take too long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 Just hash the most common ones. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2885 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2886 internal_hash (XGLYPH (obj)->face, depth));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2892 struct Lisp_Glyph *g = XGLYPH (obj);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2893
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2894 if (EQ (prop, Qimage)) return g->image;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2895 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2896 if (EQ (prop, Qbaseline)) return g->baseline;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2897 if (EQ (prop, Qface)) return g->face;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2905 if ((EQ (prop, Qimage)) ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2906 (EQ (prop, Qcontrib_p)) ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2907 (EQ (prop, Qbaseline)))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2908 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 if (EQ (prop, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2912 XGLYPH (obj)->face = Fget_face (value);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2916 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2923 if ((EQ (prop, Qimage)) ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2924 (EQ (prop, Qcontrib_p)) ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2925 (EQ (prop, Qbaseline)))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2926 return -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 if (EQ (prop, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2930 XGLYPH (obj)->face = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2934 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 glyph_plist (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2940 struct Lisp_Glyph *glyph = XGLYPH (obj);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2941 Lisp_Object result = glyph->plist;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2942
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2943 result = cons3 (Qface, glyph->face, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2944 result = cons3 (Qbaseline, glyph->baseline, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2945 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2946 result = cons3 (Qimage, glyph->image, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2947
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2948 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2951 static const struct lrecord_description glyph_description[] = {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2952 { XD_LISP_OBJECT, offsetof(struct Lisp_Glyph, image), 5 },
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2953 { XD_END }
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2954 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2955
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2956 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2957 mark_glyph, print_glyph, 0,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2958 glyph_equal, glyph_hash, glyph_description,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2959 glyph_getprop, glyph_putprop,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2960 glyph_remprop, glyph_plist,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2961 struct Lisp_Glyph);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2962
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 allocate_glyph (enum glyph_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 Lisp_Object locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2968 /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 Lisp_Object obj = Qnil;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2970 struct Lisp_Glyph *g =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2971 alloc_lcrecord_type (struct Lisp_Glyph, &lrecord_glyph);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2972
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 g->type = type;
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2974 g->image = Fmake_specifier (Qimage); /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 switch (g->type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 case GLYPH_BUFFER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 XIMAGE_SPECIFIER_ALLOWED (g->image) =
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2979 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2980 | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2981 | IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 case GLYPH_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 XIMAGE_SPECIFIER_ALLOWED (g->image) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 case GLYPH_ICON:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 XIMAGE_SPECIFIER_ALLOWED (g->image) =
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2989 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2995 /* I think Fmake_specifier can GC. I think set_specifier_fallback can GC. */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2996 /* We're getting enough reports of odd behavior in this area it seems */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2997 /* best to GCPRO everything. */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2998 {
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
2999 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3000 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3001 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3002 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3003
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3004 GCPRO4 (obj, tem1, tem2, tem3);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3005
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3006 set_specifier_fallback (g->image, tem1);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3007 g->contrib_p = Fmake_specifier (Qboolean);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3008 set_specifier_fallback (g->contrib_p, tem2);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3009 /* #### should have a specifier for the following */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3010 g->baseline = Fmake_specifier (Qgeneric);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3011 set_specifier_fallback (g->baseline, tem3);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3012 g->face = Qnil;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3013 g->plist = Qnil;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3014 g->after_change = after_change;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3015 XSETGLYPH (obj, g);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3016
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3017 set_image_attached_to (g->image, obj, Qimage);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3018 UNGCPRO;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3019 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 return obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 static enum glyph_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 decode_glyph_type (Lisp_Object type, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 if (NILP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 return GLYPH_BUFFER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3033 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3034 if (EQ (type, Qpointer)) return GLYPH_POINTER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3035 if (EQ (type, Qicon)) return GLYPH_ICON;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 maybe_signal_simple_error ("Invalid glyph type", type, Qimage, errb);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3038
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 return GLYPH_UNKNOWN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 valid_glyph_type_p (Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3045 return !NILP (memq_no_quit (type, Vglyph_type_list));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3048 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 Given a GLYPH-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 Valid types are `buffer', `pointer', and `icon'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3051 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3052 (glyph_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3054 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3057 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 Return a list of valid glyph types.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3059 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3060 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 return Fcopy_sequence (Vglyph_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3065 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3066 Create and return a new uninitialized glyph or type TYPE.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 TYPE specifies the type of the glyph; this should be one of `buffer',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 specifies in which contexts the glyph can be used, and controls the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 allowable image types into which the glyph's image can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 instantiated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 `buffer' glyphs can be used as the begin-glyph or end-glyph of an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 extent, in the modeline, and in the toolbar. Their image can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 and `subwindow'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 `pointer' glyphs can be used to specify the mouse pointer. Their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 image can be instantiated as `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 `icon' glyphs can be used to specify the icon used when a frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 iconified. Their image can be instantiated as `mono-pixmap' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 `color-pixmap'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3085 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3086 (type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 return allocate_glyph (typeval, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3092 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 Return non-nil if OBJECT is a glyph.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3095 A glyph is an object used for pixmaps and the like. It is used
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3098 buttons, and the like. Its image is described using an image specifier --
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3099 see `image-specifier-p'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3100 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3101 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 return GLYPHP (object) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3106 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 Return the type of the given glyph.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 The return value will be one of 'buffer, 'pointer, or 'icon.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3109 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3110 (glyph))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 switch (XGLYPH_TYPE (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3115 default: abort ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3116 case GLYPH_BUFFER: return Qbuffer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3117 case GLYPH_POINTER: return Qpointer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3118 case GLYPH_ICON: return Qicon;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 glyph_width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3125 Return the width of the given GLYPH on the given WINDOW. If the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3126 instance is a string then the width is calculated using the font of
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3127 the given FACE, unless a face is defined by the glyph itself.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 unsigned short
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3130 glyph_width (Lisp_Object glyph, Lisp_Object frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3131 face_index window_findex, Lisp_Object window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3133 Lisp_Object instance;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3134 Lisp_Object frame = XWINDOW (window)->frame;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3135
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3136 /* #### We somehow need to distinguish between the user causing this
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3137 error condition and a bug causing it. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3138 if (!GLYPHP (glyph))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3139 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3140 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3141 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3142
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 if (!IMAGE_INSTANCEP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3146 switch (XIMAGE_INSTANCE_TYPE (instance))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3147 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3148 case IMAGE_TEXT:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3149 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3150 Lisp_Object str = XIMAGE_INSTANCE_TEXT_STRING (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3151 Lisp_Object private_face = XGLYPH_FACE(glyph);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3152
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3153 if (!NILP (private_face))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3154 return redisplay_frame_text_width_string (XFRAME (frame),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3155 private_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3156 0, str, 0, -1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3157 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3158 if (!NILP (frame_face))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3159 return redisplay_frame_text_width_string (XFRAME (frame),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3160 frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3161 0, str, 0, -1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3162 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3163 return redisplay_text_width_string (XWINDOW (window),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3164 window_findex,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3165 0, str, 0, -1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3166 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3167
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3168 case IMAGE_MONO_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3169 case IMAGE_COLOR_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3170 case IMAGE_POINTER:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3171 return XIMAGE_INSTANCE_PIXMAP_WIDTH (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3172
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3173 case IMAGE_NOTHING:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3174 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3175
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3176 case IMAGE_SUBWINDOW:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3177 case IMAGE_WIDGET:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3178 return XIMAGE_INSTANCE_SUBWINDOW_WIDTH (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3179
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3180 default:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3181 abort ();
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3182 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3183 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3186 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 Return the width of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 This may not be exact as it does not take into account all of the context
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3190 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3191 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3196 return make_int (glyph_width (glyph, Qnil, DEFAULT_INDEX, window));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3197 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3198
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3199 #define RETURN_ASCENT 0
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3200 #define RETURN_DESCENT 1
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3201 #define RETURN_HEIGHT 2
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3202
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3203 Lisp_Object
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3204 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3205 Error_behavior errb, int no_quit)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3206 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3207 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3208
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3209 /* This can never return Qunbound. All glyphs have 'nothing as
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3210 a fallback. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3211 return specifier_instance (specifier, Qunbound, domain, errb, no_quit, 0,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3212 Qzero);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3213 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3214
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3215 static unsigned short
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3216 glyph_height_internal (Lisp_Object glyph, Lisp_Object frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3217 face_index window_findex, Lisp_Object window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3218 int function)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3219 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3220 Lisp_Object instance;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3221 Lisp_Object frame = XWINDOW (window)->frame;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3222
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3223 if (!GLYPHP (glyph))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3224 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3225 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3226 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3227
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3228 if (!IMAGE_INSTANCEP (instance))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3229 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3230
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3231 switch (XIMAGE_INSTANCE_TYPE (instance))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3232 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3233 case IMAGE_TEXT:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3234 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3235 struct font_metric_info fm;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3236 Lisp_Object string = XIMAGE_INSTANCE_TEXT_STRING (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3237 unsigned char charsets[NUM_LEADING_BYTES];
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3238 struct face_cachel frame_cachel;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3239 struct face_cachel *cachel;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3240
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3241 find_charsets_in_bufbyte_string (charsets,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3242 XSTRING_DATA (string),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3243 XSTRING_LENGTH (string));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3244
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3245 if (!NILP (frame_face))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3246 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3247 reset_face_cachel (&frame_cachel);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3248 update_face_cachel_data (&frame_cachel, frame, frame_face);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3249 cachel = &frame_cachel;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3250 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3251 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3252 cachel = WINDOW_FACE_CACHEL (XWINDOW (window), window_findex);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3253 ensure_face_cachel_complete (cachel, window, charsets);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3254
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3255 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3256
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3257 switch (function)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3258 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3259 case RETURN_ASCENT: return fm.ascent;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3260 case RETURN_DESCENT: return fm.descent;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3261 case RETURN_HEIGHT: return fm.ascent + fm.descent;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3262 default:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3263 abort ();
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3264 return 0; /* not reached */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3265 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3266 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3267
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3268 case IMAGE_MONO_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3269 case IMAGE_COLOR_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3270 case IMAGE_POINTER:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3271 /* #### Ugh ugh ugh -- temporary crap */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3272 if (function == RETURN_ASCENT || function == RETURN_HEIGHT)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3273 return XIMAGE_INSTANCE_PIXMAP_HEIGHT (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3274 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3275 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3276
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3277 case IMAGE_NOTHING:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3278 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3279
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3280 case IMAGE_SUBWINDOW:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3281 case IMAGE_WIDGET:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3282 /* #### Ugh ugh ugh -- temporary crap */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3283 if (function == RETURN_ASCENT || function == RETURN_HEIGHT)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3284 return XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3285 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3286 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3287
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3288 default:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3289 abort ();
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3290 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3291 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 unsigned short
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3295 glyph_ascent (Lisp_Object glyph, Lisp_Object frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3296 face_index window_findex, Lisp_Object window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3298 return glyph_height_internal (glyph, frame_face, window_findex, window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3299 RETURN_ASCENT);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 unsigned short
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3303 glyph_descent (Lisp_Object glyph, Lisp_Object frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3304 face_index window_findex, Lisp_Object window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3306 return glyph_height_internal (glyph, frame_face, window_findex, window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3307 RETURN_DESCENT);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 /* strictly a convenience function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 unsigned short
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3312 glyph_height (Lisp_Object glyph, Lisp_Object frame_face,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3313 face_index window_findex, Lisp_Object window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3315 return glyph_height_internal (glyph, frame_face, window_findex, window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3316 RETURN_HEIGHT);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3319 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 Return the ascent value of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 This may not be exact as it does not take into account all of the context
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3323 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3324 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3329 return make_int (glyph_ascent (glyph, Qnil, DEFAULT_INDEX, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3332 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 Return the descent value of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 This may not be exact as it does not take into account all of the context
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3336 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3337 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3342 return make_int (glyph_descent (glyph, Qnil, DEFAULT_INDEX, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 /* This is redundant but I bet a lot of people expect it to exist. */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3346 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 Return the height of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 This may not be exact as it does not take into account all of the context
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3350 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3351 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3356 return make_int (glyph_height (glyph, Qnil, DEFAULT_INDEX, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3359 #undef RETURN_ASCENT
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3360 #undef RETURN_DESCENT
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3361 #undef RETURN_HEIGHT
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 /* #### do we need to cache this info to speed things up? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 if (!GLYPHP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 Lisp_Object retval =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 /* #### look into ERROR_ME_NOT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 Qunbound, domain, ERROR_ME_NOT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 0, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 if (!NILP (retval) && !INTP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 else if (INTP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 if (XINT (retval) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 retval = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 if (XINT (retval) > 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 retval = make_int (100);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 glyph_face (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 /* #### Domain parameter not currently used but it will be */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3394 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 if (!GLYPHP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3403 return !NILP (specifier_instance_no_quit
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3404 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3405 /* #### look into ERROR_ME_NOT */
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3406 ERROR_ME_NOT, 0, Qzero));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 if (XGLYPH (glyph)->after_change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 (XGLYPH (glyph)->after_change) (glyph, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 * glyph cachel functions *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3422 /*
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3423 #### All of this is 95% copied from face cachels.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3424 Consider consolidating.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3425 #### We need to add a dirty flag to the glyphs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3426 */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3427
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3429 mark_glyph_cachels (glyph_cachel_dynarr *elements,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3430 void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 if (!elements)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 for (elt = 0; elt < Dynarr_length (elements); elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3440 markobj (cachel->glyph);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 struct glyph_cachel *cachel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3448 /* #### This should be || !cachel->updated */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3449 if (NILP (cachel->glyph) || !EQ (cachel->glyph, glyph))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3451 Lisp_Object window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3455 /* #### This could be sped up if we redid things to grab the glyph
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3456 instantiation and passed it to the size functions. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3457 cachel->glyph = glyph;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3458 cachel->width = glyph_width (glyph, Qnil, DEFAULT_INDEX, window);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3459 cachel->ascent = glyph_ascent (glyph, Qnil, DEFAULT_INDEX, window);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3460 cachel->descent = glyph_descent (glyph, Qnil, DEFAULT_INDEX, window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 cachel->updated = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 add_glyph_cachel (struct window *w, Lisp_Object glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469 struct glyph_cachel new_cachel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3471 xzero (new_cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 new_cachel.glyph = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 update_glyph_cachel_data (w, glyph, &new_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 Dynarr_add (w->glyph_cachels, new_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3478 static glyph_index
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 if (noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 struct glyph_cachel *cachel =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 Dynarr_atp (w->glyph_cachels, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3493 if (!cachel->updated)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3494 update_glyph_cachel_data (w, glyph, cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 /* If we didn't find the glyph, add it and then return its index. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 add_glyph_cachel (w, glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 reset_glyph_cachels (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 Dynarr_reset (w->glyph_cachels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 get_glyph_cachel_index (w, Vcontinuation_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 get_glyph_cachel_index (w, Vtruncation_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 get_glyph_cachel_index (w, Vhscroll_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 get_glyph_cachel_index (w, Voctal_escape_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 get_glyph_cachel_index (w, Vinvisible_text_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 mark_glyph_cachels_as_not_updated (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 /* We need to have a dirty flag to tell if the glyph has changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 We can check to see if each glyph variable is actually a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 completely different glyph, though. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 #define FROB(glyph_obj, gindex) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 update_glyph_cachel_data (w, glyph_obj, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 Dynarr_atp (w->glyph_cachels, gindex))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 #undef FROB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3537 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 int total = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 if (glyph_cachels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 total += Dynarr_memory_usage (glyph_cachels, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 return total;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3556
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3557
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3558 /*****************************************************************************
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3559 * subwindow cachel functions *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3560 *****************************************************************************/
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3561 /* subwindows are curious in that you have to physically unmap them to
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3562 not display them. It is problematic deciding what to do in
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3563 redisplay. We have two caches - a per-window instance cache that
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3564 keeps track of subwindows on a window, these are linked to their
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3565 instantiator in the hashtable and when the instantiator goes away
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3566 we want the instance to go away also. However we also have a
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3567 per-frame instance cache that we use to determine if a subwindow is
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3568 obscuring an area that we want to clear. We need to be able to flip
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3569 through this quickly so a hashtable is not suitable hence the
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3570 subwindow_cachels. The question is should we just not mark
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3571 instances in the subwindow_cachelsnor should we try and invalidate
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3572 the cache at suitable points in redisplay? If we don't invalidate
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3573 the cache it will fill up with crud that will only get removed when
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3574 the frame is deleted. So invalidation is good, the question is when
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3575 and whether we mark as well. Go for the simple option - don't mark,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3576 MARK_SUBWINDOWS_CHANGED when a subwindow gets deleted. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3577
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3578 void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3579 mark_subwindow_cachels (subwindow_cachel_dynarr *elements,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3580 void (*markobj) (Lisp_Object))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3581 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3582 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3583
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3584 if (!elements)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3585 return;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3586
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3587 for (elt = 0; elt < Dynarr_length (elements); elt++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3588 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3589 struct subwindow_cachel *cachel = Dynarr_atp (elements, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3590 markobj (cachel->subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3591 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3592 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3593
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3594 static void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3595 update_subwindow_cachel_data (struct frame *f, Lisp_Object subwindow,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3596 struct subwindow_cachel *cachel)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3597 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3598 if (NILP (cachel->subwindow) || !EQ (cachel->subwindow, subwindow))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3599 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3600 cachel->subwindow = subwindow;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3601 cachel->width = XIMAGE_INSTANCE_SUBWINDOW_WIDTH (subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3602 cachel->height = XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3603 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3604
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3605 cachel->updated = 1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3606 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3607
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3608 static void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3609 add_subwindow_cachel (struct frame *f, Lisp_Object subwindow)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3610 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3611 struct subwindow_cachel new_cachel;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3612
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3613 xzero (new_cachel);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3614 new_cachel.subwindow = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3615 new_cachel.x=0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3616 new_cachel.y=0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3617 new_cachel.being_displayed=0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3618
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3619 update_subwindow_cachel_data (f, subwindow, &new_cachel);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3620 Dynarr_add (f->subwindow_cachels, new_cachel);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3621 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3622
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3623 static int
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3624 get_subwindow_cachel_index (struct frame *f, Lisp_Object subwindow)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3625 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3626 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3627
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3628 if (noninteractive)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3629 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3630
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3631 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3632 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3633 struct subwindow_cachel *cachel =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3634 Dynarr_atp (f->subwindow_cachels, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3635
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3636 if (EQ (cachel->subwindow, subwindow) && !NILP (subwindow))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3637 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3638 if (!cachel->updated)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3639 update_subwindow_cachel_data (f, subwindow, cachel);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3640 return elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3641 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3642 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3643
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3644 /* If we didn't find the glyph, add it and then return its index. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3645 add_subwindow_cachel (f, subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3646 return elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3647 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3648
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
3649 /* redisplay in general assumes that drawing something will erase
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
3650 what was there before. unfortunately this does not apply to
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
3651 subwindows that need to be specifically unmapped in order to
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
3652 disappear. we take a brute force approach - on the basis that its
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
3653 cheap - and unmap all subwindows in a display line */
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3654 void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3655 reset_subwindow_cachels (struct frame *f)
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
3656 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3657 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3658 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3659 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3660 struct subwindow_cachel *cachel =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3661 Dynarr_atp (f->subwindow_cachels, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3662
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3663 if (!NILP (cachel->subwindow) && cachel->being_displayed)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3664 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3665 struct Lisp_Image_Instance* ii = XIMAGE_INSTANCE (cachel->subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3666 MAYBE_DEVMETH (XDEVICE (f->device), unmap_subwindow, (ii));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3667 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3668 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3669 Dynarr_reset (f->subwindow_cachels);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3670 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3671
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3672 void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3673 mark_subwindow_cachels_as_not_updated (struct frame *f)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3674 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3675 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3676
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3677 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3678 Dynarr_atp (f->subwindow_cachels, elt)->updated = 0;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3679 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3680
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3681
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3682 /*****************************************************************************
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3683 * subwindow functions *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3684 *****************************************************************************/
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3685
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3686 /* update the displayed characteristics of a subwindow */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3687 static void
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3688 update_subwindow (Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3689 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3690 struct Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3691
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3692 if (!IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3693 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3694 NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3695 return;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3696
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3697 MAYBE_DEVMETH (XDEVICE (ii->device), update_subwindow, (ii));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3698 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3699
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3700 void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3701 update_frame_subwindows (struct frame *f)
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
3702 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3703 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3704
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3705 if (f->subwindows_changed || f->glyphs_changed)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3706 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3707 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3708 struct subwindow_cachel *cachel =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3709 Dynarr_atp (f->subwindow_cachels, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3710
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3711 if (cachel->being_displayed)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3712 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3713 update_subwindow (cachel->subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3714 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3715 }
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3716 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3717
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3718 /* remove a subwindow from its frame */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3719 void unmap_subwindow (Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3720 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3721 struct Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3722 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3723 struct subwindow_cachel* cachel;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3724 struct frame* f;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3725
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3726 if (!(IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3727 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3728 IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3729 ||
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3730 NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3731 return;
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
3732
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3733 f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3734 elt = get_subwindow_cachel_index (f, subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3735 cachel = Dynarr_atp (f->subwindow_cachels, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3736
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3737 cachel->x = -1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3738 cachel->y = -1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3739 cachel->being_displayed = 0;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3740 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3741
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3742 MAYBE_DEVMETH (XDEVICE (ii->device), unmap_subwindow, (ii));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3743 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3744
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3745 /* show a subwindow in its frame */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3746 void map_subwindow (Lisp_Object subwindow, int x, int y)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3747 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3748 struct Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3749 int elt;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3750 struct subwindow_cachel* cachel;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3751 struct frame* f;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3752
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3753 if (!(IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3754 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3755 IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3756 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3757 NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3758 return;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3759
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3760 f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3761 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 1;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3762 elt = get_subwindow_cachel_index (f, subwindow);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3763 cachel = Dynarr_atp (f->subwindow_cachels, elt);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3764 cachel->x = x;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3765 cachel->y = y;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3766 cachel->being_displayed = 1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3767
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3768 MAYBE_DEVMETH (XDEVICE (ii->device), map_subwindow, (ii, x, y));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3769 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3770
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3771 static int
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3772 subwindow_possible_dest_types (void)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3773 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3774 return IMAGE_SUBWINDOW_MASK;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3775 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3776
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3777 /* Partially instantiate a subwindow. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3778 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3779 subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3780 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3781 int dest_mask, Lisp_Object domain)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3782 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3783 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3784 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3785 Lisp_Object frame = FW_FRAME (domain);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3786 Lisp_Object width = find_keyword_in_vector (instantiator, Q_pixel_width);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3787 Lisp_Object height = find_keyword_in_vector (instantiator, Q_pixel_height);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3788
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3789 if (NILP (frame))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3790 signal_simple_error ("No selected frame", device);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3791
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3792 if (!(dest_mask & IMAGE_SUBWINDOW_MASK))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3793 incompatible_image_types (instantiator, dest_mask, IMAGE_SUBWINDOW_MASK);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3794
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3795 ii->data = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3796 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = 0;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3797 IMAGE_INSTANCE_SUBWINDOW_FRAME (ii) = Qnil;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3798 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3799 IMAGE_INSTANCE_SUBWINDOW_FRAME (ii) = frame;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3800
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3801 /* this stuff may get overidden by the widget code */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3802 if (NILP (width))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3803 IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii) = 20;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3804 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3805 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3806 int w = 1;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3807 CHECK_INT (width);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3808 if (XINT (width) > 1)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3809 w = XINT (width);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3810 IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii) = w;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3811 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3812 if (NILP (height))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3813 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii) = 20;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3814 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3815 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3816 int h = 1;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3817 CHECK_INT (height);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3818 if (XINT (height) > 1)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3819 h = XINT (height);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3820 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii) = h;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3821 }
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
3822 }
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
3823
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3824 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3825 Return non-nil if OBJECT is a subwindow.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3826 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3827 (object))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3828 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3829 CHECK_IMAGE_INSTANCE (object);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3830 return (XIMAGE_INSTANCE_TYPE (object) == IMAGE_SUBWINDOW) ? Qt : Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3831 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3832
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3833 DEFUN ("image-instance-subwindow-id", Fimage_instance_subwindow_id, 1, 1, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3834 Return the window id of SUBWINDOW as a number.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3835 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3836 (subwindow))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3837 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3838 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3839 return make_int ((int) (XIMAGE_INSTANCE_SUBWINDOW_ID (subwindow)));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3840 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3841
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3842 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3843 Resize SUBWINDOW to WIDTH x HEIGHT.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3844 If a value is nil that parameter is not changed.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3845 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3846 (subwindow, width, height))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3847 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3848 int neww, newh;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3849
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3850 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3851
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3852 if (NILP (width))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3853 neww = XIMAGE_INSTANCE_SUBWINDOW_WIDTH (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3854 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3855 neww = XINT (width);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3856
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3857 if (NILP (height))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3858 newh = XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3859 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3860 newh = XINT (height);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3861
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3862
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3863 MAYBE_DEVMETH (XDEVICE (XIMAGE_INSTANCE_DEVICE (subwindow)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3864 resize_subwindow, (XIMAGE_INSTANCE (subwindow), neww, newh));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3865
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3866 XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (subwindow) = newh;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3867 XIMAGE_INSTANCE_SUBWINDOW_WIDTH (subwindow) = neww;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3868
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3869 return subwindow;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3870 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3871
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3872 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3873 Generate a Map event for SUBWINDOW.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3874 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3875 (subwindow))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3876 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3877 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3878
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3879 map_subwindow (subwindow, 0, 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3880
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3881 return subwindow;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3882 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3883
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 * display tables *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3889 /* Get the display tables for use currently on window W with face
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3890 FACE. #### This will have to be redone. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3891
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3892 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3893 get_display_tables (struct window *w, face_index findex,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3894 Lisp_Object *face_table, Lisp_Object *window_table)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3896 Lisp_Object tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3898 if (UNBOUNDP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3899 tem = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3900 if (!LISTP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3901 tem = noseeum_cons (tem, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3902 *face_table = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 tem = w->display_table;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3904 if (UNBOUNDP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3905 tem = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3906 if (!LISTP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3907 tem = noseeum_cons (tem, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3908 *window_table = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3911 Lisp_Object
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3912 display_table_entry (Emchar ch, Lisp_Object face_table,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3913 Lisp_Object window_table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3914 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3915 Lisp_Object tail;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3916
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3917 /* Loop over FACE_TABLE, and then over WINDOW_TABLE. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3918 for (tail = face_table; 1; tail = XCDR (tail))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3919 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3920 Lisp_Object table;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3921 if (NILP (tail))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3922 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3923 if (!NILP (window_table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3924 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3925 tail = window_table;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3926 window_table = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3927 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3928 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3929 return Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3930 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3931 table = XCAR (tail);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3932
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3933 if (VECTORP (table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3934 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3935 if (ch < XVECTOR_LENGTH (table) && !NILP (XVECTOR_DATA (table)[ch]))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3936 return XVECTOR_DATA (table)[ch];
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3937 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3938 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3939 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3940 else if (CHAR_TABLEP (table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3941 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3942 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3943 return get_char_table (ch, XCHAR_TABLE (table));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3944 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3945 else if (CHAR_TABLEP (table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3946 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3947 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3948 Lisp_Object gotit = get_char_table (ch, XCHAR_TABLE (table));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3949 if (!NILP (gotit))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3950 return gotit;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3951 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3952 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3953 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3954 else if (RANGE_TABLEP (table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3955 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3956 Lisp_Object gotit = Fget_range_table (make_char (ch), table, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3957 if (!NILP (gotit))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3958 return gotit;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3959 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3960 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3961 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3962 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3963 abort ();
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3964 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3965 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 * initialization *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 syms_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 /* image instantiators */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3976 DEFSUBR (Fimage_instantiator_format_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3977 DEFSUBR (Fvalid_image_instantiator_format_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3978 DEFSUBR (Fset_console_type_image_conversion_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3979 DEFSUBR (Fconsole_type_image_conversion_list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 defkeyword (&Q_file, ":file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 defkeyword (&Q_data, ":data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 defkeyword (&Q_face, ":face");
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3984 defkeyword (&Q_pixel_height, ":pixel-height");
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3985 defkeyword (&Q_pixel_width, ":pixel-width");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3987 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3988 defkeyword (&Q_color_symbols, ":color-symbols");
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3989 #endif
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3990 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3991 defkeyword (&Q_mask_file, ":mask-file");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3992 defkeyword (&Q_mask_data, ":mask-data");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3993 defkeyword (&Q_hotspot_x, ":hotspot-x");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3994 defkeyword (&Q_hotspot_y, ":hotspot-y");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3995 defkeyword (&Q_foreground, ":foreground");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3996 defkeyword (&Q_background, ":background");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
3997 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 /* image specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4000 DEFSUBR (Fimage_specifier_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 /* Qimage in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 /* image instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 defsymbol (&Qimage_instancep, "image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 defsymbol (&Qnothing_image_instance_p, "nothing-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 defsymbol (&Qtext_image_instance_p, "text-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 defsymbol (&Qmono_pixmap_image_instance_p, "mono-pixmap-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 defsymbol (&Qcolor_pixmap_image_instance_p, "color-pixmap-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 defsymbol (&Qpointer_image_instance_p, "pointer-image-instance-p");
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4012 defsymbol (&Qwidget_image_instance_p, "widget-image-instance-p");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 defsymbol (&Qsubwindow_image_instance_p, "subwindow-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4015 DEFSUBR (Fmake_image_instance);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4016 DEFSUBR (Fimage_instance_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4017 DEFSUBR (Fimage_instance_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4018 DEFSUBR (Fvalid_image_instance_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4019 DEFSUBR (Fimage_instance_type_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4020 DEFSUBR (Fimage_instance_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4021 DEFSUBR (Fimage_instance_string);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4022 DEFSUBR (Fimage_instance_file_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4023 DEFSUBR (Fimage_instance_mask_file_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4024 DEFSUBR (Fimage_instance_depth);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4025 DEFSUBR (Fimage_instance_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4026 DEFSUBR (Fimage_instance_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4027 DEFSUBR (Fimage_instance_hotspot_x);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4028 DEFSUBR (Fimage_instance_hotspot_y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4029 DEFSUBR (Fimage_instance_foreground);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4030 DEFSUBR (Fimage_instance_background);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4031 DEFSUBR (Fimage_instance_property);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4032 DEFSUBR (Fset_image_instance_property);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4033 DEFSUBR (Fcolorize_image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4034 /* subwindows */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4035 DEFSUBR (Fsubwindowp);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4036 DEFSUBR (Fimage_instance_subwindow_id);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4037 DEFSUBR (Fresize_subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4038 DEFSUBR (Fforce_subwindow_map);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 /* Qnothing defined as part of the "nothing" image-instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 /* Qtext defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 defsymbol (&Qmono_pixmap, "mono-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 defsymbol (&Qcolor_pixmap, "color-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 /* Qpointer defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 /* glyphs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 defsymbol (&Qglyphp, "glyphp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 defsymbol (&Qcontrib_p, "contrib-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 defsymbol (&Qbaseline, "baseline");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 defsymbol (&Qbuffer_glyph_p, "buffer-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 defsymbol (&Qpointer_glyph_p, "pointer-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 defsymbol (&Qicon_glyph_p, "icon-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 defsymbol (&Qconst_glyph_variable, "const-glyph-variable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4059 DEFSUBR (Fglyph_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4060 DEFSUBR (Fvalid_glyph_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4061 DEFSUBR (Fglyph_type_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4062 DEFSUBR (Fglyphp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4063 DEFSUBR (Fmake_glyph_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4064 DEFSUBR (Fglyph_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4065 DEFSUBR (Fglyph_ascent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4066 DEFSUBR (Fglyph_descent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4067 DEFSUBR (Fglyph_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 /* Qbuffer defined in general.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 /* Qpointer defined above */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4071
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4072 /* Errors */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4073 deferror (&Qimage_conversion_error,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4074 "image-conversion-error",
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4075 "image-conversion error", Qio_error);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4076
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 specifier_type_create_image (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 /* image specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 SPECIFIER_HAS_METHOD (image, create);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 SPECIFIER_HAS_METHOD (image, mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 SPECIFIER_HAS_METHOD (image, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 SPECIFIER_HAS_METHOD (image, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 SPECIFIER_HAS_METHOD (image, after_change);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 SPECIFIER_HAS_METHOD (image, going_to_add);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 image_instantiator_format_create (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 /* image instantiators */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 the_image_instantiator_format_entry_dynarr =
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4100 Dynarr_new (image_instantiator_format_entry);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 Vimage_instantiator_format_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 staticpro (&Vimage_instantiator_format_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 IIFORMAT_HAS_METHOD (nothing, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 IIFORMAT_HAS_METHOD (inherit, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 IIFORMAT_HAS_METHOD (inherit, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 IIFORMAT_HAS_METHOD (inherit, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 IIFORMAT_HAS_METHOD (string, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 IIFORMAT_HAS_METHOD (string, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 IIFORMAT_HAS_METHOD (string, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 IIFORMAT_HAS_METHOD (formatted_string, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4133
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4134 /* subwindows */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4135 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (subwindow, "subwindow");
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4136 IIFORMAT_HAS_METHOD (subwindow, possible_dest_types);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4137 IIFORMAT_HAS_METHOD (subwindow, instantiate);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4138 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_width, check_valid_int);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4139 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_height, check_valid_int);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4140
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4141 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4142 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4143
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4144 IIFORMAT_HAS_METHOD (xbm, validate);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4145 IIFORMAT_HAS_METHOD (xbm, normalize);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4146 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4147
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4148 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4149 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4150 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4151 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4152 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4153 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4154 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4155 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4156 #endif /* HAVE_WINDOW_SYSTEM */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4157
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4158 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4159 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4160
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4161 IIFORMAT_HAS_METHOD (xface, validate);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4162 IIFORMAT_HAS_METHOD (xface, normalize);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4163 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4164
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4165 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4166 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4167 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4168 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4169 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4170 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4171 #endif
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4172
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4173 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4174 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4175
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4176 IIFORMAT_HAS_METHOD (xpm, validate);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4177 IIFORMAT_HAS_METHOD (xpm, normalize);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4178 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4179
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4180 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4181 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4182 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
4183 #endif /* HAVE_XPM */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 Vthe_nothing_vector = vector1 (Qnothing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 staticpro (&Vthe_nothing_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 /* image instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4194 Vimage_instance_type_list = Fcons (Qnothing,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4195 list6 (Qtext, Qmono_pixmap, Qcolor_pixmap,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4196 Qpointer, Qsubwindow, Qwidget));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 staticpro (&Vimage_instance_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 /* glyphs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 staticpro (&Vglyph_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 /* The octal-escape glyph, control-arrow-glyph and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 invisible-text-glyph are completely initialized in glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 What to prefix character codes displayed in octal with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 What to use as an arrow for control characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 What to use to indicate the presence of invisible text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 This is the glyph that is displayed when an ellipsis is called for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4222 Normally this is three dots ("...").
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 /* Partially initialized in glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 What to display at the beginning of horizontally scrolled lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4232 #ifdef HAVE_WINDOW_SYSTEM
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4233 Fprovide (Qxbm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4234 #endif
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4235 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4236 Fprovide (Qxpm);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4237
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4238 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4239 Definitions of logical color-names used when reading XPM files.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4240 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4241 The COLOR-NAME should be a string, which is the name of the color to define;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4242 the FORM should evaluate to a `color' specifier object, or a string to be
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4243 passed to `make-color-instance'. If a loaded XPM file references a symbolic
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4244 color called COLOR-NAME, it will display as the computed color instead.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4245
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4246 The default value of this variable defines the logical color names
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4247 \"foreground\" and \"background\" to be the colors of the `default' face.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4248 */ );
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4249 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
4250 #endif /* HAVE_XPM */
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4251 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4252 Fprovide (Qxface);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4253 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 specifier_vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
4259 /* #### Can we GC here? The set_specifier_* calls definitely need */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
4260 /* protection. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 /* display tables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 *The display table currently in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 This is a specifier; use `set-specifier' to change it.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4266 The display table is a vector created with `make-display-table'.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4267 The 256 elements control how to display each possible text character.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4268 Each value should be a string, a glyph, a vector or nil.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4269 If a value is a vector it must be composed only of strings and glyphs.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4270 nil means display the character in the default fashion.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4271 Faces can have their own, overriding display table.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 */ );
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 84
diff changeset
4273 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 set_specifier_fallback (Vcurrent_display_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 list1 (Fcons (Qnil, Qnil)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 set_specifier_caching (Vcurrent_display_table,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4277 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4278 display_table),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 some_window_value_changed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 complex_vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 What to display at the end of truncated lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 What to display at the end of wrapped lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 The glyph used to display the XEmacs logo at startup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 }