annotate src/glyphs.c @ 406:b8cc9ab3f761 r21-2-33

Import from CVS: tag r21-2-33
author cvs
date Mon, 13 Aug 2007 11:17:09 +0200
parents 2f8bb876ab1d
children 501cfd01ee6d
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995 Sun Microsystems
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
6 Copyright (C) 1998, 1999, 2000 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
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
27 /* Written by Ben Wing and Chuck Thompson. Heavily modified /
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
28 rewritten by Andy Piper. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "frame.h"
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
38 #include "insdel.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
39 #include "opaque.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "objects.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "window.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
43 #include "frame.h"
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
44 #include "chartab.h"
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
45 #include "rangetab.h"
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
46 #include "blocktype.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
48 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
49 #include <X11/xpm.h>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
50 #endif
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
51
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
52 Lisp_Object Qimage_conversion_error;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
53
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object Qglyphp, Qcontrib_p, Qbaseline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Qbuffer_glyph_p, Qpointer_glyph_p, Qicon_glyph_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object Qnothing_image_instance_p, Qtext_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Lisp_Object Qmono_pixmap_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object Qcolor_pixmap_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object Qpointer_image_instance_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Lisp_Object Qsubwindow_image_instance_p;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
61 Lisp_Object Qlayout_image_instance_p;
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
62 Lisp_Object Qupdate_widget_instances;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
63 Lisp_Object Qwidget_image_instance_p;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object Qconst_glyph_variable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object Qmono_pixmap, Qcolor_pixmap, Qsubwindow;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
66 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
67 Lisp_Object Qformatted_string;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Lisp_Object Vcurrent_display_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Lisp_Object Vtruncation_glyph, Vcontinuation_glyph, Voctal_escape_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Lisp_Object Vcontrol_arrow_glyph, Vinvisible_text_glyph, Vhscroll_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Vxemacs_logo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Lisp_Object Vthe_nothing_vector;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
73 Lisp_Object Vimage_instantiator_format_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
74 Lisp_Object Vimage_instance_type_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
75 Lisp_Object Vglyph_type_list;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
76
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
77 int disable_animated_pixmaps;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
78
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 DEFINE_IMAGE_INSTANTIATOR_FORMAT (nothing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 DEFINE_IMAGE_INSTANTIATOR_FORMAT (inherit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 DEFINE_IMAGE_INSTANTIATOR_FORMAT (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 DEFINE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
83 DEFINE_IMAGE_INSTANTIATOR_FORMAT (subwindow);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
84 DEFINE_IMAGE_INSTANTIATOR_FORMAT (text);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
86 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
87 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
88 Lisp_Object Qxbm;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
89
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
90 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
91 Lisp_Object Q_foreground, Q_background;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
92 #ifndef BitmapSuccess
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
93 #define BitmapSuccess 0
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
94 #define BitmapOpenFailed 1
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
95 #define BitmapFileInvalid 2
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
96 #define BitmapNoMemory 3
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
97 #endif
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
98 #endif
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
99
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
100 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
101 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
102 Lisp_Object Qxface;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
103 #endif
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
104
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
105 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
106 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
107 Lisp_Object Qxpm;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
108 Lisp_Object Q_color_symbols;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
109 #endif
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
110
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
111 typedef struct image_instantiator_format_entry image_instantiator_format_entry;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 struct image_instantiator_format_entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Lisp_Object symbol;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
115 Lisp_Object device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 struct image_instantiator_methods *meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
119 typedef struct
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Dynarr_declare (struct image_instantiator_format_entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 } image_instantiator_format_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 image_instantiator_format_entry_dynarr *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 the_image_instantiator_format_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
127 static Lisp_Object allocate_image_instance (Lisp_Object device, Lisp_Object glyph);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 static void image_validate (Lisp_Object instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 static void glyph_property_was_changed (Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Lisp_Object locale);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
132 static void set_image_instance_dirty_p (Lisp_Object instance, int dirty);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
133 static void register_ignored_expose (struct frame* f, int x, int y, int width, int height);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
134 /* Unfortunately windows and X are different. In windows BeginPaint()
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
135 will prevent WM_PAINT messages being generated so it is unnecessary
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
136 to register exposures as they will not occur. Under X they will
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
137 always occur. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
138 int hold_ignored_expose_registration;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
139
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
140 EXFUN (Fimage_instance_type, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
141 EXFUN (Fglyph_type, 1);
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
142 EXFUN (Fnext_window, 4);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
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 * Image Instantiators *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ****************************************************************************/
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 struct image_instantiator_methods *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
150 decode_device_ii_format (Lisp_Object device, Lisp_Object format,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
151 Error_behavior errb)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 if (!SYMBOLP (format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 CHECK_SYMBOL (format);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 for (i = 0; i < Dynarr_length (the_image_instantiator_format_entry_dynarr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
165 if ( EQ (format,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
166 Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
167 symbol) )
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
168 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
169 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
170 device;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
171 if ((NILP (d) && NILP (device))
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 (!NILP (device) &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
174 EQ (CONSOLE_TYPE (XCONSOLE
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
175 (DEVICE_CONSOLE (XDEVICE (device)))), d)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
176 return Dynarr_at (the_image_instantiator_format_entry_dynarr, i).meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
177 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 maybe_signal_simple_error ("Invalid image-instantiator format", format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Qimage, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
186 struct image_instantiator_methods *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
187 decode_image_instantiator_format (Lisp_Object format, Error_behavior errb)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
188 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
189 return decode_device_ii_format (Qnil, format, errb);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
190 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
191
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
193 valid_image_instantiator_format_p (Lisp_Object format, Lisp_Object locale)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
195 int i;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
196 struct image_instantiator_methods* meths =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
197 decode_image_instantiator_format (format, ERROR_ME_NOT);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
198 Lisp_Object contype = Qnil;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
199 /* mess with the locale */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
200 if (!NILP (locale) && SYMBOLP (locale))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
201 contype = locale;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
202 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
203 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
204 struct console* console = decode_console (locale);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
205 contype = console ? CONSOLE_TYPE (console) : locale;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
206 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
207 /* nothing is valid in all locales */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
208 if (EQ (format, Qnothing))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
209 return 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
210 /* reject unknown formats */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
211 else if (NILP (contype) || !meths)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
212 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
213
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
214 for (i = 0; i < Dynarr_length (meths->consoles); i++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
215 if (EQ (contype, Dynarr_at (meths->consoles, i).symbol))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
216 return 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
217 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
220 DEFUN ("valid-image-instantiator-format-p", Fvalid_image_instantiator_format_p,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
221 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Given an IMAGE-INSTANTIATOR-FORMAT, return non-nil if it is valid.
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
223 If LOCALE is non-nil then the format is checked in that domain.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
224 If LOCALE is nil the current console is used.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
225 Valid formats are some subset of 'nothing, 'string, 'formatted-string,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
226 'xpm, 'xbm, 'xface, 'gif, 'jpeg, 'png, 'tiff, 'cursor-font, 'font,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
227 'autodetect, 'widget and 'subwindow, depending on how XEmacs was compiled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
228 */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
229 (image_instantiator_format, locale))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
231 return valid_image_instantiator_format_p (image_instantiator_format, locale) ?
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
232 Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
235 DEFUN ("image-instantiator-format-list", Fimage_instantiator_format_list,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
236 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 Return a list of valid image-instantiator formats.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
238 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
239 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 return Fcopy_sequence (Vimage_instantiator_format_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 void
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
245 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
246 struct image_instantiator_methods *meths)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
247 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
248 struct image_instantiator_format_entry entry;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
249
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
250 entry.symbol = symbol;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
251 entry.device = device;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
252 entry.meths = meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
253 Dynarr_add (the_image_instantiator_format_entry_dynarr, entry);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
254 Vimage_instantiator_format_list =
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
255 Fcons (symbol, Vimage_instantiator_format_list);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
256 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
257
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
258 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 add_entry_to_image_instantiator_format_list (Lisp_Object symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 image_instantiator_methods *meths)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
263 add_entry_to_device_ii_format_list (Qnil, symbol, meths);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 static Lisp_Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 get_image_conversion_list (Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 return &decode_console_type (console_type, ERROR_ME)->image_conversion_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
272 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
273 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 Set the image-conversion-list for consoles of the given TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 The image-conversion-list specifies how image instantiators that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 are strings should be interpreted. Each element of the list should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 a list of two elements (a regular expression string and a vector) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 a list of three elements (the preceding two plus an integer index into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 the vector). The string is converted to the vector associated with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 first matching regular expression. If a vector index is specified, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 string itself is substituted into that position in the vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 Note: The conversion above is applied when the image instantiator is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 added to an image specifier, not when the specifier is actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 instantiated. Therefore, changing the image-conversion-list only affects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 newly-added instantiators. Existing instantiators in glyphs and image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 specifiers will not be affected.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
288 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
289 (console_type, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 Lisp_Object *imlist = get_image_conversion_list (console_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* Check the list to make sure that it only has valid entries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 EXTERNAL_LIST_LOOP (tail, list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 Lisp_Object mapping = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 /* Mapping form should be (STRING VECTOR) or (STRING VECTOR INTEGER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 if (!CONSP (mapping) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 !CONSP (XCDR (mapping)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (!NILP (XCDR (XCDR (mapping))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (!CONSP (XCDR (XCDR (mapping))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 !NILP (XCDR (XCDR (XCDR (mapping)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 signal_simple_error ("Invalid mapping form", mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 Lisp_Object exp = XCAR (mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 Lisp_Object typevec = XCAR (XCDR (mapping));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 Lisp_Object pos = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 Lisp_Object newvec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 CHECK_STRING (exp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 CHECK_VECTOR (typevec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 if (!NILP (XCDR (XCDR (mapping))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 pos = XCAR (XCDR (XCDR (mapping)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 CHECK_INT (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 if (XINT (pos) < 0 ||
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
322 XINT (pos) >= XVECTOR_LENGTH (typevec))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 args_out_of_range_3
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
324 (pos, Qzero, make_int (XVECTOR_LENGTH (typevec) - 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
326
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 newvec = Fcopy_sequence (typevec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 if (INTP (pos))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
329 XVECTOR_DATA (newvec)[XINT (pos)] = exp;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 GCPRO1 (newvec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 image_validate (newvec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 *imlist = Fcopy_tree (list, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
340 DEFUN ("console-type-image-conversion-list", Fconsole_type_image_conversion_list,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
341 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 Return the image-conversion-list for devices of the given TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 The image-conversion-list specifies how to interpret image string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 instantiators for the specified console type. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 `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
346 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
347 (console_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 return Fcopy_tree (*get_image_conversion_list (console_type), Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
352 /* Process a string instantiator according to the image-conversion-list for
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 CONSOLE_TYPE. Returns a vector. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 process_image_string_instantiator (Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 Lisp_Object console_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 int dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 LIST_LOOP (tail, *get_image_conversion_list (console_type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 Lisp_Object mapping = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 Lisp_Object exp = XCAR (mapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 Lisp_Object typevec = XCAR (XCDR (mapping));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 /* if the result is of a type that can't be instantiated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (e.g. a string when we're dealing with a pointer glyph),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 skip it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 if (!(dest_mask &
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 IIFORMAT_METH (decode_image_instantiator_format
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
373 (XVECTOR_DATA (typevec)[0], ERROR_ME),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 possible_dest_types, ())))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 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
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 if (!NILP (XCDR (XCDR (mapping))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 int pos = XINT (XCAR (XCDR (XCDR (mapping))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 Lisp_Object newvec = Fcopy_sequence (typevec);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
382 XVECTOR_DATA (newvec)[pos] = data;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 return newvec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 return typevec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 /* Oh well. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 signal_simple_error ("Unable to interpret glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 data);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
393
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 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
399 Lisp_Object default_)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 Lisp_Object *elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 int instantiator_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
404 elt = XVECTOR_DATA (vector);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
405 instantiator_len = XVECTOR_LENGTH (vector);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 elt++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 instantiator_len--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 while (instantiator_len > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 if (EQ (elt[0], keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 return elt[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 elt += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 instantiator_len -= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
418 return default_;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 find_keyword_in_vector (Lisp_Object vector, Lisp_Object keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 return find_keyword_in_vector_or_given (vector, keyword, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 check_valid_string (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
433 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
434 check_valid_vector (Lisp_Object data)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
435 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
436 CHECK_VECTOR (data);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
437 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
438
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
439 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 check_valid_face (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 Fget_face (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 check_valid_int (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 CHECK_INT (data);
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 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 file_or_data_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 if (NILP (find_keyword_in_vector (instantiator, Q_file)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 NILP (find_keyword_in_vector (instantiator, Q_data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 signal_simple_error ("Must supply either :file or :data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 data_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 if (NILP (find_keyword_in_vector (instantiator, Q_data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 signal_simple_error ("Must supply :data", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 face_must_be_present (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 if (NILP (find_keyword_in_vector (instantiator, Q_face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 signal_simple_error ("Must supply :face", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 /* utility function useful in retrieving data from a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 make_string_from_file (Lisp_Object file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 84
diff changeset
479 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 Lisp_Object temp_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 Lisp_Object data;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
484
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 temp_buffer = Fget_buffer_create (build_string (" *pixmap conversion*"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 GCPRO1 (temp_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 set_buffer_internal (XBUFFER (temp_buffer));
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 185
diff changeset
490 Ferase_buffer (Qnil);
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 124
diff changeset
491 specbind (intern ("format-alist"), Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
492 Finsert_file_contents_internal (file, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 185
diff changeset
493 data = Fbuffer_substring (Qnil, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 return data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 /* The following two functions are provided to make it easier for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 the normalize methods to work with keyword-value vectors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 Hash tables are kind of heavyweight for this purpose.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (If vectors were resizable, we could avoid this problem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 but they're not.) An alternative approach that might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 more efficient but require more work is to use a type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 assoc-Dynarr and provide primitives for deleting elements out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 of it. (However, you'd also have to add an unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 to make sure the Dynarr got freed in case of an error in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 the normalization process.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 tagged_vector_to_alist (Lisp_Object vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
513 Lisp_Object *elt = XVECTOR_DATA (vector);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
514 int len = XVECTOR_LENGTH (vector);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 assert (len & 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 for (len -= 2; len >= 1; len -= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 result = Fcons (Fcons (elt[len], elt[len+1]), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 alist_to_tagged_vector (Lisp_Object tag, Lisp_Object alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 int len = 1 + 2 * XINT (Flength (alist));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
528 Lisp_Object *elt = alloca_array (Lisp_Object, len);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 elt[i++] = tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 LIST_LOOP (rest, alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 Lisp_Object pair = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 elt[i] = XCAR (pair);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 elt[i+1] = XCDR (pair);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 i += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 return Fvector (len, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 normalize_image_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 Lisp_Object contype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 Lisp_Object dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 if (IMAGE_INSTANCEP (instantiator))
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 361
diff changeset
551 return instantiator;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 if (STRINGP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 instantiator = process_image_string_instantiator (instantiator, contype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 XINT (dest_mask));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 assert (VECTORP (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 /* We have to always store the actual pixmap data and not the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 filename even though this is a potential memory pig. We have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 do this because it is quite possible that we will need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 instantiate a new instance of the pixmap and the file will no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 longer exist (e.g. w3 pixmaps are almost always from temporary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 files). */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
564 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
565 struct gcpro gcpro1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
566 struct image_instantiator_methods *meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
567
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
568 GCPRO1 (instantiator);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
569
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
570 meths = decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
571 ERROR_ME);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
572 RETURN_UNGCPRO (IIFORMAT_METH_OR_GIVEN (meths, normalize,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
573 (instantiator, contype),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
574 instantiator));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
575 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 static Lisp_Object
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
579 instantiate_image_instantiator (Lisp_Object device, Lisp_Object domain,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
580 Lisp_Object instantiator,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
582 int dest_mask, Lisp_Object glyph)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
584 Lisp_Object ii = allocate_image_instance (device, glyph);
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
585 Lisp_Image_Instance* p = XIMAGE_INSTANCE (ii);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
586 struct image_instantiator_methods *meths;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 struct gcpro gcpro1;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
588 int methp = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 GCPRO1 (ii);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
591 if (!valid_image_instantiator_format_p (XVECTOR_DATA (instantiator)[0], device))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
592 signal_simple_error
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
593 ("Image instantiator format is invalid in this locale.",
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
594 instantiator);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
595
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
596 meths = decode_image_instantiator_format (XVECTOR_DATA (instantiator)[0],
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
597 ERROR_ME);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
598 methp = (int)HAS_IIFORMAT_METH_P (meths, instantiate);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
599 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
600 pointer_bg, dest_mask, domain));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
601
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
602 /* now do device specific instantiation */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
603 meths = decode_device_ii_format (device, XVECTOR_DATA (instantiator)[0],
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
604 ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
605
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
606 if (!methp && (!meths || !HAS_IIFORMAT_METH_P (meths, instantiate)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
607 signal_simple_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
608 ("Don't know how to instantiate this image instantiator?",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
609 instantiator);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
610 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
611 pointer_bg, dest_mask, domain));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
614 /* Some code may have already laid out the widget, if not then do it
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
615 here. */
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
616 if (IMAGE_INSTANCE_LAYOUT_CHANGED (p))
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
617 image_instance_layout (ii, IMAGE_UNSPECIFIED_GEOMETRY,
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
618 IMAGE_UNSPECIFIED_GEOMETRY, domain);
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
619
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
620 /* We *must* have a clean image at this point. */
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
621 IMAGE_INSTANCE_TEXT_CHANGED (p) = 0;
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
622 IMAGE_INSTANCE_SIZE_CHANGED (p) = 0;
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
623 IMAGE_INSTANCE_LAYOUT_CHANGED (p) = 0;
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
624 IMAGE_INSTANCE_DIRTYP (p) = 0;
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
625
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 return ii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 * Image-Instance Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 Lisp_Object Qimage_instancep;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
635
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
637 mark_image_instance (Lisp_Object obj)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
639 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
640
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
641 mark_object (i->name);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
642 /* We don't mark the glyph reference since that would create a
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
643 circularity preventing GC. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 switch (IMAGE_INSTANCE_TYPE (i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 case IMAGE_TEXT:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
647 mark_object (IMAGE_INSTANCE_TEXT_STRING (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 case IMAGE_COLOR_PIXMAP:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
651 mark_object (IMAGE_INSTANCE_PIXMAP_FILENAME (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
652 mark_object (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
653 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
654 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
655 mark_object (IMAGE_INSTANCE_PIXMAP_FG (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
656 mark_object (IMAGE_INSTANCE_PIXMAP_BG (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 break;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
658
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
659 case IMAGE_WIDGET:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
660 case IMAGE_LAYOUT:
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
661 mark_object (IMAGE_INSTANCE_WIDGET_TYPE (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
662 mark_object (IMAGE_INSTANCE_WIDGET_PROPS (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
663 mark_object (IMAGE_INSTANCE_WIDGET_FACE (i));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
664 mark_object (IMAGE_INSTANCE_WIDGET_ITEMS (i));
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
665 mark_object (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (i));
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
666 mark_object (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i));
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
667 mark_object (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 case IMAGE_SUBWINDOW:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
669 mark_object (IMAGE_INSTANCE_SUBWINDOW_FRAME (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 break;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
671
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
676 MAYBE_DEVMETH (XDEVICE (i->device), mark_image_instance, (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
678 return i->device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 print_image_instance (Lisp_Object obj, Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 char buf[100];
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
686 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 error ("printing unreadable object #<image-instance 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 ii->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 write_c_string ("#<image-instance (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 print_internal (Fimage_instance_type (obj), printcharfun, 0);
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 (ii->name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 print_internal (ii->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 write_c_string (" ", 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 write_c_string ("on ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 print_internal (ii->device, printcharfun, 0);
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 switch (IMAGE_INSTANCE_TYPE (ii))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 print_internal (IMAGE_INSTANCE_TEXT_STRING (ii), printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 if (STRINGP (IMAGE_INSTANCE_PIXMAP_FILENAME (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 char *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 Lisp_Object filename = IMAGE_INSTANCE_PIXMAP_FILENAME (ii);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
718 s = strrchr ((char *) XSTRING_DATA (filename), '/');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 if (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 print_internal (build_string (s + 1), printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 print_internal (filename, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 if (IMAGE_INSTANCE_PIXMAP_DEPTH (ii) > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 sprintf (buf, " %dx%dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 IMAGE_INSTANCE_PIXMAP_DEPTH (ii));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 sprintf (buf, " %dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 write_c_string (" @", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
738 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 write_c_string ("??", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 write_c_string (",", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
746 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 write_c_string ("??", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 !NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 write_c_string (" (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 print_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (XCOLOR_INSTANCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (IMAGE_INSTANCE_PIXMAP_FG (ii))->name, printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 write_c_string ("/", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 if (!NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 print_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (XCOLOR_INSTANCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (IMAGE_INSTANCE_PIXMAP_BG (ii))->name, printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
773 case IMAGE_WIDGET:
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
774 print_internal (IMAGE_INSTANCE_WIDGET_TYPE (ii), printcharfun, 0);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
775
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
776 if (!NILP (IMAGE_INSTANCE_WIDGET_TEXT (ii)))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
777 {
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
778 write_c_string (" ", printcharfun);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
779 print_internal (IMAGE_INSTANCE_WIDGET_TEXT (ii), printcharfun, 1);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
780 }
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
781
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
782 if (!NILP (IMAGE_INSTANCE_WIDGET_FACE (ii)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
783 {
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
784 write_c_string (" face=", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
785 print_internal
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
786 (IMAGE_INSTANCE_WIDGET_FACE (ii), printcharfun, 0);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
787 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
788
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
789
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 case IMAGE_SUBWINDOW:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
791 case IMAGE_LAYOUT:
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
792 sprintf (buf, " %dx%d", IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
793 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
794 write_c_string (buf, printcharfun);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
795
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
796 /* 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
797 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
798 description what that frame is. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
799
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
800 write_c_string (" on #<", printcharfun);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
801 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
802 struct frame* f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
803
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
804 if (!FRAME_LIVE_P (f))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
805 write_c_string ("dead", printcharfun);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
806 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
807 write_c_string (DEVICE_TYPE_NAME (XDEVICE (FRAME_DEVICE (f))),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
808 printcharfun);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
809 }
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
810 write_c_string ("-frame>", printcharfun);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
811 sprintf (buf, " 0x%p", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
812 write_c_string (buf, printcharfun);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
813
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 MAYBE_DEVMETH (XDEVICE (ii->device), print_image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (ii, printcharfun, escapeflag));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 sprintf (buf, " 0x%x>", ii->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 finalize_image_instance (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
829 Lisp_Image_Instance *i = (Lisp_Image_Instance *) header;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_NOTHING)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 /* objects like this exist at dump time, so don't bomb out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 if (for_disksave) finalose (i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
836 /* do this so that the cachels get reset */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
837 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_WIDGET
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
838 ||
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
839 IMAGE_INSTANCE_TYPE (i) == IMAGE_SUBWINDOW
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
840 ||
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
841 IMAGE_INSTANCE_TYPE (i) == IMAGE_SUBWINDOW)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
842 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
843 MARK_FRAME_SUBWINDOWS_CHANGED
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
844 (XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (i)));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
845 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
846
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 MAYBE_DEVMETH (XDEVICE (i->device), finalize_image_instance, (i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
851 image_instance_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
853 Lisp_Image_Instance *i1 = XIMAGE_INSTANCE (obj1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
854 Lisp_Image_Instance *i2 = XIMAGE_INSTANCE (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 struct device *d1 = XDEVICE (i1->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 struct device *d2 = XDEVICE (i2->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 if (d1 != d2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 return 0;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
860 if (IMAGE_INSTANCE_TYPE (i1) != IMAGE_INSTANCE_TYPE (i2)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
861 || IMAGE_INSTANCE_WIDTH (i1) != IMAGE_INSTANCE_WIDTH (i2)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
862 || IMAGE_INSTANCE_HEIGHT (i1) != IMAGE_INSTANCE_HEIGHT (i2)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
863 || IMAGE_INSTANCE_XOFFSET (i1) != IMAGE_INSTANCE_XOFFSET (i2)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
864 || IMAGE_INSTANCE_YOFFSET (i1) != IMAGE_INSTANCE_YOFFSET (i2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 if (!internal_equal (IMAGE_INSTANCE_NAME (i1), IMAGE_INSTANCE_NAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 switch (IMAGE_INSTANCE_TYPE (i1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 if (!internal_equal (IMAGE_INSTANCE_TEXT_STRING (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 IMAGE_INSTANCE_TEXT_STRING (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 case IMAGE_POINTER:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
885 if (!(IMAGE_INSTANCE_PIXMAP_DEPTH (i1) ==
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 IMAGE_INSTANCE_PIXMAP_DEPTH (i2) &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
887 IMAGE_INSTANCE_PIXMAP_SLICE (i1) ==
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
888 IMAGE_INSTANCE_PIXMAP_SLICE (i2) &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i2)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i2)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 internal_equal (IMAGE_INSTANCE_PIXMAP_FILENAME (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 IMAGE_INSTANCE_PIXMAP_FILENAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 depth + 1) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 internal_equal (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 depth + 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
902 case IMAGE_WIDGET:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
903 case IMAGE_LAYOUT:
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
904 if (!(EQ (IMAGE_INSTANCE_WIDGET_TYPE (i1),
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
905 IMAGE_INSTANCE_WIDGET_TYPE (i2))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
906 && IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
907 IMAGE_INSTANCE_SUBWINDOW_ID (i2)
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
908 &&
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
909 EQ (IMAGE_INSTANCE_WIDGET_FACE (i1),
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
910 IMAGE_INSTANCE_WIDGET_TYPE (i2))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
911 && internal_equal (IMAGE_INSTANCE_WIDGET_ITEMS (i1),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
912 IMAGE_INSTANCE_WIDGET_ITEMS (i2),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
913 depth + 1)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
914 && internal_equal (IMAGE_INSTANCE_WIDGET_PROPS (i1),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
915 IMAGE_INSTANCE_WIDGET_PROPS (i2),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
916 depth + 1)
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
917 && internal_equal (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i1),
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
918 IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i2),
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
919 depth + 1)
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
920 && internal_equal (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i1),
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
921 IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i2),
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
922 depth + 1)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
923 ))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
924 return 0;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
925 break;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
926
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 case IMAGE_SUBWINDOW:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
928 if (!(IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
929 IMAGE_INSTANCE_SUBWINDOW_ID (i2)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
930 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 return DEVMETH_OR_GIVEN (d1, image_instance_equal, (i1, i2, depth), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
940 #if 0
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
941 /* internal_hash will not go very far down a list because of the way
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
942 its written. For items we need to hash all elements so we provide
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
943 our own list hashing function. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 static unsigned long
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
945 full_list_hash (Lisp_Object obj, int depth)
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
946 {
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
947 unsigned long hash = 0;
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
948 Lisp_Object rest;
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
949
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
950 if (!CONSP (obj))
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
951 return internal_hash (obj, depth + 1);
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
952
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
953 hash = LISP_HASH (XCAR (obj));
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
954 LIST_LOOP (rest, XCDR (obj))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
955 {
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
956 hash = HASH2 (hash, internal_hash (XCAR (rest), depth + 1));
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
957 }
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
958 return hash;
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
959 }
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
960 #endif
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
961
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
962 static unsigned long
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 image_instance_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
965 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 struct device *d = XDEVICE (i->device);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
967 unsigned long hash = HASH3 ((unsigned long) d,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
968 IMAGE_INSTANCE_WIDTH (i),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
969 IMAGE_INSTANCE_HEIGHT (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 switch (IMAGE_INSTANCE_TYPE (i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 case IMAGE_NOTHING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 case IMAGE_TEXT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 hash = HASH2 (hash, internal_hash (IMAGE_INSTANCE_TEXT_STRING (i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 case IMAGE_POINTER:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
984 hash = HASH4 (hash, IMAGE_INSTANCE_PIXMAP_DEPTH (i),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
985 IMAGE_INSTANCE_PIXMAP_SLICE (i),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 internal_hash (IMAGE_INSTANCE_PIXMAP_FILENAME (i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
990 case IMAGE_WIDGET:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
991 case IMAGE_LAYOUT:
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
992 /* We need the hash to be equivalent to what should be
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
993 displayed. */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
994 hash = HASH4 (hash,
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
995 LISP_HASH (IMAGE_INSTANCE_WIDGET_TYPE (i)),
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
996 internal_hash (IMAGE_INSTANCE_WIDGET_PROPS (i), depth + 1),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
997 internal_hash (IMAGE_INSTANCE_WIDGET_ITEMS (i), depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 case IMAGE_SUBWINDOW:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
999 hash = HASH2 (hash, (int) IMAGE_INSTANCE_SUBWINDOW_ID (i));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 return HASH2 (hash, DEVMETH_OR_GIVEN (d, image_instance_hash, (i, depth),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 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
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1010 DEFINE_LRECORD_IMPLEMENTATION ("image-instance", image_instance,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1011 mark_image_instance, print_image_instance,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1012 finalize_image_instance, image_instance_equal,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1013 image_instance_hash, 0,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1014 Lisp_Image_Instance);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1015
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1017 allocate_image_instance (Lisp_Object device, Lisp_Object glyph)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1019 Lisp_Image_Instance *lp =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1020 alloc_lcrecord_type (Lisp_Image_Instance, &lrecord_image_instance);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1021 Lisp_Object val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 zero_lcrecord (lp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 lp->device = device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 lp->type = IMAGE_NOTHING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 lp->name = Qnil;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1027 lp->x_offset = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1028 lp->y_offset = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1029 lp->width = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1030 lp->height = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1031 lp->parent = glyph;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1032 /* So that layouts get done. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1033 lp->layout_changed = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1034
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 XSETIMAGE_INSTANCE (val, lp);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1036 MARK_GLYPHS_CHANGED;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1037
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 static enum image_instance_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 decode_image_instance_type (Lisp_Object type, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1047 if (EQ (type, Qnothing)) return IMAGE_NOTHING;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1048 if (EQ (type, Qtext)) return IMAGE_TEXT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1049 if (EQ (type, Qmono_pixmap)) return IMAGE_MONO_PIXMAP;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1050 if (EQ (type, Qcolor_pixmap)) return IMAGE_COLOR_PIXMAP;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1051 if (EQ (type, Qpointer)) return IMAGE_POINTER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1052 if (EQ (type, Qsubwindow)) return IMAGE_SUBWINDOW;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1053 if (EQ (type, Qwidget)) return IMAGE_WIDGET;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1054 if (EQ (type, Qlayout)) return IMAGE_LAYOUT;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 maybe_signal_simple_error ("Invalid image-instance type", type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 Qimage, errb);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1058
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1059 return IMAGE_UNKNOWN; /* not reached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 encode_image_instance_type (enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1067 case IMAGE_NOTHING: return Qnothing;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1068 case IMAGE_TEXT: return Qtext;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1069 case IMAGE_MONO_PIXMAP: return Qmono_pixmap;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1070 case IMAGE_COLOR_PIXMAP: return Qcolor_pixmap;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1071 case IMAGE_POINTER: return Qpointer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1072 case IMAGE_SUBWINDOW: return Qsubwindow;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1073 case IMAGE_WIDGET: return Qwidget;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1074 case IMAGE_LAYOUT: return Qlayout;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 image_instance_type_to_mask (enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 /* This depends on the fact that enums are assigned consecutive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 integers starting at 0. (Remember that IMAGE_UNKNOWN is the
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1087 first enum.) I'm fairly sure this behavior is ANSI-mandated,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 so there should be no portability problems here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 return (1 << ((int) (type) - 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 decode_image_instance_type_list (Lisp_Object list)
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 rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 int mask = 0;
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 (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 return ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 if (!CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 enum image_instance_type type =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 decode_image_instance_type (list, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 return image_instance_type_to_mask (type);
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 EXTERNAL_LIST_LOOP (rest, list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 enum image_instance_type type =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 decode_image_instance_type (XCAR (rest), ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 mask |= image_instance_type_to_mask (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 return mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 encode_image_instance_type_list (int mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 while (mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 if (mask & 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 result = Fcons (encode_image_instance_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 ((enum image_instance_type) count), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 mask >>= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 return Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 incompatible_image_types (Lisp_Object instantiator, int given_dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 int desired_dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 signal_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 list2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (emacs_doprnt_string_lisp_2
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1144 ((const Bufbyte *)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 "No compatible image-instance types given: wanted one of %s, got %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 Qnil, -1, 2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 encode_image_instance_type_list (desired_dest_mask),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 encode_image_instance_type_list (given_dest_mask)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 valid_image_instance_type_p (Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1155 return !NILP (memq_no_quit (type, Vimage_instance_type_list));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1158 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
1159 Given an IMAGE-INSTANCE-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 Valid types are some subset of 'nothing, 'text, 'mono-pixmap, 'color-pixmap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 'pointer, and 'subwindow, depending on how XEmacs was compiled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1162 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1163 (image_instance_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1165 return valid_image_instance_type_p (image_instance_type) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1168 DEFUN ("image-instance-type-list", Fimage_instance_type_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 Return a list of valid image-instance types.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1170 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1171 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 return Fcopy_sequence (Vimage_instance_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 Error_behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 decode_error_behavior_flag (Lisp_Object no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1179 if (NILP (no_error)) return ERROR_ME;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1180 else if (EQ (no_error, Qt)) return ERROR_ME_NOT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1181 else return ERROR_ME_WARN;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 encode_error_behavior_flag (Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 else if (ERRB_EQ (errb, ERROR_ME_NOT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 assert (ERRB_EQ (errb, ERROR_ME_WARN));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 return Qwarning;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1198 /* Recurse up the hierarchy looking for the topmost glyph. This means
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1199 that instances in layouts will inherit face properties from their
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1200 parent. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1201 Lisp_Object image_instance_parent_glyph (Lisp_Image_Instance* ii)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1202 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1203 if (IMAGE_INSTANCEP (IMAGE_INSTANCE_PARENT (ii)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1204 {
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
1205 return image_instance_parent_glyph
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1206 (XIMAGE_INSTANCE (IMAGE_INSTANCE_PARENT (ii)));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1207 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1208 return IMAGE_INSTANCE_PARENT (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1209 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1210
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 make_image_instance_1 (Lisp_Object data, Lisp_Object device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 Lisp_Object dest_types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 Lisp_Object ii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 int dest_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 XSETDEVICE (device, decode_device (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 /* instantiate_image_instantiator() will abort if given an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 image instance ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 if (IMAGE_INSTANCEP (data))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1223 signal_simple_error ("Image instances not allowed here", data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 image_validate (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 dest_mask = decode_image_instance_type_list (dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 data = normalize_image_instantiator (data, DEVICE_TYPE (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 make_int (dest_mask));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 GCPRO1 (data);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1229 if (VECTORP (data) && EQ (XVECTOR_DATA (data)[0], Qinherit))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1230 signal_simple_error ("Inheritance not allowed here", data);
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1231 ii = instantiate_image_instantiator (device, device, data,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1232 Qnil, Qnil, dest_mask, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 RETURN_UNGCPRO (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1236 DEFUN ("make-image-instance", Fmake_image_instance, 1, 4, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1237 Return a new `image-instance' object.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 Image-instance objects encapsulate the way a particular image (pixmap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 etc.) is displayed on a particular device. In most circumstances, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 do not need to directly create image instances; use a glyph instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 However, it may occasionally be useful to explicitly create image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 instances, if you want more control over the instantiation process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 DATA is an image instantiator, which describes the image; see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 `image-specifier-p' for a description of the allowed values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 DEST-TYPES should be a list of allowed image instance types that can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 be generated. The recognized image instance types are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 'nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 Nothing is displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 'text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 Displayed as text. The foreground and background colors and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 font of the text are specified independent of the pixmap. Typically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 these attributes will come from the face of the surrounding text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 unless a face is specified for the glyph in which the image appears.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 'mono-pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 Displayed as a mono pixmap (a pixmap with only two colors where the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 foreground and background can be specified independent of the pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 typically the pixmap assumes the foreground and background colors of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 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
1263 the image appears).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 'color-pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 Displayed as a color pixmap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 'pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 Used as the mouse pointer for a window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 'subwindow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 A child window that is treated as an image. This allows (e.g.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 another program to be responsible for drawing into the window.
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1271 'widget
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1272 A child window that contains a window-system widget, e.g. a push
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1273 button.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 The DEST-TYPES list is unordered. If multiple destination types
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1276 are possible for a given instantiator, the "most natural" type
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 for the instantiator's format is chosen. (For XBM, the most natural
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 types are `mono-pixmap', followed by `color-pixmap', followed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 `pointer'. For the other normal image formats, the most natural
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 types are `color-pixmap', followed by `mono-pixmap', followed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 `pointer'. For the string and formatted-string formats, the most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 natural types are `text', followed by `mono-pixmap' (not currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 implemented), followed by `color-pixmap' (not currently implemented).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 The other formats can only be instantiated as one type. (If you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 want to control more specifically the order of the types into which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 an image is instantiated, just call `make-image-instance' repeatedly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 until it succeeds, passing less and less preferred destination types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 each time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 If DEST-TYPES is omitted, all possible types are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 NO-ERROR controls what happens when the image cannot be generated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 If nil, an error message is generated. If t, no messages are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 generated and this function returns nil. If anything else, a warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 message is generated and this function returns nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1296 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1297 (data, device, dest_types, no_error))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 Error_behavior errb = decode_error_behavior_flag (no_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1301 return call_with_suspended_errors ((lisp_fn_t) make_image_instance_1,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 Qnil, Qimage, errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 3, data, device, dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1306 DEFUN ("image-instance-p", Fimage_instance_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 Return non-nil if OBJECT is an image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1308 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1309 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1311 return IMAGE_INSTANCEP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1314 DEFUN ("image-instance-type", Fimage_instance_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 Return the type of the given image instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 The return value will be one of 'nothing, 'text, 'mono-pixmap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 'color-pixmap, 'pointer, or 'subwindow.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1318 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1319 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 return encode_image_instance_type (XIMAGE_INSTANCE_TYPE (image_instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1325 DEFUN ("image-instance-name", Fimage_instance_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 Return the name of the given image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1327 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1328 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 CHECK_IMAGE_INSTANCE (image_instance);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1331 return XIMAGE_INSTANCE_NAME (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1334 DEFUN ("image-instance-string", Fimage_instance_string, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 Return the string of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1336 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
1337 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1338 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_TEXT)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1342 return XIMAGE_INSTANCE_TEXT_STRING (image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1343 else if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_WIDGET)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1344 return XIMAGE_INSTANCE_WIDGET_TEXT (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1349 DEFUN ("image-instance-property", Fimage_instance_property, 2, 2, 0, /*
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1350 Return the given property of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1351 Returns nil if the property or the property method do not exist for
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1352 the image instance in the domain.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1353 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1354 (image_instance, prop))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1355 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1356 Lisp_Image_Instance* ii;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1357 Lisp_Object type, ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1358 struct image_instantiator_methods* meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1359
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1360 CHECK_IMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1361 CHECK_SYMBOL (prop);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1362 ii = XIMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1363
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1364 /* ... then try device specific methods ... */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1365 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1366 meths = decode_device_ii_format (IMAGE_INSTANCE_DEVICE (ii),
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1367 type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1368 if (meths && HAS_IIFORMAT_METH_P (meths, property)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1369 &&
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1370 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1371 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1372 return ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1373 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1374 /* ... then format specific methods ... */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1375 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1376 if (meths && HAS_IIFORMAT_METH_P (meths, property)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1377 &&
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1378 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1379 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1380 return ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1381 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1382 /* ... then fail */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1383 return Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1384 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1385
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1386 DEFUN ("set-image-instance-property", Fset_image_instance_property, 3, 3, 0, /*
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1387 Set the given property of the given image instance.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1388 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
1389 the image instance in the domain.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1390 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1391 (image_instance, prop, val))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1392 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1393 Lisp_Image_Instance* ii;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1394 Lisp_Object type, ret;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1395 struct image_instantiator_methods* meths;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1396
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1397 CHECK_IMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1398 CHECK_SYMBOL (prop);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1399 ii = XIMAGE_INSTANCE (image_instance);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1400 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1401 /* try device specific methods first ... */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1402 meths = decode_device_ii_format (IMAGE_INSTANCE_DEVICE (ii),
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1403 type, ERROR_ME_NOT);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1404 if (meths && HAS_IIFORMAT_METH_P (meths, set_property)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1405 &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1406 !UNBOUNDP (ret =
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1407 IIFORMAT_METH (meths, set_property, (image_instance, prop, val))))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1408 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1409 val = ret;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1410 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1411 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1412 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1413 /* ... then format specific methods ... */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1414 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1415 if (meths && HAS_IIFORMAT_METH_P (meths, set_property)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1416 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1417 !UNBOUNDP (ret =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1418 IIFORMAT_METH (meths, set_property, (image_instance, prop, val))))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1419 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1420 val = ret;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1421 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1422 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1423 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1424 val = Qnil;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1425 }
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1426 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1427
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1428 /* Make sure the image instance gets redisplayed. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1429 set_image_instance_dirty_p (image_instance, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1430 /* Force the glyph to be laid out again. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1431 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1432
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1433 MARK_SUBWINDOWS_STATE_CHANGED;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1434 MARK_GLYPHS_CHANGED;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1435
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1436 return val;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1437 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1438
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1439 DEFUN ("image-instance-file-name", Fimage_instance_file_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 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
1441 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1442 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 return XIMAGE_INSTANCE_PIXMAP_FILENAME (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1458 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
1459 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
1460 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1461 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 switch (XIMAGE_INSTANCE_TYPE (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 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 return XIMAGE_INSTANCE_PIXMAP_MASK_FILENAME (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1477 DEFUN ("image-instance-depth", Fimage_instance_depth, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 Return the depth of the image instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 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
1480 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1481 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 case IMAGE_POINTER:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1490 return make_int (XIMAGE_INSTANCE_PIXMAP_DEPTH (image_instance));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1497 DEFUN ("image-instance-height", Fimage_instance_height, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 Return the height of the image instance, in pixels.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1499 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1500 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 case IMAGE_POINTER:
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1509 case IMAGE_SUBWINDOW:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1510 case IMAGE_WIDGET:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1511 case IMAGE_LAYOUT:
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1512 return make_int (XIMAGE_INSTANCE_HEIGHT (image_instance));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1513
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1519 DEFUN ("image-instance-width", Fimage_instance_width, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 Return the width of the image instance, in pixels.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1521 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1522 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 case IMAGE_POINTER:
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1531 case IMAGE_SUBWINDOW:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1532 case IMAGE_WIDGET:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1533 case IMAGE_LAYOUT:
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1534 return make_int (XIMAGE_INSTANCE_WIDTH (image_instance));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1535
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1541 DEFUN ("image-instance-hotspot-x", Fimage_instance_hotspot_x, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 Return the X coordinate of the image instance's hotspot, if known.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 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
1544 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
1545 over the location that the pointer points to. This is, for example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 tip of the arrow or the center of the crosshairs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 This will always be nil for a non-pointer image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1548 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1549 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1565 DEFUN ("image-instance-hotspot-y", Fimage_instance_hotspot_y, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 Return the Y coordinate of the image instance's hotspot, if known.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 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
1568 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
1569 over the location that the pointer points to. This is, for example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 tip of the arrow or the center of the crosshairs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 This will always be nil for a non-pointer image instance.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1572 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1573 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1589 DEFUN ("image-instance-foreground", Fimage_instance_foreground, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 Return the foreground color of IMAGE-INSTANCE, if applicable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 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
1592 colorized mono pixmaps and for pointers.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1593 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1594 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 return XIMAGE_INSTANCE_PIXMAP_FG (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1605 case IMAGE_WIDGET:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1606 return FACE_FOREGROUND (
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1607 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1608 XIMAGE_INSTANCE_SUBWINDOW_FRAME
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1609 (image_instance));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1610
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1616 DEFUN ("image-instance-background", Fimage_instance_background, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 Return the background color of IMAGE-INSTANCE, if applicable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 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
1619 colorized mono pixmaps and for pointers.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1620 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1621 (image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 switch (XIMAGE_INSTANCE_TYPE (image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 return XIMAGE_INSTANCE_PIXMAP_BG (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1632 case IMAGE_WIDGET:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1633 return FACE_BACKGROUND (
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1634 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1635 XIMAGE_INSTANCE_SUBWINDOW_FRAME
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1636 (image_instance));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1637
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 return Qnil;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1644 DEFUN ("colorize-image-instance", Fcolorize_image_instance, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 Make the image instance be displayed in the given colors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 This function returns a new image instance that is exactly like the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 specified one except that (if possible) the foreground and background
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 colors and as specified. Currently, this only does anything if the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 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
1650 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1651 (image_instance, foreground, background))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 CHECK_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 CHECK_COLOR_INSTANCE (foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 CHECK_COLOR_INSTANCE (background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 device = XIMAGE_INSTANCE_DEVICE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 if (!HAS_DEVMETH_P (XDEVICE (device), colorize_image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 return image_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1664 /* #### There should be a copy_image_instance(), which calls a
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1665 device-specific method to copy the window-system subobject. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1666 new = allocate_image_instance (device, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 copy_lcrecord (XIMAGE_INSTANCE (new), XIMAGE_INSTANCE (image_instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 /* note that if this method returns non-zero, this method MUST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 copy any window-system resources, so that when one image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 freed, the other one is not hosed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 if (!DEVMETH (XDEVICE (device), colorize_image_instance, (new, foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 background)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 return image_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 return new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1677
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1678 /************************************************************************/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1679 /* Geometry calculations */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1680 /************************************************************************/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1681
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1682 /* Find out desired geometry of the image instance. If there is no
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1683 special function then just return the width and / or height. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1684 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1685 image_instance_query_geometry (Lisp_Object image_instance,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1686 unsigned int* width, unsigned int* height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1687 enum image_instance_geometry disp,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1688 Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1689 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1690 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1691 Lisp_Object type;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1692 struct image_instantiator_methods* meths;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1693
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1694 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1695 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1696
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1697 if (meths && HAS_IIFORMAT_METH_P (meths, query_geometry))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1698 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1699 IIFORMAT_METH (meths, query_geometry, (image_instance, width, height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1700 disp, domain));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1701 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1702 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1703 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1704 if (width)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1705 *width = IMAGE_INSTANCE_WIDTH (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1706 if (height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1707 *height = IMAGE_INSTANCE_HEIGHT (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1708 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1709 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1710
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1711 /* Layout the image instance using the provided dimensions. Layout
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1712 widgets are going to do different kinds of calculations to
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1713 determine what size to give things so we could make the layout
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1714 function relatively simple to take account of that. An alternative
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1715 approach is to consider separately the two cases, one where you
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1716 don't mind what size you have (normal widgets) and one where you
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1717 want to specifiy something (layout widgets). */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1718 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1719 image_instance_layout (Lisp_Object image_instance,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1720 unsigned int width, unsigned int height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1721 Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1722 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1723 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1724 Lisp_Object type;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1725 struct image_instantiator_methods* meths;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1726
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1727 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1728 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1729
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1730 /* If geometry is unspecified then get some reasonable values for it. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1731 if (width == IMAGE_UNSPECIFIED_GEOMETRY
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1732 ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1733 height == IMAGE_UNSPECIFIED_GEOMETRY)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1734 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1735 unsigned int dwidth, dheight;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1736
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1737 /* Get the desired geometry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1738 if (meths && HAS_IIFORMAT_METH_P (meths, query_geometry))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1739 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1740 IIFORMAT_METH (meths, query_geometry, (image_instance, &dwidth, &dheight,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1741 IMAGE_DESIRED_GEOMETRY,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1742 domain));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1743 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1744 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1745 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1746 dwidth = IMAGE_INSTANCE_WIDTH (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1747 dheight = IMAGE_INSTANCE_HEIGHT (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1748 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1749
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1750 /* Compare with allowed geometry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1751 if (width == IMAGE_UNSPECIFIED_GEOMETRY)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1752 width = dwidth;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1753 if (height == IMAGE_UNSPECIFIED_GEOMETRY)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1754 height = dheight;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1755 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1756
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1757 /* At this point width and height should contain sane values. Thus
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1758 we set the glyph geometry and lay it out. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1759 if (IMAGE_INSTANCE_WIDTH (ii) != width
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1760 ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1761 IMAGE_INSTANCE_HEIGHT (ii) != height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1762 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1763 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1764 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1765
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1766 IMAGE_INSTANCE_WIDTH (ii) = width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1767 IMAGE_INSTANCE_HEIGHT (ii) = height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1768
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1769 if (meths && HAS_IIFORMAT_METH_P (meths, layout))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1770 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1771 IIFORMAT_METH (meths, layout, (image_instance, width, height, domain));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1772 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1773 /* else no change to the geometry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1774
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1775 /* Do not clear the dirty flag here - redisplay will do this for
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1776 us at the end. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1777 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1778 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1779
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1780 /*
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1781 * Mark image instance in W as dirty if (a) W's faces have changed and
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1782 * (b) GLYPH_OR_II instance in W is a string.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1783 *
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1784 * Return non-zero if instance has been marked dirty.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1785 */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1786 int
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1787 invalidate_glyph_geometry_maybe (Lisp_Object glyph_or_ii, struct window* w)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1788 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1789 if (XFRAME(WINDOW_FRAME(w))->faces_changed)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1790 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1791 Lisp_Object image = glyph_or_ii;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1792
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1793 if (GLYPHP (glyph_or_ii))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1794 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1795 Lisp_Object window;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1796 XSETWINDOW (window, w);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1797 image = glyph_image_instance (glyph_or_ii, window, ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1798 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1799
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1800 if (TEXT_IMAGE_INSTANCEP (image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1801 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1802 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1803 IMAGE_INSTANCE_DIRTYP (ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1804 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1805 if (GLYPHP (glyph_or_ii))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1806 XGLYPH_DIRTYP (glyph_or_ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1807 return 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1808 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1809 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1810
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1811 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1812 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1813
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1815 /************************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1816 /* error helpers */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1817 /************************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1818 DOESNT_RETURN
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1819 signal_image_error (const char *reason, Lisp_Object frob)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1820 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1821 signal_error (Qimage_conversion_error,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1822 list2 (build_translated_string (reason), frob));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1823 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1824
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1825 DOESNT_RETURN
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1826 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
1827 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1828 signal_error (Qimage_conversion_error,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1829 list3 (build_translated_string (reason), frob0, frob1));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1830 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1831
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 * nothing *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1837 nothing_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 return IMAGE_NOTHING_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 nothing_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1845 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1847 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 if (dest_mask & IMAGE_NOTHING_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 IMAGE_INSTANCE_TYPE (ii) = IMAGE_NOTHING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 incompatible_image_types (instantiator, dest_mask, IMAGE_NOTHING_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 * inherit *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 inherit_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 face_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 inherit_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 Lisp_Object face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1871 assert (XVECTOR_LENGTH (inst) == 3);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1872 face = XVECTOR_DATA (inst)[2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 if (!FACEP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 inst = vector3 (Qinherit, Q_face, Fget_face (face));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 return inst;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1879 inherit_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 return IMAGE_MONO_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 inherit_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1887 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 /* handled specially in image_instantiate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 * string *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 string_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1905 string_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 return IMAGE_TEXT_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1910 /* Called from autodetect_instantiate() */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 string_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1914 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1916 Lisp_Object string = find_keyword_in_vector (instantiator, Q_data);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1917 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1918
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1919 /* Should never get here with a domain other than a window. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1920 assert (!NILP (string) && WINDOWP (domain));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 if (dest_mask & IMAGE_TEXT_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1924 IMAGE_INSTANCE_TEXT_STRING (ii) = string;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1930 /* Sort out the size of the text that is being displayed. Calculating
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1931 it dynamically allows us to change the text and still see
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1932 everything. Note that the following methods are for text not string
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1933 since that is what the instantiated type is. The first method is a
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1934 helper that is used elsewhere for calculating text geometry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1935 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1936 query_string_geometry (Lisp_Object string, Lisp_Object face,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1937 unsigned int* width, unsigned int* height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1938 unsigned int* descent, Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1939 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1940 struct font_metric_info fm;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1941 unsigned char charsets[NUM_LEADING_BYTES];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1942 struct face_cachel frame_cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1943 struct face_cachel *cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1944 Lisp_Object frame = FW_FRAME (domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1945
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1946 /* Compute height */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1947 if (height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1948 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1949 /* Compute string metric info */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1950 find_charsets_in_bufbyte_string (charsets,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1951 XSTRING_DATA (string),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1952 XSTRING_LENGTH (string));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1953
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1954 /* Fallback to the default face if none was provided. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1955 if (!NILP (face))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1956 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1957 reset_face_cachel (&frame_cachel);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1958 update_face_cachel_data (&frame_cachel, frame, face);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1959 cachel = &frame_cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1960 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1961 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1962 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1963 cachel = WINDOW_FACE_CACHEL (XWINDOW (domain), DEFAULT_INDEX);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1964 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1965
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1966 ensure_face_cachel_complete (cachel, domain, charsets);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1967 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1968
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1969 *height = fm.ascent + fm.descent;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1970 /* #### descent only gets set if we query the height as well. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1971 if (descent)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1972 *descent = fm.descent;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1973 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1974
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1975 /* Compute width */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1976 if (width)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1977 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1978 if (!NILP (face))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1979 *width = redisplay_frame_text_width_string (XFRAME (frame),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1980 face,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1981 0, string, 0, -1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1982 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1983 *width = redisplay_frame_text_width_string (XFRAME (frame),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1984 Vdefault_face,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1985 0, string, 0, -1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1986 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1987 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1988
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1989 Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1990 query_string_font (Lisp_Object string, Lisp_Object face, Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1991 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1992 unsigned char charsets[NUM_LEADING_BYTES];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1993 struct face_cachel frame_cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1994 struct face_cachel *cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1995 int i;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1996 Lisp_Object frame = FW_FRAME (domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1997
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1998 /* Compute string font info */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
1999 find_charsets_in_bufbyte_string (charsets,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2000 XSTRING_DATA (string),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2001 XSTRING_LENGTH (string));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2002
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2003 reset_face_cachel (&frame_cachel);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2004 update_face_cachel_data (&frame_cachel, frame, face);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2005 cachel = &frame_cachel;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2006
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2007 ensure_face_cachel_complete (cachel, domain, charsets);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2008
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2009 for (i = 0; i < NUM_LEADING_BYTES; i++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2010 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2011 if (charsets[i])
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2012 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2013 return FACE_CACHEL_FONT (cachel,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2014 CHARSET_BY_LEADING_BYTE (i +
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2015 MIN_LEADING_BYTE));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2016
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2017 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2018 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2019
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2020 return Qnil; /* NOT REACHED */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2021 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2022
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2023 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2024 text_query_geometry (Lisp_Object image_instance,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2025 unsigned int* width, unsigned int* height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2026 enum image_instance_geometry disp, Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2027 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2028 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2029 unsigned int descent = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2030
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2031 query_string_geometry (IMAGE_INSTANCE_TEXT_STRING (ii),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2032 IMAGE_INSTANCE_FACE (ii),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2033 width, height, &descent, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2034
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2035 /* The descent gets set as a side effect of querying the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2036 geometry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2037 IMAGE_INSTANCE_TEXT_DESCENT (ii) = descent;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2038 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2039
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2040 /* set the properties of a string */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2041 static Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2042 text_set_property (Lisp_Object image_instance, Lisp_Object prop,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2043 Lisp_Object val)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2044 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2045 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2046
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2047 if (EQ (prop, Q_data))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2048 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2049 CHECK_STRING (val);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2050 IMAGE_INSTANCE_TEXT_STRING (ii) = val;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2051
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2052 return Qt;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2053 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2054 return Qunbound;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2055 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2056
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 * formatted-string *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 formatted_string_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2069 formatted_string_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 return IMAGE_TEXT_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 formatted_string_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2078 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 /* #### implement this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 warn_when_safe (Qunimplemented, Qnotice,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 "`formatted-string' not yet implemented; assuming `string'");
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2083
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2084 string_instantiate (image_instance, instantiator,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2085 pointer_fg, pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2089 /************************************************************************/
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2090 /* pixmap file functions */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2091 /************************************************************************/
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2092
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2093 /* If INSTANTIATOR refers to inline data, return Qnil.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2094 If INSTANTIATOR refers to data in a file, return the full filename
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2095 if it exists; otherwise, return a cons of (filename).
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2096
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2097 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2098 keywords used to look up the file and inline data,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2099 respectively, in the instantiator. Normally these would
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2100 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
2101
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2102 Lisp_Object
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2103 potential_pixmap_file_instantiator (Lisp_Object instantiator,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2104 Lisp_Object file_keyword,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2105 Lisp_Object data_keyword,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2106 Lisp_Object console_type)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2107 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2108 Lisp_Object file;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2109 Lisp_Object data;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2110
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2111 assert (VECTORP (instantiator));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2112
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2113 data = find_keyword_in_vector (instantiator, data_keyword);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2114 file = find_keyword_in_vector (instantiator, file_keyword);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2115
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2116 if (!NILP (file) && NILP (data))
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2117 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2118 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2119 (decode_console_type(console_type, ERROR_ME),
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2120 locate_pixmap_file, (file));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2121
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2122 if (!NILP (retval))
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2123 return retval;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2124 else
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2125 return Fcons (file, Qnil); /* should have been file */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2126 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2127
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2128 return Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2129 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2130
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2131 Lisp_Object
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2132 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2133 Lisp_Object image_type_tag)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2134 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2135 /* This function can call lisp */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2136 Lisp_Object file = Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2137 struct gcpro gcpro1, gcpro2;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2138 Lisp_Object alist = Qnil;
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2139
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2140 GCPRO2 (file, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2141
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2142 /* 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
2143 `data' will contain the inline data (if any) or Qnil, and `file'
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2144 will contain the name this data was derived from (if known) or
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2145 Qnil.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2146
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2147 Note that if we cannot generate any regular inline data, we
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2148 skip out. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2149
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2150 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2151 console_type);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2152
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2153 if (CONSP (file)) /* failure locating filename */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2154 signal_double_file_error ("Opening pixmap file",
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2155 "no such file or directory",
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2156 Fcar (file));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2157
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2158 if (NILP (file)) /* no conversion necessary */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2159 RETURN_UNGCPRO (inst);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2160
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2161 alist = tagged_vector_to_alist (inst);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2162
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2163 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2164 Lisp_Object data = make_string_from_file (file);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2165 alist = remassq_no_quit (Q_file, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2166 /* there can't be a :data at this point. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2167 alist = Fcons (Fcons (Q_file, file),
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2168 Fcons (Fcons (Q_data, data), alist));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2169 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2170
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2171 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2172 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2173 free_alist (alist);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2174 RETURN_UNGCPRO (result);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2175 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2176 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2177
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2178
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2179 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2180 /**********************************************************************
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2181 * XBM *
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2182 **********************************************************************/
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2183
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2184 /* 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
2185 of (width height bits), with checking done on the dimensions).
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2186 If not, signal an error. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2187
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2188 static void
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2189 check_valid_xbm_inline (Lisp_Object data)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2190 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2191 Lisp_Object width, height, bits;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2192
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2193 if (!CONSP (data) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2194 !CONSP (XCDR (data)) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2195 !CONSP (XCDR (XCDR (data))) ||
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2196 !NILP (XCDR (XCDR (XCDR (data)))))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2197 signal_simple_error ("Must be list of 3 elements", data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2198
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2199 width = XCAR (data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2200 height = XCAR (XCDR (data));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2201 bits = XCAR (XCDR (XCDR (data)));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2202
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2203 CHECK_STRING (bits);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2204
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2205 if (!NATNUMP (width))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2206 signal_simple_error ("Width must be a natural number", width);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2207
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2208 if (!NATNUMP (height))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2209 signal_simple_error ("Height must be a natural number", height);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2210
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2211 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2212 signal_simple_error ("data is too short for width and height",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2213 vector3 (width, height, bits));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2214 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2215
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2216 /* Validate method for XBM's. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2217
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2218 static void
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2219 xbm_validate (Lisp_Object instantiator)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2220 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2221 file_or_data_must_be_present (instantiator);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2222 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2223
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2224 /* Given a filename that is supposed to contain XBM data, return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2225 the inline representation of it as (width height bits). Return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2226 the hotspot through XHOT and YHOT, if those pointers are not 0.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2227 If there is no hotspot, XHOT and YHOT will contain -1.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2228
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2229 If the function fails:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2230
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2231 -- if OK_IF_DATA_INVALID is set and the data was invalid,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2232 return Qt.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2233 -- maybe return an error, or return Qnil.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2234 */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2235
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2236 #ifdef HAVE_X_WINDOWS
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2237 #include <X11/Xlib.h>
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2238 #else
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2239 #define XFree(data) free(data)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2240 #endif
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2241
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2242 Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2243 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2244 int ok_if_data_invalid)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2245 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2246 unsigned int w, h;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2247 Extbyte *data;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2248 int result;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2249 const char *filename_ext;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2250
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2251 TO_EXTERNAL_FORMAT (LISP_STRING, name,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2252 C_STRING_ALLOCA, filename_ext,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2253 Qfile_name);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2254 result = read_bitmap_data_from_file (filename_ext, &w, &h,
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2255 &data, xhot, yhot);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2256
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2257 if (result == BitmapSuccess)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2258 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2259 Lisp_Object retval;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2260 int len = (w + 7) / 8 * h;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2261
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2262 retval = list3 (make_int (w), make_int (h),
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2263 make_ext_string (data, len, Qbinary));
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2264 XFree ((char *) data);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2265 return retval;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2266 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2267
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2268 switch (result)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2269 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2270 case BitmapOpenFailed:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2271 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2272 /* should never happen */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2273 signal_double_file_error ("Opening bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2274 "no such file or directory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2275 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2276 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2277 case BitmapFileInvalid:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2278 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2279 if (ok_if_data_invalid)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2280 return Qt;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2281 signal_double_file_error ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2282 "invalid data in file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2283 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2284 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2285 case BitmapNoMemory:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2286 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2287 signal_double_file_error ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2288 "out of memory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2289 name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2290 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2291 default:
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2292 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2293 signal_double_file_error_2 ("Reading bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2294 "unknown error code",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2295 make_int (result), name);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2296 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2297 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2298
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2299 return Qnil; /* not reached */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2300 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2301
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2302 Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2303 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2304 Lisp_Object mask_file, Lisp_Object console_type)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2305 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2306 /* This is unclean but it's fairly standard -- a number of the
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2307 bitmaps in /usr/include/X11/bitmaps use it -- so we support
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2308 it. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2309 if (NILP (mask_file)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2310 /* don't override explicitly specified mask data. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2311 && NILP (assq_no_quit (Q_mask_data, alist))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2312 && !NILP (file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2313 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2314 mask_file = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2315 (decode_console_type(console_type, ERROR_ME),
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2316 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2317 if (NILP (mask_file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2318 mask_file = MAYBE_LISP_CONTYPE_METH
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2319 (decode_console_type(console_type, ERROR_ME),
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2320 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2321 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2322
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2323 if (!NILP (mask_file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2324 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2325 Lisp_Object mask_data =
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2326 bitmap_to_lisp_data (mask_file, 0, 0, 0);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2327 alist = remassq_no_quit (Q_mask_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2328 /* there can't be a :mask-data at this point. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2329 alist = Fcons (Fcons (Q_mask_file, mask_file),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2330 Fcons (Fcons (Q_mask_data, mask_data), alist));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2331 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2332
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2333 return alist;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2334 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2335
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2336 /* Normalize method for XBM's. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2337
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2338 static Lisp_Object
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2339 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2340 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2341 Lisp_Object file = Qnil, mask_file = Qnil;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2342 struct gcpro gcpro1, gcpro2, gcpro3;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2343 Lisp_Object alist = Qnil;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2344
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2345 GCPRO3 (file, mask_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2346
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2347 /* Now, convert any file data into inline data for both the regular
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2348 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
2349 the inline data (if any) or Qnil, and `file' will contain
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2350 the name this data was derived from (if known) or Qnil.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2351 Likewise for `mask_file' and `mask_data'.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2352
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2353 Note that if we cannot generate any regular inline data, we
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2354 skip out. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2355
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2356 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2357 console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2358 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2359 Q_mask_data, console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2360
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2361 if (CONSP (file)) /* failure locating filename */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2362 signal_double_file_error ("Opening bitmap file",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2363 "no such file or directory",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2364 Fcar (file));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2365
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2366 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2367 RETURN_UNGCPRO (inst);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2368
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2369 alist = tagged_vector_to_alist (inst);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2370
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2371 if (!NILP (file))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2372 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2373 int xhot, yhot;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2374 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2375 alist = remassq_no_quit (Q_file, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2376 /* there can't be a :data at this point. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2377 alist = Fcons (Fcons (Q_file, file),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2378 Fcons (Fcons (Q_data, data), alist));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2379
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2380 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2381 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2382 alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2383 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2384 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2385 alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2386 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2387
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2388 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2389
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2390 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2391 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2392 free_alist (alist);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2393 RETURN_UNGCPRO (result);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2394 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2395 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2396
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2397
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2398 static int
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2399 xbm_possible_dest_types (void)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2400 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2401 return
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2402 IMAGE_MONO_PIXMAP_MASK |
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2403 IMAGE_COLOR_PIXMAP_MASK |
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2404 IMAGE_POINTER_MASK;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2405 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2406
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2407 #endif
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2408
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
2409
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2410 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2411 /**********************************************************************
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2412 * X-Face *
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2413 **********************************************************************/
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2414
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2415 static void
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2416 xface_validate (Lisp_Object instantiator)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2417 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2418 file_or_data_must_be_present (instantiator);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2419 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2420
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2421 static Lisp_Object
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2422 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2423 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2424 /* This function can call lisp */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2425 Lisp_Object file = Qnil, mask_file = Qnil;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2426 struct gcpro gcpro1, gcpro2, gcpro3;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2427 Lisp_Object alist = Qnil;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2428
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2429 GCPRO3 (file, mask_file, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2430
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2431 /* 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
2432 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
2433 the inline data (if any) or Qnil, and `file' will contain
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2434 the name this data was derived from (if known) or Qnil.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2435 Likewise for `mask_file' and `mask_data'.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2436
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2437 Note that if we cannot generate any regular inline data, we
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2438 skip out. */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2439
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2440 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2441 console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2442 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2443 Q_mask_data, console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2444
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2445 if (CONSP (file)) /* failure locating filename */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2446 signal_double_file_error ("Opening bitmap file",
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2447 "no such file or directory",
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2448 Fcar (file));
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2449
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2450 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2451 RETURN_UNGCPRO (inst);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2452
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2453 alist = tagged_vector_to_alist (inst);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2454
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2455 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2456 Lisp_Object data = make_string_from_file (file);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2457 alist = remassq_no_quit (Q_file, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2458 /* there can't be a :data at this point. */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2459 alist = Fcons (Fcons (Q_file, file),
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2460 Fcons (Fcons (Q_data, data), alist));
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2461 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2462
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2463 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2464
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2465 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2466 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2467 free_alist (alist);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2468 RETURN_UNGCPRO (result);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2469 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2470 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2471
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2472 static int
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2473 xface_possible_dest_types (void)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2474 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2475 return
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2476 IMAGE_MONO_PIXMAP_MASK |
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2477 IMAGE_COLOR_PIXMAP_MASK |
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2478 IMAGE_POINTER_MASK;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2479 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2480
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2481 #endif /* HAVE_XFACE */
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2482
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2483
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2484 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2485
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2486 /**********************************************************************
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2487 * XPM *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2488 **********************************************************************/
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2489
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2490 Lisp_Object
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2491 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2492 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2493 char **data;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2494 int result;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2495 char *fname = 0;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2496
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2497 TO_EXTERNAL_FORMAT (LISP_STRING, name,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2498 C_STRING_ALLOCA, fname,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2499 Qfile_name);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2500 result = XpmReadFileToData (fname, &data);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2501
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2502 if (result == XpmSuccess)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2503 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2504 Lisp_Object retval = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2505 struct buffer *old_buffer = current_buffer;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2506 Lisp_Object temp_buffer =
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2507 Fget_buffer_create (build_string (" *pixmap conversion*"));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2508 int elt;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2509 int height, width, ncolors;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2510 struct gcpro gcpro1, gcpro2, gcpro3;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2511 int speccount = specpdl_depth ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2512
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2513 GCPRO3 (name, retval, temp_buffer);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2514
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2515 specbind (Qinhibit_quit, Qt);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2516 set_buffer_internal (XBUFFER (temp_buffer));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2517 Ferase_buffer (Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2518
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2519 buffer_insert_c_string (current_buffer, "/* XPM */\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2520 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2521
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2522 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2523 for (elt = 0; elt <= width + ncolors; elt++)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2524 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2525 buffer_insert_c_string (current_buffer, "\"");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2526 buffer_insert_c_string (current_buffer, data[elt]);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2527
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2528 if (elt < width + ncolors)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2529 buffer_insert_c_string (current_buffer, "\",\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2530 else
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2531 buffer_insert_c_string (current_buffer, "\"};\r");
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2532 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2533
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2534 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2535 XpmFree (data);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2536
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2537 set_buffer_internal (old_buffer);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2538 unbind_to (speccount, Qnil);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2539
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2540 RETURN_UNGCPRO (retval);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2541 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2542
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2543 switch (result)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2544 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2545 case XpmFileInvalid:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2546 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2547 if (ok_if_data_invalid)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2548 return Qt;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2549 signal_image_error ("invalid XPM data in file", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2550 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2551 case XpmNoMemory:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2552 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2553 signal_double_file_error ("Reading pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2554 "out of memory", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2555 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2556 case XpmOpenFailed:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2557 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2558 /* should never happen? */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2559 signal_double_file_error ("Opening pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2560 "no such file or directory", name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2561 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2562 default:
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2563 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2564 signal_double_file_error_2 ("Parsing pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2565 "unknown error code",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2566 make_int (result), name);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2567 break;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2568 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2569 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2570
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2571 return Qnil; /* not reached */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2572 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2573
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2574 static void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2575 check_valid_xpm_color_symbols (Lisp_Object data)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2576 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2577 Lisp_Object rest;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2578
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2579 for (rest = data; !NILP (rest); rest = XCDR (rest))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2580 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2581 if (!CONSP (rest) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2582 !CONSP (XCAR (rest)) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2583 !STRINGP (XCAR (XCAR (rest))) ||
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2584 (!STRINGP (XCDR (XCAR (rest))) &&
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2585 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2586 signal_simple_error ("Invalid color symbol alist", data);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2587 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2588 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2589
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2590 static void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2591 xpm_validate (Lisp_Object instantiator)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2592 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2593 file_or_data_must_be_present (instantiator);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2594 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2595
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2596 Lisp_Object Vxpm_color_symbols;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2597
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2598 Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2599 evaluate_xpm_color_symbols (void)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2600 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2601 Lisp_Object rest, results = Qnil;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2602 struct gcpro gcpro1, gcpro2;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2603
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2604 GCPRO2 (rest, results);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2605 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2606 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2607 Lisp_Object name, value, cons;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2608
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2609 CHECK_CONS (rest);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2610 cons = XCAR (rest);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2611 CHECK_CONS (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2612 name = XCAR (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2613 CHECK_STRING (name);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2614 value = XCDR (cons);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2615 CHECK_CONS (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2616 value = XCAR (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2617 value = Feval (value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2618 if (NILP (value))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2619 continue;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2620 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2621 signal_simple_error
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2622 ("Result from xpm-color-symbols eval must be nil, string, or color",
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2623 value);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2624 results = Fcons (Fcons (name, value), results);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2625 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2626 UNGCPRO; /* no more evaluation */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2627 return results;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2628 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2629
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2630 static Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2631 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2632 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2633 Lisp_Object file = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2634 Lisp_Object color_symbols;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2635 struct gcpro gcpro1, gcpro2;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2636 Lisp_Object alist = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2637
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2638 GCPRO2 (file, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2639
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2640 /* 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
2641 `data' will contain the inline data (if any) or Qnil, and
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2642 `file' will contain the name this data was derived from (if
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2643 known) or Qnil.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2644
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2645 Note that if we cannot generate any regular inline data, we
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2646 skip out. */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2647
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2648 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2649 console_type);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2650
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2651 if (CONSP (file)) /* failure locating filename */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2652 signal_double_file_error ("Opening pixmap file",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2653 "no such file or directory",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2654 Fcar (file));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2655
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2656 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2657 Qunbound);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2658
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2659 if (NILP (file) && !UNBOUNDP (color_symbols))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2660 /* no conversion necessary */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2661 RETURN_UNGCPRO (inst);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2662
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2663 alist = tagged_vector_to_alist (inst);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2664
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2665 if (!NILP (file))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2666 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2667 Lisp_Object data = pixmap_to_lisp_data (file, 0);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2668 alist = remassq_no_quit (Q_file, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2669 /* there can't be a :data at this point. */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2670 alist = Fcons (Fcons (Q_file, file),
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2671 Fcons (Fcons (Q_data, data), alist));
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2672 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2673
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2674 if (UNBOUNDP (color_symbols))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2675 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2676 color_symbols = evaluate_xpm_color_symbols ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2677 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2678 alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2679 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2680
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2681 {
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2682 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2683 free_alist (alist);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2684 RETURN_UNGCPRO (result);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
2685 }
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2686 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2687
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2688 static int
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2689 xpm_possible_dest_types (void)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2690 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2691 return
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2692 IMAGE_MONO_PIXMAP_MASK |
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2693 IMAGE_COLOR_PIXMAP_MASK |
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2694 IMAGE_POINTER_MASK;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2695 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2696
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2697 #endif /* HAVE_XPM */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2698
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2699
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 * Image Specifier Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 DEFINE_SPECIFIER_TYPE (image);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 image_create (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2709 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2717 image_mark (Lisp_Object obj)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2719 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2720
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2721 mark_object (IMAGE_SPECIFIER_ATTACHEE (image));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2722 mark_object (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 image_instantiate_cache_result (Lisp_Object locative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 {
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2728 /* locative = (instance instantiator . subtable)
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2729
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2730 So we are using the instantiator as the key and the instance as
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2731 the value. Since the hashtable is key-weak this means that the
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2732 image instance will stay around as long as the instantiator stays
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2733 around. The instantiator is stored in the `image' slot of the
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2734 glyph, so as long as the glyph is marked the instantiator will be
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2735 as well and hence the cached image instance also.*/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2736 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 free_cons (XCONS (XCDR (locative)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 free_cons (XCONS (locative));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 /* Given a specification for an image, return an instance of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 the image which matches the given instantiator and which can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 displayed in the given domain. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 Lisp_Object domain, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 Lisp_Object depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 Lisp_Object device = DFW_DEVICE (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 struct device *d = XDEVICE (device);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2753 Lisp_Object glyph = IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 if (IMAGE_INSTANCEP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 /* make sure that the image instance's device and type are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 matching. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 if (EQ (device, XIMAGE_INSTANCE_DEVICE (instantiator)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 int mask =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 if (mask & dest_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 return instantiator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 signal_simple_error ("Type of image instance not allowed here",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 signal_simple_error_2 ("Wrong device for image instance",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 instantiator, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 else if (VECTORP (instantiator)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2777 && EQ (XVECTOR_DATA (instantiator)[0], Qinherit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2779 assert (XVECTOR_LENGTH (instantiator) == 3);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 return (FACE_PROPERTY_INSTANCE
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2781 (Fget_face (XVECTOR_DATA (instantiator)[2]),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 Qbackground_pixmap, domain, 0, depth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 Lisp_Object instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 Lisp_Object subtable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 Lisp_Object ls3 = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 Lisp_Object pointer_fg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 Lisp_Object pointer_bg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2792 /* We have to put subwindow, widget and text image instances in
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2793 a per-window cache so that we can see the same glyph in
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2794 different windows. Unfortunately we do not know the type of
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2795 image_instance until after it has been created. We thus need
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2796 to be really careful how we place things. */
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2797
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 if (pointerp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 ls3 = list3 (instantiator, pointer_fg, pointer_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 /* First look in the hash table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 subtable = Fgethash (make_int (dest_mask), d->image_instance_cache,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 if (UNBOUNDP (subtable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 /* For the image instance cache, we do comparisons with EQ rather
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 than with EQUAL, as we do for color and font names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 The reasons are:
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2813
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 1) pixmap data can be very long, and thus the hashing and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 comparing will take awhile.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 2) It's not so likely that we'll run into things that are EQUAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 but not EQ (that can happen a lot with faces, because their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 specifiers are copied around); but pixmaps tend not to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 in faces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 However, if the image-instance could be a pointer, we have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 use EQUAL because we massaged the instantiator into a cons3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 also containing the foreground and background of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 pointer face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2827 subtable = make_lisp_hash_table (20,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2828 pointerp ? HASH_TABLE_KEY_CAR_WEAK
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2829 : HASH_TABLE_KEY_WEAK,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2830 pointerp ? HASH_TABLE_EQUAL
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2831 : HASH_TABLE_EQ);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 Fputhash (make_int (dest_mask), subtable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 d->image_instance_cache);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 instance = Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2837 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2838 instance = Fgethash (pointerp ? ls3 : instantiator,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2839 subtable, Qunbound);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2840 /* subwindows have a per-window cache and have to be treated
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2841 differently. dest_mask can be a bitwise OR of all image
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2842 types so we will only catch someone possibly trying to
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2843 instantiate a subwindow type thing. Unfortunately, this
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2844 will occur most of the time so this probably slows things
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2845 down. But with the current design I don't see anyway
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2846 round it. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2847 if (UNBOUNDP (instance)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2848 &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2849 dest_mask & (IMAGE_SUBWINDOW_MASK
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2850 | IMAGE_WIDGET_MASK
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2851 | IMAGE_LAYOUT_MASK
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2852 | IMAGE_TEXT_MASK)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2853 && WINDOWP (domain))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2854 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2855 instance = Fgethash (instantiator,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2856 XWINDOW (domain)->subwindow_instance_cache,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2857 Qunbound);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2858 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2859 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 if (UNBOUNDP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 Lisp_Object locative =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 noseeum_cons (Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 noseeum_cons (pointerp ? ls3 : instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 subtable));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 int speccount = specpdl_depth ();
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2868
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 /* make sure we cache the failures, too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 Use an unwind-protect to catch such errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 If we fail, the unwind-protect records nil in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 the hash table. If we succeed, we change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 car of the locative to the resulting instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 which gets recorded instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 record_unwind_protect (image_instantiate_cache_result,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 locative);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 instance = instantiate_image_instantiator (device,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2878 domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 pointer_fg, pointer_bg,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2881 dest_mask,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2882 glyph);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
2883
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 Fsetcar (locative, instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2885 /* only after the image has been instantiated do we know
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2886 whether we need to put it in the per-window image instance
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2887 cache. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2888 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2889 &
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2890 (IMAGE_SUBWINDOW_MASK
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2891 | IMAGE_WIDGET_MASK
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2892 | IMAGE_LAYOUT_MASK
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2893 | IMAGE_TEXT_MASK ))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2894 {
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2895 #ifdef ERROR_CHECK_GLYPHS
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2896 if (XIMAGE_INSTANCE_TYPE (instance) != IMAGE_TEXT)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2897 assert (EQ (XIMAGE_INSTANCE_SUBWINDOW_FRAME (instance),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2898 FW_FRAME (domain)));
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2899 #endif
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2900 if (!WINDOWP (domain))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2901 signal_simple_error ("Can't instantiate text or subwindow outside a window",
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2902 instantiator);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2903 #ifdef ERROR_CHECK_GLYPHS
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2904 if (XIMAGE_INSTANCE_TYPE (instance) != IMAGE_TEXT)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2905 assert (EQ (XIMAGE_INSTANCE_SUBWINDOW_FRAME (instance),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2906 FW_FRAME (domain)));
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2907 #endif
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
2908 Fsetcdr (XCDR (locative), XWINDOW (domain)->subwindow_instance_cache);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2909 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 unbind_to (speccount, Qnil);
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2911 #ifdef ERROR_CHECK_GLYPHS
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2912 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2913 &
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2914 (IMAGE_SUBWINDOW_MASK
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2915 | IMAGE_WIDGET_MASK
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2916 | IMAGE_LAYOUT_MASK
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2917 | IMAGE_TEXT_MASK ))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2918 assert (EQ (Fgethash ((pointerp ? ls3 : instantiator),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2919 XWINDOW (domain)->subwindow_instance_cache,
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2920 Qunbound), instance));
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2921 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 free_list (ls3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 if (NILP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 signal_simple_error ("Can't instantiate image (probably cached)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 instantiator);
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2929 #ifdef ERROR_CHECK_GLYPHS
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2930 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2931 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2932 assert (EQ (XIMAGE_INSTANCE_SUBWINDOW_FRAME (instance),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2933 FW_FRAME (domain)));
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
2934 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 return instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 /* Validate an image instantiator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 image_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 else if (VECTORP (instantiator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2951 Lisp_Object *elt = XVECTOR_DATA (instantiator);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2952 int instantiator_len = XVECTOR_LENGTH (instantiator);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 struct image_instantiator_methods *meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 Lisp_Object already_seen = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 if (instantiator_len < 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 signal_simple_error ("Vector length must be at least 1",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 if (!(instantiator_len & 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 ("Must have alternating keyword/value pairs", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 GCPRO1 (already_seen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 for (i = 1; i < instantiator_len; i += 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 Lisp_Object keyword = elt[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 Lisp_Object value = elt[i+1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 int j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 CHECK_SYMBOL (keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 if (!SYMBOL_IS_KEYWORD (keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 signal_simple_error ("Symbol must begin with a colon", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 for (j = 0; j < Dynarr_length (meths->keywords); j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 if (j == Dynarr_length (meths->keywords))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 signal_simple_error ("Unrecognized keyword", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 if (!Dynarr_at (meths->keywords, j).multiple_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 if (!NILP (memq_no_quit (keyword, already_seen)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 ("Keyword may not appear more than once", keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 already_seen = Fcons (keyword, already_seen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 (Dynarr_at (meths->keywords, j).validate) (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 signal_simple_error ("Must be string or vector", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 image_after_change (Lisp_Object specifier, Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 Lisp_Object attachee =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 Lisp_Object property =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 if (FACEP (attachee))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 face_property_was_changed (attachee, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 else if (GLYPHP (attachee))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 glyph_property_was_changed (attachee, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3022 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 Lisp_Object tag_set, Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 Lisp_Object possible_console_types = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 Lisp_Object retlist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 LIST_LOOP (rest, Vconsole_type_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 Lisp_Object contype = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 if (!NILP (memq_no_quit (contype, tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 possible_console_types = Fcons (contype, possible_console_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 if (XINT (Flength (possible_console_types)) > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 /* two conflicting console types specified */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 if (NILP (possible_console_types))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 possible_console_types = Vconsole_type_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 GCPRO2 (retlist, possible_console_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 LIST_LOOP (rest, possible_console_types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 Lisp_Object contype = XCAR (rest);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3056 Lisp_Object newinst = call_with_suspended_errors
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3057 ((lisp_fn_t) normalize_image_instantiator,
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3058 Qnil, Qimage, ERROR_ME_NOT, 3, instantiator, contype,
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3059 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
3060
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 if (!NILP (newinst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 Lisp_Object newtag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 if (NILP (memq_no_quit (contype, tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 newtag = Fcons (contype, tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 newtag = tag_set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 retlist = Fcons (Fcons (newtag, newinst), retlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 return retlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3077 /* Copy an image instantiator. We can't use Fcopy_tree since widgets
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3078 may contain circular references which would send Fcopy_tree into
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3079 infloop death. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3080 static Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3081 image_copy_vector_instantiator (Lisp_Object instantiator)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3082 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3083 int i;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3084 struct image_instantiator_methods *meths;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3085 Lisp_Object *elt;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3086 int instantiator_len;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3087
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3088 CHECK_VECTOR (instantiator);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3089
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3090 instantiator = Fcopy_sequence (instantiator);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3091 elt = XVECTOR_DATA (instantiator);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3092 instantiator_len = XVECTOR_LENGTH (instantiator);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3093
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3094 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3095
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3096 for (i = 1; i < instantiator_len; i += 2)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3097 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3098 int j;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3099 Lisp_Object keyword = elt[i];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3100 Lisp_Object value = elt[i+1];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3101
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3102 /* Find the keyword entry. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3103 for (j = 0; j < Dynarr_length (meths->keywords); j++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3104 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3105 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3106 break;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3107 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3108
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3109 /* Only copy keyword values that should be copied. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3110 if (Dynarr_at (meths->keywords, j).copy_p
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3111 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3112 (CONSP (value) || VECTORP (value)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3113 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3114 elt [i+1] = Fcopy_tree (value, Qt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3115 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3116 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3117
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3118 return instantiator;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3119 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3120
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3121 static Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3122 image_copy_instantiator (Lisp_Object arg)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3123 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3124 if (CONSP (arg))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3125 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3126 Lisp_Object rest;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3127 rest = arg = Fcopy_sequence (arg);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3128 while (CONSP (rest))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3129 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3130 Lisp_Object elt = XCAR (rest);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3131 if (CONSP (elt))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3132 XCAR (rest) = Fcopy_tree (elt, Qt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3133 else if (VECTORP (elt))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3134 XCAR (rest) = image_copy_vector_instantiator (elt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3135 if (VECTORP (XCDR (rest))) /* hack for (a b . [c d]) */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3136 XCDR (rest) = Fcopy_tree (XCDR (rest), Qt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3137 rest = XCDR (rest);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3138 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3139 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3140 else if (VECTORP (arg))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3141 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3142 arg = image_copy_vector_instantiator (arg);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3143 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3144 return arg;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3145 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3146
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3147 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 Return non-nil if OBJECT is an image specifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 An image specifier is used for images (pixmaps and the like). It is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 to describe the actual image in a glyph. It is instanced as an image-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 Image instantiators come in many formats: `xbm', `xpm', `gif', `jpeg',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 etc. This describes the format of the data describing the image. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 resulting image instances also come in many types -- `mono-pixmap',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 `color-pixmap', `text', `pointer', etc. This refers to the behavior of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 the image and the sorts of places it can appear. (For example, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 color-pixmap image has fixed colors specified for it, while a
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3160 mono-pixmap image comes in two unspecified shades "foreground" and
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3161 "background" that are determined from the face of the glyph or
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 surrounding text; a text image appears as a string of text and has an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 unspecified foreground, background, and font; a pointer image behaves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 like a mono-pixmap image but can only be used as a mouse pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 \[mono-pixmap images cannot be used as mouse pointers]; etc.) It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 important to keep the distinction between image instantiator format and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 image instance type in mind. Typically, a given image instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 format can result in many different image instance types (for example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 `xpm' can be instanced as `color-pixmap', `mono-pixmap', or `pointer';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 whereas `cursor-font' can be instanced only as `pointer'), and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 particular image instance type can be generated by many different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 image instantiator formats (e.g. `color-pixmap' can be generated by `xpm',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 `gif', `jpeg', etc.).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 See `make-image-instance' for a more detailed discussion of image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 instance types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 An image instantiator should be a string or a vector of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 [FORMAT :KEYWORD VALUE ...]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 i.e. a format symbol followed by zero or more alternating keyword-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 pairs. FORMAT should be one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 'nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 (Don't display anything; no keywords are valid for this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 Can only be instanced as `nothing'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 'string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 (Display this image as a text string. Can only be instanced
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 as `text', although support for instancing as `mono-pixmap'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 should be added.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 'formatted-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 (Display this image as a text string, with replaceable fields;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 not currently implemented.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 'xbm
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3196 (An X bitmap; only if X or Windows support was compiled into this XEmacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 Can be instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 'xpm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 (An XPM pixmap; only if XPM support was compiled into this XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 Can be instanced as `color-pixmap', `mono-pixmap', or `pointer'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 'xface
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 (An X-Face bitmap, used to encode people's faces in e-mail messages;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 only if X-Face support was compiled into this XEmacs. Can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 instanced as `mono-pixmap', `color-pixmap', or `pointer'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 'gif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 (A GIF87 or GIF89 image; only if GIF support was compiled into this
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3207 XEmacs. NOTE: only the first frame of animated gifs will be displayed.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3208 Can be instanced as `color-pixmap'.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 'jpeg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 (A JPEG image; only if JPEG support was compiled into this XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 Can be instanced as `color-pixmap'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 'png
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3213 (A PNG image; only if PNG support was compiled into this XEmacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 Can be instanced as `color-pixmap'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 'tiff
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3216 (A TIFF image; only if TIFF support was compiled into this XEmacs.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3217 Can be instanced as `color-pixmap'.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 'cursor-font
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3219 (One of the standard cursor-font names, such as "watch" or
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3220 "right_ptr" under X. Under X, this is, more specifically, any
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 of the standard cursor names from appendix B of the Xlib manual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 [also known as the file <X11/cursorfont.h>] minus the XC_ prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 On other window systems, the valid names will be specific to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 type of window system. Can only be instanced as `pointer'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 'font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 (A glyph from a font; i.e. the name of a font, and glyph index into it
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3227 of the form "FONT fontname index [[mask-font] mask-index]".
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 Currently can only be instanced as `pointer', although this should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 probably be fixed.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 'subwindow
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3231 (An embedded windowing system window.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3232 'edit-field
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3233 (A text editing widget glyph.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3234 'button
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3235 (A button widget glyph; either a push button, radio button or toggle button.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3236 'tab-control
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3237 (A tab widget glyph; a series of user selectable tabs.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3238 'progress-gauge
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3239 (A sliding widget glyph, for showing progress.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3240 'combo-box
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3241 (A drop list of selectable items in a widget glyph, for editing text.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3242 'label
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3243 (A static, text-only, widget glyph; for displaying text.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3244 'tree-view
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3245 (A folding widget glyph.)
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3246 'autodetect
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 (XEmacs tries to guess what format the data is in. If X support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 exists, the data string will be checked to see if it names a filename.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 If so, and this filename contains XBM or XPM data, the appropriate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 sort of pixmap or pointer will be created. [This includes picking up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 any specified hotspot or associated mask file.] Otherwise, if `pointer'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 is one of the allowable image-instance types and the string names a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 valid cursor-font name, the image will be created as a pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 Otherwise, the image will be displayed as text. If no X support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 exists, the image will always be displayed as text.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 'inherit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 Inherit from the background-pixmap property of a face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 The valid keywords are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 :data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 (Inline data. For most formats above, this should be a string. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 XBM images, this should be a list of three elements: width, height, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 a string of bit data. This keyword is not valid for instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 formats `nothing' and `inherit'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 :file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 (Data is contained in a file. The value is the name of this file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 If both :data and :file are specified, the image is created from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 what is specified in :data and the string in :file becomes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 value of the `image-instance-file-name' function when applied to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 the resulting image-instance. This keyword is not valid for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 instantiator formats `nothing', `string', `formatted-string',
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3273 `cursor-font', `font', `autodetect', and `inherit'.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 :foreground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 :background
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3276 (For `xbm', `xface', `cursor-font', `widget' and `font'. These keywords
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 allow you to explicitly specify foreground and background colors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 The argument should be anything acceptable to `make-color-instance'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 This will cause what would be a `mono-pixmap' to instead be colorized
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 as a two-color color-pixmap, and specifies the foreground and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 background colors for a pointer instead of black and white.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 :mask-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 (For `xbm' and `xface'. This specifies a mask to be used with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 bitmap. The format is a list of width, height, and bits, like for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 :data.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 :mask-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 (For `xbm' and `xface'. This specifies a file containing the mask data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 If neither a mask file nor inline mask data is given for an XBM image,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 and the XBM image comes from a file, XEmacs will look for a mask file
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3290 with the same name as the image file but with "Mask" or "msk"
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3291 appended. For example, if you specify the XBM file "left_ptr"
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3292 [usually located in "/usr/include/X11/bitmaps"], the associated
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3293 mask file "left_ptrmsk" will automatically be picked up.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 :hotspot-x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 :hotspot-y
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 (For `xbm' and `xface'. These keywords specify a hotspot if the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 is instantiated as a `pointer'. Note that if the XBM image file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 specifies a hotspot, it will automatically be picked up if no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 explicit hotspot is given.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 :color-symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 (Only for `xpm'. This specifies an alist that maps strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 that specify symbolic color names to the actual color to be used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 for that symbolic color (in the form of a string or a color-specifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 object). If this is not specified, the contents of `xpm-color-symbols'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 are used to generate the alist.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 :face
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3307 (Only for `inherit'. This specifies the face to inherit from.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3308 For widget glyphs this also specifies the face to use for
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3309 display. It defaults to gui-element-face.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3310
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3311 Keywords accepted as menu item specs are also accepted by widget
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3312 glyphs. These are `:selected', `:active', `:suffix', `:keys',
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3313 `:style', `:filter', `:config', `:included', `:key-sequence',
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3314 `:accelerator', `:label' and `:callback'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 If instead of a vector, the instantiator is a string, it will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 converted into a vector by looking it up according to the specs in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 `console-type-image-conversion-list' (q.v.) for the console type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 the domain (usually a window; sometimes a frame or device) over which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 the image is being instantiated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 If the instantiator specifies data from a file, the data will be read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 in at the time that the instantiator is added to the image (which may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 be well before when the image is actually displayed), and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 instantiator will be converted into one of the inline-data forms, with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 the filename retained using a :file keyword. This implies that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 file must exist when the instantiator is added to the image, but does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 not need to exist at any other time (e.g. it may safely be a temporary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 file).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3330 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3331 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3333 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 * Glyph Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3342 mark_glyph (Lisp_Object obj)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3344 Lisp_Glyph *glyph = XGLYPH (obj);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3345
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3346 mark_object (glyph->image);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3347 mark_object (glyph->contrib_p);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3348 mark_object (glyph->baseline);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3349 mark_object (glyph->face);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3351 return glyph->plist;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3357 Lisp_Glyph *glyph = XGLYPH (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 char buf[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 error ("printing unreadable object #<glyph 0x%x>", glyph->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 write_c_string ("#<glyph (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 print_internal (Fglyph_type (obj), printcharfun, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 write_c_string (") ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 print_internal (glyph->image, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 sprintf (buf, "0x%x>", glyph->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 /* Glyphs are equal if all of their display attributes are equal. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 don't compare names or doc-strings, because that would make equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 be eq.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 This isn't concerned with "unspecified" attributes, that's what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 #'glyph-differs-from-default-p is for. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3378 glyph_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3380 Lisp_Glyph *g1 = XGLYPH (obj1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3381 Lisp_Glyph *g2 = XGLYPH (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 depth++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3385 return (internal_equal (g1->image, g2->image, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3386 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3387 internal_equal (g1->baseline, g2->baseline, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3388 internal_equal (g1->face, g2->face, depth) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3389 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 glyph_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 depth++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 /* No need to hash all of the elements; that would take too long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 Just hash the most common ones. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3399 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3400 internal_hash (XGLYPH (obj)->face, depth));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3406 Lisp_Glyph *g = XGLYPH (obj);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3407
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3408 if (EQ (prop, Qimage)) return g->image;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3409 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3410 if (EQ (prop, Qbaseline)) return g->baseline;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3411 if (EQ (prop, Qface)) return g->face;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3419 if (EQ (prop, Qimage) ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3420 EQ (prop, Qcontrib_p) ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3421 EQ (prop, Qbaseline))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3422 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 if (EQ (prop, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3426 XGLYPH (obj)->face = Fget_face (value);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3430 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3437 if (EQ (prop, Qimage) ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3438 EQ (prop, Qcontrib_p) ||
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3439 EQ (prop, Qbaseline))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3440 return -1;
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 if (EQ (prop, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3444 XGLYPH (obj)->face = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3448 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 glyph_plist (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3454 Lisp_Glyph *glyph = XGLYPH (obj);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3455 Lisp_Object result = glyph->plist;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3456
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3457 result = cons3 (Qface, glyph->face, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3458 result = cons3 (Qbaseline, glyph->baseline, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3459 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3460 result = cons3 (Qimage, glyph->image, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3461
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3462 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3465 static const struct lrecord_description glyph_description[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3466 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, image) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3467 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, contrib_p) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3468 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, baseline) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3469 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, face) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3470 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, plist) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3471 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3472 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3473
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3474 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3475 mark_glyph, print_glyph, 0,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3476 glyph_equal, glyph_hash, glyph_description,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3477 glyph_getprop, glyph_putprop,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3478 glyph_remprop, glyph_plist,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3479 Lisp_Glyph);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3480
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 allocate_glyph (enum glyph_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 Lisp_Object locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3486 /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 Lisp_Object obj = Qnil;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3488 Lisp_Glyph *g = alloc_lcrecord_type (Lisp_Glyph, &lrecord_glyph);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3489
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 g->type = type;
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3491 g->image = Fmake_specifier (Qimage); /* This function can GC */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3492 g->dirty = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 switch (g->type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 case GLYPH_BUFFER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 XIMAGE_SPECIFIER_ALLOWED (g->image) =
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3497 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3498 | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3499 | IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3500 | IMAGE_LAYOUT_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 case GLYPH_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 XIMAGE_SPECIFIER_ALLOWED (g->image) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 case GLYPH_ICON:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 XIMAGE_SPECIFIER_ALLOWED (g->image) =
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3508 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3509 | IMAGE_COLOR_PIXMAP_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3515 /* 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
3516 /* 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
3517 /* best to GCPRO everything. */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3518 {
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3519 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3520 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3521 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3522 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3523
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3524 GCPRO4 (obj, tem1, tem2, tem3);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3525
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3526 set_specifier_fallback (g->image, tem1);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3527 g->contrib_p = Fmake_specifier (Qboolean);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3528 set_specifier_fallback (g->contrib_p, tem2);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3529 /* #### should have a specifier for the following */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3530 g->baseline = Fmake_specifier (Qgeneric);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3531 set_specifier_fallback (g->baseline, tem3);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3532 g->face = Qnil;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3533 g->plist = Qnil;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3534 g->after_change = after_change;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3535 XSETGLYPH (obj, g);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3536
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3537 set_image_attached_to (g->image, obj, Qimage);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3538 UNGCPRO;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
3539 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 return obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 static enum glyph_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 decode_glyph_type (Lisp_Object type, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 if (NILP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 return GLYPH_BUFFER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3553 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3554 if (EQ (type, Qpointer)) return GLYPH_POINTER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3555 if (EQ (type, Qicon)) return GLYPH_ICON;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 maybe_signal_simple_error ("Invalid glyph type", type, Qimage, errb);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3558
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 return GLYPH_UNKNOWN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 valid_glyph_type_p (Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3565 return !NILP (memq_no_quit (type, Vglyph_type_list));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3568 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 Given a GLYPH-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 Valid types are `buffer', `pointer', and `icon'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3571 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3572 (glyph_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3574 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3577 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 Return a list of valid glyph types.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3579 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3580 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 return Fcopy_sequence (Vglyph_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3585 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3586 Create and return a new uninitialized glyph or type TYPE.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 TYPE specifies the type of the glyph; this should be one of `buffer',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 specifies in which contexts the glyph can be used, and controls the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 allowable image types into which the glyph's image can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 instantiated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 `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
3595 extent, in the modeline, and in the toolbar. Their image can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 and `subwindow'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 `pointer' glyphs can be used to specify the mouse pointer. Their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 image can be instantiated as `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 `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
3603 iconified. Their image can be instantiated as `mono-pixmap' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 `color-pixmap'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3605 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3606 (type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 return allocate_glyph (typeval, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3612 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 Return non-nil if OBJECT is a glyph.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 A glyph is an object used for pixmaps and the like. It is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 buttons, and the like. Its image is described using an image specifier --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 see `image-specifier-p'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3620 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3621 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 return GLYPHP (object) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3626 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 Return the type of the given glyph.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 The return value will be one of 'buffer, 'pointer, or 'icon.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3629 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3630 (glyph))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 switch (XGLYPH_TYPE (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3635 default: abort ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3636 case GLYPH_BUFFER: return Qbuffer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3637 case GLYPH_POINTER: return Qpointer;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3638 case GLYPH_ICON: return Qicon;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3642 Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3643 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3644 Error_behavior errb, int no_quit)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3645 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3646 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3647
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3648 /* This can never return Qunbound. All glyphs have 'nothing as
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3649 a fallback. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3650 Lisp_Object image_instance = specifier_instance (specifier, Qunbound,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3651 domain, errb, no_quit, 0,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3652 Qzero);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3653 assert (!UNBOUNDP (image_instance));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3654
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3655 return image_instance;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3656 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3657
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3658 static Lisp_Object
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3659 glyph_image_instance_maybe (Lisp_Object glyph_or_image, Lisp_Object window)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3660 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3661 Lisp_Object instance = glyph_or_image;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3662
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3663 if (GLYPHP (glyph_or_image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3664 instance = glyph_image_instance (glyph_or_image, window, ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3665
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3666 return instance;
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
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 glyph_width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3672 Return the width of the given GLYPH on the given WINDOW.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3673 Calculations are done based on recursively querying the geometry of
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3674 the associated image instances.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 unsigned short
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3677 glyph_width (Lisp_Object glyph_or_image, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3679 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3680 domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 if (!IMAGE_INSTANCEP (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3684 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3685 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3686 IMAGE_UNSPECIFIED_GEOMETRY, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3687
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3688 return XIMAGE_INSTANCE_WIDTH (instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3691 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 Return the width of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 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
3694 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3695 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3696 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3701 return make_int (glyph_width (glyph, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 unsigned short
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3705 glyph_ascent (Lisp_Object glyph_or_image, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3707 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3708 domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3709 if (!IMAGE_INSTANCEP (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3710 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3711
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3712 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3713 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3714 IMAGE_UNSPECIFIED_GEOMETRY, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3715
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3716 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3717 return XIMAGE_INSTANCE_TEXT_ASCENT (instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3718 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3719 return XIMAGE_INSTANCE_HEIGHT (instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 unsigned short
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3723 glyph_descent (Lisp_Object glyph_or_image, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3725 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3726 domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3727 if (!IMAGE_INSTANCEP (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3728 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3729
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3730 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3731 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3732 IMAGE_UNSPECIFIED_GEOMETRY, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3733
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3734 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3735 return XIMAGE_INSTANCE_TEXT_DESCENT (instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3736 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3737 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 /* strictly a convenience function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 unsigned short
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3742 glyph_height (Lisp_Object glyph_or_image, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3744 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3745 domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3746
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3747 if (!IMAGE_INSTANCEP (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3748 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3749
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3750 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3751 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3752 IMAGE_UNSPECIFIED_GEOMETRY, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3753
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3754 return XIMAGE_INSTANCE_HEIGHT (instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3757 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 Return the ascent value of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 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
3760 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3761 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3762 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3767 return make_int (glyph_ascent (glyph, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3770 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 Return the descent value of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 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
3773 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3774 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3775 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3780 return make_int (glyph_descent (glyph, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 /* 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
3784 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 Return the height of GLYPH on WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 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
3787 that redisplay will.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3788 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3789 (glyph, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 XSETWINDOW (window, decode_window (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 CHECK_GLYPH (glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3794 return make_int (glyph_height (glyph, window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3797 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3798 set_glyph_dirty_p (Lisp_Object glyph_or_image, Lisp_Object window, int dirty)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3799 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3800 Lisp_Object instance = glyph_or_image;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3801
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3802 if (!NILP (glyph_or_image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3803 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3804 if (GLYPHP (glyph_or_image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3805 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3806 instance = glyph_image_instance (glyph_or_image, window,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3807 ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3808 XGLYPH_DIRTYP (glyph_or_image) = dirty;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3809 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3810
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3811 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3812 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3813 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3814
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3815 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3816 set_image_instance_dirty_p (Lisp_Object instance, int dirty)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3817 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3818 if (IMAGE_INSTANCEP (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3819 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3820 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3821 /* Now cascade up the hierarchy. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3822 set_image_instance_dirty_p (XIMAGE_INSTANCE_PARENT (instance),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3823 dirty);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3824 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3825 else if (GLYPHP (instance))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3826 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3827 XGLYPH_DIRTYP (instance) = dirty;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3828 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3829 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 /* #### do we need to cache this info to speed things up? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 if (!GLYPHP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 Lisp_Object retval =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 /* #### look into ERROR_ME_NOT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 Qunbound, domain, ERROR_ME_NOT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 0, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 if (!NILP (retval) && !INTP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 else if (INTP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 if (XINT (retval) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 retval = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 if (XINT (retval) > 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 retval = make_int (100);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 glyph_face (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 /* #### Domain parameter not currently used but it will be */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3862 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 if (!GLYPHP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3871 return !NILP (specifier_instance_no_quit
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3872 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3873 /* #### look into ERROR_ME_NOT */
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3874 ERROR_ME_NOT, 0, Qzero));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 if (XGLYPH (glyph)->after_change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 (XGLYPH (glyph)->after_change) (glyph, property, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3885 #if 0 /* Not used for now */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3886 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3887 glyph_query_geometry (Lisp_Object glyph_or_image, Lisp_Object window,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3888 unsigned int* width, unsigned int* height,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3889 enum image_instance_geometry disp, Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3890 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3891 Lisp_Object instance = glyph_or_image;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3892
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3893 if (GLYPHP (glyph_or_image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3894 instance = glyph_image_instance (glyph_or_image, window, ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3895
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3896 image_instance_query_geometry (instance, width, height, disp, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3897 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3898
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3899 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3900 glyph_layout (Lisp_Object glyph_or_image, Lisp_Object window,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3901 unsigned int width, unsigned int height, Lisp_Object domain)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3902 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3903 Lisp_Object instance = glyph_or_image;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3904
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3905 if (GLYPHP (glyph_or_image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3906 instance = glyph_image_instance (glyph_or_image, window, ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3907
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3908 image_instance_layout (instance, width, height, domain);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3909 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3910 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3911
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 * glyph cachel functions *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3917 /* #### All of this is 95% copied from face cachels. Consider
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
3918 consolidating.
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
3919
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3920 Why do we need glyph_cachels? Simply because a glyph_cachel captures
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3921 per-window information about a particular glyph. A glyph itself is
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3922 not created in any particular context, so if we were to rely on a
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3923 glyph to tell us about its dirtiness we would not be able to reset
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3924 the dirty flag after redisplaying it as it may exist in other
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3925 contexts. When we have redisplayed we need to know which glyphs to
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3926 reset the dirty flags on - the glyph_cachels give us a nice list we
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3927 can iterate through doing this. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3929 mark_glyph_cachels (glyph_cachel_dynarr *elements)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 if (!elements)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 for (elt = 0; elt < Dynarr_length (elements); elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3939 mark_object (cachel->glyph);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 struct glyph_cachel *cachel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3947 if (!cachel->updated || NILP (cachel->glyph) || !EQ (cachel->glyph, glyph)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3948 || XGLYPH_DIRTYP (cachel->glyph)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3949 || XFRAME(WINDOW_FRAME(w))->faces_changed)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3951 Lisp_Object window, instance;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3955 cachel->glyph = glyph;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3956 /* Speed things up slightly by grabbing the glyph instantiation
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3957 and passing it to the size functions. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3958 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3959
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3960 /* Mark text instance of the glyph dirty if faces have changed,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3961 because its geometry might have changed. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3962 invalidate_glyph_geometry_maybe (instance, w);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3963
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3964 /* #### Do the following 2 lines buy us anything? --kkm */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3965 XGLYPH_DIRTYP (glyph) = XIMAGE_INSTANCE_DIRTYP (instance);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3966 cachel->dirty = XGLYPH_DIRTYP (glyph);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3967 cachel->width = glyph_width (instance, window);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3968 cachel->ascent = glyph_ascent (instance, window);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3969 cachel->descent = glyph_descent (instance, window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 cachel->updated = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 add_glyph_cachel (struct window *w, Lisp_Object glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 struct glyph_cachel new_cachel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3980 xzero (new_cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 new_cachel.glyph = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 update_glyph_cachel_data (w, glyph, &new_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 Dynarr_add (w->glyph_cachels, new_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
3987 glyph_index
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 if (noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 struct glyph_cachel *cachel =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 Dynarr_atp (w->glyph_cachels, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4002 update_glyph_cachel_data (w, glyph, cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 /* 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
4008 add_glyph_cachel (w, glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 reset_glyph_cachels (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 Dynarr_reset (w->glyph_cachels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 get_glyph_cachel_index (w, Vcontinuation_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 get_glyph_cachel_index (w, Vtruncation_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 get_glyph_cachel_index (w, Vhscroll_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 get_glyph_cachel_index (w, Voctal_escape_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 get_glyph_cachel_index (w, Vinvisible_text_glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 mark_glyph_cachels_as_not_updated (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 /* 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
4030 We can check to see if each glyph variable is actually a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 completely different glyph, though. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 #define FROB(glyph_obj, gindex) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 update_glyph_cachel_data (w, glyph_obj, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 Dynarr_atp (w->glyph_cachels, gindex))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 #undef FROB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4045 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4046 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4047 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4048 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4049
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4050 /* Unset the dirty bit on all the glyph cachels that have it. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4051 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4052 mark_glyph_cachels_as_clean (struct window* w)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4053 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4054 int elt;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4055 Lisp_Object window;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4056 XSETWINDOW (window, w);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4057 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4058 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4059 struct glyph_cachel *cachel = Dynarr_atp (w->glyph_cachels, elt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4060 cachel->dirty = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4061 set_glyph_dirty_p (cachel->glyph, window, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4062 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 int total = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 if (glyph_cachels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 total += Dynarr_memory_usage (glyph_cachels, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 return total;
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 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4081
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4082
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4083 /*****************************************************************************
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4084 * subwindow cachel functions *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4085 *****************************************************************************/
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4086 /* 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
4087 not display them. It is problematic deciding what to do in
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4088 redisplay. We have two caches - a per-window instance cache that
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4089 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
4090 instantiator in the hashtable and when the instantiator goes away
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4091 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
4092 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
4093 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
4094 through this quickly so a hashtable is not suitable hence the
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4095 subwindow_cachels. The question is should we just not mark
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4096 instances in the subwindow_cachels or should we try and invalidate
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4097 the cache at suitable points in redisplay? If we don't invalidate
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4098 the cache it will fill up with crud that will only get removed when
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4099 the frame is deleted. So invalidation is good, the question is when
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4100 and whether we mark as well. Go for the simple option - don't mark,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4101 MARK_SUBWINDOWS_CHANGED when a subwindow gets deleted. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4102
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4103 void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4104 mark_subwindow_cachels (subwindow_cachel_dynarr *elements)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4105 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4106 int elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4107
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4108 if (!elements)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4109 return;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4110
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4111 for (elt = 0; elt < Dynarr_length (elements); elt++)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4112 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4113 struct subwindow_cachel *cachel = Dynarr_atp (elements, elt);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4114 mark_object (cachel->subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4115 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4116 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4117
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4118 static void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4119 update_subwindow_cachel_data (struct frame *f, Lisp_Object subwindow,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4120 struct subwindow_cachel *cachel)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4121 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4122 cachel->subwindow = subwindow;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4123 cachel->width = XIMAGE_INSTANCE_SUBWINDOW_WIDTH (subwindow);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4124 cachel->height = XIMAGE_INSTANCE_SUBWINDOW_HEIGHT (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4125 cachel->updated = 1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4126 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4127
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4128 static void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4129 add_subwindow_cachel (struct frame *f, Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4130 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4131 struct subwindow_cachel new_cachel;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4132
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4133 xzero (new_cachel);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4134 new_cachel.subwindow = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4135 new_cachel.x=0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4136 new_cachel.y=0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4137 new_cachel.being_displayed=0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4138
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4139 update_subwindow_cachel_data (f, subwindow, &new_cachel);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4140 Dynarr_add (f->subwindow_cachels, new_cachel);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4141 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4142
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4143 static int
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4144 get_subwindow_cachel_index (struct frame *f, Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4145 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4146 int elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4147
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4148 if (noninteractive)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4149 return 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4150
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4151 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4152 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4153 struct subwindow_cachel *cachel =
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4154 Dynarr_atp (f->subwindow_cachels, elt);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4155
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4156 if (EQ (cachel->subwindow, subwindow) && !NILP (subwindow))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4157 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4158 if (!cachel->updated)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4159 update_subwindow_cachel_data (f, subwindow, cachel);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4160 return elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4161 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4162 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4163
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4164 /* If we didn't find the glyph, add it and then return its index. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4165 add_subwindow_cachel (f, subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4166 return elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4167 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4168
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4169 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4170 update_subwindow_cachel (Lisp_Object subwindow)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4171 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4172 struct frame* f;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4173 int elt;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4174
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4175 if (NILP (subwindow))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4176 return;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4177
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4178 f = XFRAME ( XIMAGE_INSTANCE_SUBWINDOW_FRAME (subwindow));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4179
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4180 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4181 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4182 struct subwindow_cachel *cachel =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4183 Dynarr_atp (f->subwindow_cachels, elt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4184
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4185 if (EQ (cachel->subwindow, subwindow) && !NILP (subwindow))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4186 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4187 update_subwindow_cachel_data (f, subwindow, cachel);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4188 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4189 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4190 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4191
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4192 /* redisplay in general assumes that drawing something will erase
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4193 what was there before. unfortunately this does not apply to
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4194 subwindows that need to be specifically unmapped in order to
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4195 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
4196 cheap - and unmap all subwindows in a display line */
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4197 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4198 reset_subwindow_cachels (struct frame *f)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4199 {
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4200 int elt;
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4201 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4202 {
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4203 struct subwindow_cachel *cachel =
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4204 Dynarr_atp (f->subwindow_cachels, elt);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4205
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4206 if (!NILP (cachel->subwindow) && cachel->being_displayed)
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4207 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4208 cachel->updated = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4209 /* #### This is not optimal as update_subwindow will search
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4210 the cachels for ourselves as well. We could easily optimize. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4211 unmap_subwindow (cachel->subwindow);
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4212 }
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
4213 }
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4214 Dynarr_reset (f->subwindow_cachels);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4215 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4216
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4217 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4218 mark_subwindow_cachels_as_not_updated (struct frame *f)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4219 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4220 int elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4221
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4222 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4223 Dynarr_atp (f->subwindow_cachels, elt)->updated = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4224 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4225
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4226
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4227
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4228 /*****************************************************************************
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4229 * subwindow exposure ignorance *
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4230 *****************************************************************************/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4231 /* when we unmap subwindows the associated window system will generate
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4232 expose events. This we do not want as redisplay already copes with
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4233 the repainting necessary. Worse, we can get in an endless cycle of
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4234 redisplay if we are not careful. Thus we keep a per-frame list of
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4235 expose events that are going to come and ignore them as
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4236 required. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4237
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4238 struct expose_ignore_blocktype
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4239 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4240 Blocktype_declare (struct expose_ignore);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4241 } *the_expose_ignore_blocktype;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4242
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4243 int
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4244 check_for_ignored_expose (struct frame* f, int x, int y, int width, int height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4245 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4246 struct expose_ignore *ei, *prev;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4247 /* the ignore list is FIFO so we should generally get a match with
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4248 the first element in the list */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4249 for (ei = f->subwindow_exposures, prev = 0; ei; ei = ei->next)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4250 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4251 /* Checking for exact matches just isn't good enough as we
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4252 mighte get exposures for partially obscure subwindows, thus
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4253 we have to check for overlaps. Being conservative we will
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4254 check for exposures wholly contained by the subwindow, this
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4255 might give us what we want.*/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4256 if (ei->x <= x && ei->y <= y
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4257 && ei->x + ei->width >= x + width
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4258 && ei->y + ei->height >= y + height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4259 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4260 #ifdef DEBUG_WIDGETS
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4261 stderr_out ("ignored %d+%d, %dx%d for exposure %d+%d, %dx%d\n",
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4262 x, y, width, height, ei->x, ei->y, ei->width, ei->height);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4263 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4264 if (!prev)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4265 f->subwindow_exposures = ei->next;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4266 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4267 prev->next = ei->next;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4268
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4269 if (ei == f->subwindow_exposures_tail)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4270 f->subwindow_exposures_tail = prev;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4271
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4272 Blocktype_free (the_expose_ignore_blocktype, ei);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4273 return 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4274 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4275 prev = ei;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4276 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4277 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4278 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4279
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4280 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4281 register_ignored_expose (struct frame* f, int x, int y, int width, int height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4282 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4283 if (!hold_ignored_expose_registration)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4284 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4285 struct expose_ignore *ei;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4286
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4287 ei = Blocktype_alloc (the_expose_ignore_blocktype);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4288
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4289 ei->next = NULL;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4290 ei->x = x;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4291 ei->y = y;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4292 ei->width = width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4293 ei->height = height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4294
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4295 /* we have to add the exposure to the end of the list, since we
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4296 want to check the oldest events first. for speed we keep a record
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4297 of the end so that we can add right to it. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4298 if (f->subwindow_exposures_tail)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4299 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4300 f->subwindow_exposures_tail->next = ei;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4301 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4302 if (!f->subwindow_exposures)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4303 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4304 f->subwindow_exposures = ei;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4305 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4306 f->subwindow_exposures_tail = ei;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4307 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4308 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4309
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4310 /****************************************************************************
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4311 find_matching_subwindow
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4312
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4313 See if there is a subwindow that completely encloses the requested
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4314 area.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4315 ****************************************************************************/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4316 int find_matching_subwindow (struct frame* f, int x, int y, int width, int height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4317 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4318 int elt;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4319
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4320 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4321 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4322 struct subwindow_cachel *cachel =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4323 Dynarr_atp (f->subwindow_cachels, elt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4324
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4325 if (cachel->being_displayed
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4326 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4327 cachel->x <= x && cachel->y <= y
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4328 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4329 cachel->x + cachel->width >= x + width
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4330 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4331 cachel->y + cachel->height >= y + height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4332 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4333 return 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4334 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4335 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4336 return 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4337 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4338
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4339
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4340 /*****************************************************************************
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4341 * subwindow functions *
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4342 *****************************************************************************/
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4343
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4344 /* Update the displayed characteristics of a subwindow. This function
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4345 should generally only get called if the subwindow is actually
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4346 dirty. */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4347 void
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4348 update_subwindow (Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4349 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4350 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4351 int count = specpdl_depth ();
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4352
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4353 /* The update method is allowed to call eval. Since it is quite
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4354 common for this function to get called from somewhere in
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4355 redisplay we need to make sure that quits are ignored. Otherwise
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4356 Fsignal will abort. */
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4357 specbind (Qinhibit_quit, Qt);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4358
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4359 if (IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4360 ||
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4361 IMAGE_INSTANCE_TYPE (ii) == IMAGE_LAYOUT)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4362 {
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4363 if (image_instance_changed (subwindow))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4364 update_widget (subwindow);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4365 /* Reset the changed flags. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4366 IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii) = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4367 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4368 IMAGE_INSTANCE_TEXT_CHANGED (ii) = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4369 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4370 else if (IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4371 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4372 !NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4373 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4374 MAYBE_DEVMETH (XDEVICE (ii->device), update_subwindow, (ii));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4375 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4376
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4377 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 0;
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4378 /* This function is typically called by redisplay just before
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4379 outputting the information to the screen. Thus we record a hash
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4380 of the output to determine whether on-screen is the same as
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4381 recorded structure. This approach has limitations in there is a
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4382 good chance that hash values will be different for the same
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4383 visual appearance. However, we would rather that then the other
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4384 way round - it simply means that we will get more displays than
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4385 we might need. We can get better hashing by making the depth
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4386 negative - currently it will recurse down 7 levels.*/
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4387 IMAGE_INSTANCE_DISPLAY_HASH (ii) = internal_hash (subwindow,
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4388 IMAGE_INSTANCE_HASH_DEPTH);
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4389
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4390 unbind_to (count, Qnil);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4391 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4392
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4393 int
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4394 image_instance_changed (Lisp_Object subwindow)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4395 {
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4396 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4397
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4398 if (internal_hash (subwindow, IMAGE_INSTANCE_HASH_DEPTH) !=
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4399 IMAGE_INSTANCE_DISPLAY_HASH (ii))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4400 return 1;
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4401 else if ((WIDGET_IMAGE_INSTANCEP (subwindow)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4402 || LAYOUT_IMAGE_INSTANCEP (subwindow))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4403 && !internal_equal (IMAGE_INSTANCE_WIDGET_ITEMS (ii),
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4404 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii), 0))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4405 return 1;
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4406 else
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4407 return 0;
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4408 }
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4409
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4410 /* Update all the subwindows on a frame. */
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4411 DEFUN ("update-widget-instances", Fupdate_widget_instances,1, 1, 0, /*
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4412 Given a FRAME, re-evaluate the display hash code for all widgets in the frame.
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4413 Don't use this.
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4414 */
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4415 (frame))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4416 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4417 int elt;
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4418 struct frame* f;
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4419 CHECK_FRAME (frame);
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4420 f = XFRAME (frame);
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4421
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4422 /* If we get called we know something has changed. */
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4423 for (elt = 0; elt < Dynarr_length (f->subwindow_cachels); elt++)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4424 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4425 struct subwindow_cachel *cachel =
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4426 Dynarr_atp (f->subwindow_cachels, elt);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4427
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4428 if (cachel->being_displayed &&
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4429 image_instance_changed (cachel->subwindow))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4430 {
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4431 set_image_instance_dirty_p (cachel->subwindow, 1);
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
4432 MARK_FRAME_GLYPHS_CHANGED (f);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4433 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4434 }
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4435 return Qnil;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4436 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4437
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4438 /* remove a subwindow from its frame */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4439 void unmap_subwindow (Lisp_Object subwindow)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4440 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4441 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4442 int elt;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4443 struct subwindow_cachel* cachel;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4444 struct frame* f;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4445
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4446 if (!(IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4447 ||
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4448 IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4449 ||
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4450 NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4451 return;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4452 #ifdef DEBUG_WIDGETS
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4453 stderr_out ("unmapping subwindow %d\n", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4454 #endif
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4455 f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4456 elt = get_subwindow_cachel_index (f, subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4457 cachel = Dynarr_atp (f->subwindow_cachels, elt);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4458
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4459 /* make sure we don't get expose events */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4460 register_ignored_expose (f, cachel->x, cachel->y, cachel->width, cachel->height);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4461 cachel->x = ~0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4462 cachel->y = ~0;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4463 cachel->being_displayed = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4464 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4465
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4466 MAYBE_DEVMETH (XDEVICE (ii->device), unmap_subwindow, (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4467 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4468
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4469 /* show a subwindow in its frame */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4470 void map_subwindow (Lisp_Object subwindow, int x, int y,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4471 struct display_glyph_area *dga)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4472 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4473 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4474 int elt;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4475 struct subwindow_cachel* cachel;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4476 struct frame* f;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4477
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4478 if (!(IMAGE_INSTANCE_TYPE (ii) == IMAGE_WIDGET
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4479 ||
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4480 IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4481 ||
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4482 NILP (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4483 return;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4484
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4485 #ifdef DEBUG_WIDGETS
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4486 stderr_out ("mapping subwindow %d, %dx%d@%d+%d\n",
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4487 IMAGE_INSTANCE_SUBWINDOW_ID (ii),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4488 dga->width, dga->height, x, y);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4489 #endif
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4490 f = XFRAME (IMAGE_INSTANCE_SUBWINDOW_FRAME (ii));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4491 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4492 elt = get_subwindow_cachel_index (f, subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4493 cachel = Dynarr_atp (f->subwindow_cachels, elt);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4494 cachel->x = x;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4495 cachel->y = y;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4496 cachel->width = dga->width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4497 cachel->height = dga->height;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4498 cachel->being_displayed = 1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4499
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4500 MAYBE_DEVMETH (XDEVICE (ii->device), map_subwindow, (ii, x, y, dga));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4501 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4502
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4503 static int
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4504 subwindow_possible_dest_types (void)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4505 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4506 return IMAGE_SUBWINDOW_MASK;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4507 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4508
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4509 /* Partially instantiate a subwindow. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4510 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4511 subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4512 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4513 int dest_mask, Lisp_Object domain)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4514 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4515 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4516 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4517 Lisp_Object frame = FW_FRAME (domain);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4518 Lisp_Object width = find_keyword_in_vector (instantiator, Q_pixel_width);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4519 Lisp_Object height = find_keyword_in_vector (instantiator, Q_pixel_height);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4520
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4521 if (NILP (frame))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4522 signal_simple_error ("No selected frame", device);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4523
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4524 if (!(dest_mask & IMAGE_SUBWINDOW_MASK))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4525 incompatible_image_types (instantiator, dest_mask, IMAGE_SUBWINDOW_MASK);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4526
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4527 ii->data = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4528 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4529 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4530 IMAGE_INSTANCE_SUBWINDOW_FRAME (ii) = frame;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4531
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4532 /* #### This stuff may get overidden by the widget code and is
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4533 actually really dumb now that we have dynamic geometry
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4534 calculations. What should really happen is that the subwindow
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4535 should query its child for an appropriate geometry. */
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4536 if (INTP (width))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4537 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4538 int w = 1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4539 if (XINT (width) > 1)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4540 w = XINT (width);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4541 IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii) = w;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4542 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4543 else
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4544 IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii) = 20;
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4545
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4546 if (INTP (height))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4547 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4548 int h = 1;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4549 if (XINT (height) > 1)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4550 h = XINT (height);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4551 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii) = h;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4552 }
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4553 else
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4554 IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii) = 20;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4555 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4556
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4557 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4558 Return non-nil if OBJECT is a subwindow.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4559 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4560 (object))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4561 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4562 CHECK_IMAGE_INSTANCE (object);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4563 return (XIMAGE_INSTANCE_TYPE (object) == IMAGE_SUBWINDOW) ? Qt : Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4564 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4565
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4566 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
4567 Return the window id of SUBWINDOW as a number.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4568 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4569 (subwindow))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4570 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4571 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4572 return make_int ((int) XIMAGE_INSTANCE_SUBWINDOW_ID (subwindow));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4573 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4574
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4575 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4576 Resize SUBWINDOW to WIDTH x HEIGHT.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4577 If a value is nil that parameter is not changed.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4578 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4579 (subwindow, width, height))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4580 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4581 int neww, newh;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4582 Lisp_Image_Instance* ii;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4583
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4584 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4585 ii = XIMAGE_INSTANCE (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4586
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4587 if (NILP (width))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4588 neww = IMAGE_INSTANCE_WIDTH (ii);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4589 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4590 neww = XINT (width);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4591
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4592 if (NILP (height))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4593 newh = IMAGE_INSTANCE_HEIGHT (ii);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4594 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4595 newh = XINT (height);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4596
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4597 /* The actual resizing gets done asychronously by
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4598 update_subwindow. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4599 IMAGE_INSTANCE_HEIGHT (ii) = newh;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4600 IMAGE_INSTANCE_WIDTH (ii) = neww;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4601 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4602
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4603 /* need to update the cachels as redisplay will not do this */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4604 update_subwindow_cachel (subwindow);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4605
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4606 return subwindow;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4607 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4608
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4609 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4610 Generate a Map event for SUBWINDOW.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4611 */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4612 (subwindow))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4613 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4614 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4615 #if 0
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4616 map_subwindow (subwindow, 0, 0);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4617 #endif
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4618 return subwindow;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4619 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4620
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 * display tables *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4626 /* 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
4627 FACE. #### This will have to be redone. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4628
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4629 void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4630 get_display_tables (struct window *w, face_index findex,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4631 Lisp_Object *face_table, Lisp_Object *window_table)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4633 Lisp_Object tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4635 if (UNBOUNDP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4636 tem = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4637 if (!LISTP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4638 tem = noseeum_cons (tem, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4639 *face_table = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 tem = w->display_table;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4641 if (UNBOUNDP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4642 tem = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4643 if (!LISTP (tem))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4644 tem = noseeum_cons (tem, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4645 *window_table = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4648 Lisp_Object
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4649 display_table_entry (Emchar ch, Lisp_Object face_table,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4650 Lisp_Object window_table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4651 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4652 Lisp_Object tail;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4653
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4654 /* Loop over FACE_TABLE, and then over WINDOW_TABLE. */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4655 for (tail = face_table; 1; tail = XCDR (tail))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4656 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4657 Lisp_Object table;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4658 if (NILP (tail))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4659 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4660 if (!NILP (window_table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4661 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4662 tail = window_table;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4663 window_table = Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4664 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4665 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4666 return Qnil;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4667 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4668 table = XCAR (tail);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4669
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4670 if (VECTORP (table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4671 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4672 if (ch < XVECTOR_LENGTH (table) && !NILP (XVECTOR_DATA (table)[ch]))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4673 return XVECTOR_DATA (table)[ch];
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4674 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4675 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4676 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4677 else if (CHAR_TABLEP (table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4678 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4679 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4680 return get_char_table (ch, XCHAR_TABLE (table));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4681 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4682 else if (CHAR_TABLEP (table)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4683 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4684 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4685 Lisp_Object gotit = get_char_table (ch, XCHAR_TABLE (table));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4686 if (!NILP (gotit))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4687 return gotit;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4688 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4689 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4690 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4691 else if (RANGE_TABLEP (table))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4692 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4693 Lisp_Object gotit = Fget_range_table (make_char (ch), table, Qnil);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4694 if (!NILP (gotit))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4695 return gotit;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4696 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4697 continue;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4698 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4699 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4700 abort ();
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4701 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4702 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4703
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4704 /*****************************************************************************
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4705 * timeouts for animated glyphs *
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4706 *****************************************************************************/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4707 static Lisp_Object Qglyph_animated_timeout_handler;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4708
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4709 DEFUN ("glyph-animated-timeout-handler", Fglyph_animated_timeout_handler, 1, 1, 0, /*
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4710 Callback function for updating animated images.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4711 Don't use this.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4712 */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4713 (arg))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4714 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4715 CHECK_WEAK_LIST (arg);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4716
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4717 if (!NILP (XWEAK_LIST_LIST (arg)) && !NILP (XCAR (XWEAK_LIST_LIST (arg))))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4718 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4719 Lisp_Object value = XCAR (XWEAK_LIST_LIST (arg));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4720
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4721 if (IMAGE_INSTANCEP (value))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4722 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4723 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (value);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4724
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4725 if (COLOR_PIXMAP_IMAGE_INSTANCEP (value)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4726 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4727 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) > 1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4728 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4729 !disable_animated_pixmaps)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4730 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4731 /* Increment the index of the image slice we are currently
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4732 viewing. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4733 IMAGE_INSTANCE_PIXMAP_SLICE (ii) =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4734 (IMAGE_INSTANCE_PIXMAP_SLICE (ii) + 1)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4735 % IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4736 /* We might need to kick redisplay at this point - but we
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4737 also might not. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4738 MARK_DEVICE_FRAMES_GLYPHS_CHANGED
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4739 (XDEVICE (IMAGE_INSTANCE_DEVICE (ii)));
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4740 /* Cascade dirtiness so that we can have an animated glyph in a layout
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4741 for instance. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4742 set_image_instance_dirty_p (value, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4743 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4744 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4745 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4746 return Qnil;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4747 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4748
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4749 Lisp_Object add_glyph_animated_timeout (EMACS_INT tickms, Lisp_Object image)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4750 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4751 Lisp_Object ret = Qnil;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4752
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4753 if (tickms > 0 && IMAGE_INSTANCEP (image))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4754 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4755 double ms = ((double)tickms) / 1000.0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4756 struct gcpro gcpro1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4757 Lisp_Object holder = make_weak_list (WEAK_LIST_SIMPLE);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4758
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4759 GCPRO1 (holder);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4760 XWEAK_LIST_LIST (holder) = Fcons (image, Qnil);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4761
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4762 ret = Fadd_timeout (make_float (ms),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4763 Qglyph_animated_timeout_handler,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4764 holder, make_float (ms));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4765
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4766 UNGCPRO;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4767 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4768 return ret;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4769 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4770
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4771 void disable_glyph_animated_timeout (int i)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4772 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4773 Lisp_Object id;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4774 XSETINT (id, i);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4775
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4776 Fdisable_timeout (id);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4777 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4778
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 * initialization *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 syms_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 {
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4787 INIT_LRECORD_IMPLEMENTATION (glyph);
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4788 INIT_LRECORD_IMPLEMENTATION (image_instance);
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4789
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 /* image instantiators */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4792 DEFSUBR (Fimage_instantiator_format_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4793 DEFSUBR (Fvalid_image_instantiator_format_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4794 DEFSUBR (Fset_console_type_image_conversion_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4795 DEFSUBR (Fconsole_type_image_conversion_list);
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4796 DEFSUBR (Fupdate_widget_instances);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 defkeyword (&Q_file, ":file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799 defkeyword (&Q_data, ":data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 defkeyword (&Q_face, ":face");
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4801 defkeyword (&Q_pixel_height, ":pixel-height");
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4802 defkeyword (&Q_pixel_width, ":pixel-width");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4804 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4805 defkeyword (&Q_color_symbols, ":color-symbols");
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
4806 #endif
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4807 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4808 defkeyword (&Q_mask_file, ":mask-file");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4809 defkeyword (&Q_mask_data, ":mask-data");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4810 defkeyword (&Q_hotspot_x, ":hotspot-x");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4811 defkeyword (&Q_hotspot_y, ":hotspot-y");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4812 defkeyword (&Q_foreground, ":foreground");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4813 defkeyword (&Q_background, ":background");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
4814 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 /* image specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4817 DEFSUBR (Fimage_specifier_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 /* Qimage in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 /* image instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 defsymbol (&Qimage_instancep, "image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 defsymbol (&Qnothing_image_instance_p, "nothing-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 defsymbol (&Qtext_image_instance_p, "text-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 defsymbol (&Qmono_pixmap_image_instance_p, "mono-pixmap-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 defsymbol (&Qcolor_pixmap_image_instance_p, "color-pixmap-image-instance-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 defsymbol (&Qpointer_image_instance_p, "pointer-image-instance-p");
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4829 defsymbol (&Qwidget_image_instance_p, "widget-image-instance-p");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 defsymbol (&Qsubwindow_image_instance_p, "subwindow-image-instance-p");
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4831 defsymbol (&Qlayout_image_instance_p, "layout-image-instance-p");
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
4832 defsymbol (&Qupdate_widget_instances, "update-widget-instances");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4834 DEFSUBR (Fmake_image_instance);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4835 DEFSUBR (Fimage_instance_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4836 DEFSUBR (Fimage_instance_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4837 DEFSUBR (Fvalid_image_instance_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4838 DEFSUBR (Fimage_instance_type_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4839 DEFSUBR (Fimage_instance_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4840 DEFSUBR (Fimage_instance_string);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4841 DEFSUBR (Fimage_instance_file_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4842 DEFSUBR (Fimage_instance_mask_file_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4843 DEFSUBR (Fimage_instance_depth);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4844 DEFSUBR (Fimage_instance_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4845 DEFSUBR (Fimage_instance_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4846 DEFSUBR (Fimage_instance_hotspot_x);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4847 DEFSUBR (Fimage_instance_hotspot_y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4848 DEFSUBR (Fimage_instance_foreground);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4849 DEFSUBR (Fimage_instance_background);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4850 DEFSUBR (Fimage_instance_property);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4851 DEFSUBR (Fset_image_instance_property);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4852 DEFSUBR (Fcolorize_image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4853 /* subwindows */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4854 DEFSUBR (Fsubwindowp);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4855 DEFSUBR (Fimage_instance_subwindow_id);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4856 DEFSUBR (Fresize_subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
4857 DEFSUBR (Fforce_subwindow_map);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 /* Qnothing defined as part of the "nothing" image-instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861 /* Qtext defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 defsymbol (&Qmono_pixmap, "mono-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 defsymbol (&Qcolor_pixmap, "color-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 /* Qpointer defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866 /* glyphs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868 defsymbol (&Qglyphp, "glyphp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869 defsymbol (&Qcontrib_p, "contrib-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 defsymbol (&Qbaseline, "baseline");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 defsymbol (&Qbuffer_glyph_p, "buffer-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873 defsymbol (&Qpointer_glyph_p, "pointer-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 defsymbol (&Qicon_glyph_p, "icon-glyph-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876 defsymbol (&Qconst_glyph_variable, "const-glyph-variable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4878 DEFSUBR (Fglyph_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4879 DEFSUBR (Fvalid_glyph_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4880 DEFSUBR (Fglyph_type_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4881 DEFSUBR (Fglyphp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4882 DEFSUBR (Fmake_glyph_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4883 DEFSUBR (Fglyph_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4884 DEFSUBR (Fglyph_ascent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4885 DEFSUBR (Fglyph_descent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4886 DEFSUBR (Fglyph_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888 /* Qbuffer defined in general.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 /* Qpointer defined above */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4890
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4891 /* Unfortunately, timeout handlers must be lisp functions. This is
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4892 for animated glyphs. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4893 defsymbol (&Qglyph_animated_timeout_handler,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4894 "glyph-animated-timeout-handler");
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4895 DEFSUBR (Fglyph_animated_timeout_handler);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4896
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4897 /* Errors */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4898 deferror (&Qimage_conversion_error,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4899 "image-conversion-error",
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4900 "image-conversion error", Qio_error);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 249
diff changeset
4901
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4904 static const struct lrecord_description image_specifier_description[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4905 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4906 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee_property) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4907 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4908 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4909
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911 specifier_type_create_image (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913 /* image specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 SPECIFIER_HAS_METHOD (image, create);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 SPECIFIER_HAS_METHOD (image, mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 SPECIFIER_HAS_METHOD (image, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920 SPECIFIER_HAS_METHOD (image, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 SPECIFIER_HAS_METHOD (image, after_change);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 SPECIFIER_HAS_METHOD (image, going_to_add);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4923 SPECIFIER_HAS_METHOD (image, copy_instantiator);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4927 reinit_specifier_type_create_image (void)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4928 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4929 REINITIALIZE_SPECIFIER_TYPE (image);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4930 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4931
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4932
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4933 static const struct lrecord_description iike_description_1[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4934 { XD_LISP_OBJECT, offsetof (ii_keyword_entry, keyword) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4935 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4936 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4937
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4938 static const struct struct_description iike_description = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4939 sizeof (ii_keyword_entry),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4940 iike_description_1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4941 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4942
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4943 static const struct lrecord_description iiked_description_1[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4944 XD_DYNARR_DESC (ii_keyword_entry_dynarr, &iike_description),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4945 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4946 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4947
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4948 static const struct struct_description iiked_description = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4949 sizeof (ii_keyword_entry_dynarr),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4950 iiked_description_1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4951 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4952
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4953 static const struct lrecord_description iife_description_1[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4954 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, symbol) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4955 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, device) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4956 { XD_STRUCT_PTR, offsetof (image_instantiator_format_entry, meths), 1, &iim_description },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4957 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4958 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4959
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4960 static const struct struct_description iife_description = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4961 sizeof (image_instantiator_format_entry),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4962 iife_description_1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4963 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4964
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4965 static const struct lrecord_description iifed_description_1[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4966 XD_DYNARR_DESC (image_instantiator_format_entry_dynarr, &iife_description),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4967 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4968 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4969
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4970 static const struct struct_description iifed_description = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4971 sizeof (image_instantiator_format_entry_dynarr),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4972 iifed_description_1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4973 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4974
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4975 static const struct lrecord_description iim_description_1[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4976 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, symbol) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4977 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, device) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4978 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, keywords), 1, &iiked_description },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4979 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, consoles), 1, &cted_description },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4980 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4981 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4982
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4983 const struct struct_description iim_description = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4984 sizeof(struct image_instantiator_methods),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4985 iim_description_1
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4986 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4987
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4988 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989 image_instantiator_format_create (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 /* image instantiators */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993 the_image_instantiator_format_entry_dynarr =
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4994 Dynarr_new (image_instantiator_format_entry);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 Vimage_instantiator_format_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 staticpro (&Vimage_instantiator_format_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
4999 dumpstruct (&the_image_instantiator_format_entry_dynarr, &iifed_description);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5000
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 IIFORMAT_HAS_METHOD (nothing, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 IIFORMAT_HAS_METHOD (inherit, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 IIFORMAT_HAS_METHOD (inherit, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 IIFORMAT_HAS_METHOD (inherit, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 IIFORMAT_HAS_METHOD (string, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 IIFORMAT_HAS_METHOD (string, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 IIFORMAT_HAS_METHOD (string, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5022 /* Do this so we can set strings. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5023 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (text, "text");
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5024 IIFORMAT_HAS_METHOD (text, set_property);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5025 IIFORMAT_HAS_METHOD (text, query_geometry);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 IIFORMAT_HAS_METHOD (formatted_string, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5033
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5034 /* subwindows */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5035 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (subwindow, "subwindow");
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5036 IIFORMAT_HAS_METHOD (subwindow, possible_dest_types);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5037 IIFORMAT_HAS_METHOD (subwindow, instantiate);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5038 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_width, check_valid_int);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5039 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_height, check_valid_int);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5040
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5041 #ifdef HAVE_WINDOW_SYSTEM
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5042 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5043
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5044 IIFORMAT_HAS_METHOD (xbm, validate);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5045 IIFORMAT_HAS_METHOD (xbm, normalize);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5046 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5047
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5048 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5049 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5050 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5051 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5052 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5053 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5054 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5055 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5056 #endif /* HAVE_WINDOW_SYSTEM */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
5057
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5058 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5059 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5060
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5061 IIFORMAT_HAS_METHOD (xface, validate);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5062 IIFORMAT_HAS_METHOD (xface, normalize);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5063 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5064
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5065 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5066 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5067 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5068 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5069 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5070 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5071 #endif
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5072
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5073 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5074 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5075
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5076 IIFORMAT_HAS_METHOD (xpm, validate);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5077 IIFORMAT_HAS_METHOD (xpm, normalize);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5078 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5079
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5080 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5081 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5082 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
5083 #endif /* HAVE_XPM */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5087 reinit_vars_of_glyphs (void)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5088 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5089 the_expose_ignore_blocktype =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5090 Blocktype_new (struct expose_ignore_blocktype);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5091
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5092 hold_ignored_expose_registration = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5093 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5094
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5095
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5096 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5099 reinit_vars_of_glyphs ();
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5100
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 Vthe_nothing_vector = vector1 (Qnothing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 staticpro (&Vthe_nothing_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 /* image instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5106 Vimage_instance_type_list = Fcons (Qnothing,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5107 list6 (Qtext, Qmono_pixmap, Qcolor_pixmap,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5108 Qpointer, Qsubwindow, Qwidget));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5109 staticpro (&Vimage_instance_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 /* glyphs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 staticpro (&Vglyph_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 /* The octal-escape glyph, control-arrow-glyph and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 invisible-text-glyph are completely initialized in glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 What to prefix character codes displayed in octal with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 What to use as an arrow for control characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131 What to use to indicate the presence of invisible text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 This is the glyph that is displayed when an ellipsis is called for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5134 Normally this is three dots ("...").
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139 /* Partially initialized in glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 What to display at the beginning of horizontally scrolled lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5144 #ifdef HAVE_WINDOW_SYSTEM
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5145 Fprovide (Qxbm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
5146 #endif
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5147 #ifdef HAVE_XPM
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5148 Fprovide (Qxpm);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5149
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5150 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5151 Definitions of logical color-names used when reading XPM files.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5152 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
5153 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
5154 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
5155 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
5156 color called COLOR-NAME, it will display as the computed color instead.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5157
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5158 The default value of this variable defines the logical color names
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5159 \"foreground\" and \"background\" to be the colors of the `default' face.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5160 */ );
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
5161 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5162 #endif /* HAVE_XPM */
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5163 #ifdef HAVE_XFACE
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5164 Fprovide (Qxface);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
5165 #endif
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5166
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5167 DEFVAR_BOOL ("disable-animated-pixmaps", &disable_animated_pixmaps /*
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5168 Whether animated pixmaps should be animated.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5169 Default is t.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5170 */);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5171 disable_animated_pixmaps = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 specifier_vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5176 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
5177 /* #### Can we GC here? The set_specifier_* calls definitely need */
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 223
diff changeset
5178 /* protection. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5179 /* display tables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5181 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5182 *The display table currently in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5183 This is a specifier; use `set-specifier' to change it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5184 The display table is a vector created with `make-display-table'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5185 The 256 elements control how to display each possible text character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186 Each value should be a string, a glyph, a vector or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 If a value is a vector it must be composed only of strings and glyphs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 nil means display the character in the default fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189 Faces can have their own, overriding display table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190 */ );
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 84
diff changeset
5191 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 set_specifier_fallback (Vcurrent_display_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5193 list1 (Fcons (Qnil, Qnil)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5194 set_specifier_caching (Vcurrent_display_table,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 388
diff changeset
5195 offsetof (struct window, display_table),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 some_window_value_changed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201 complex_vars_of_glyphs (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205 What to display at the end of truncated lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 What to display at the end of wrapped lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5212 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5213 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 /* Partially initialized in glyphs-x.c, glyphs.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 The glyph used to display the XEmacs logo at startup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220 }