annotate src/glyphs-x.c @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents e121b013d1f0
children 169c0442b401
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 /* X-specific Lisp objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Tinker Systems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995, 1996 Ben Wing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 Copyright (C) 1995 Sun Microsystems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Original author: Jamie Zawinski for 19.8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 font-truename stuff added by Jamie Zawinski for 19.10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 subwindow support added by Chuck Thompson
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 additional XPM support added by Chuck Thompson
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 initial X-Face support added by Stig
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
32 rewritten/restructured by Ben Wing for 19.12/19.13
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 GIF/JPEG support added by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 PNG support added by Bill Perry for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Improved GIF/JPEG support added by Bill Perry for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Cleanup/simplification of error handling by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 Pointer/icon overhaul, more restructuring by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 TODO:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 TIFF Support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 Loadable module support for images
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Convert images.el to C and stick it in here?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #include "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
60 #ifdef HAVE_PNG
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
61 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
62 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
63 #endif
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
64 #include <png.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
65 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
66 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
67 #endif
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
68 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #include <setjmp.h>
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
70 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #define LISP_DEVICE_TO_X_SCREEN(dev) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Lisp_Object Qxbm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Lisp_Object Q_foreground, Q_background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Lisp_Object Qxpm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Lisp_Object Q_color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 Lisp_Object Qxface;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #ifdef HAVE_JPEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 DEFINE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Qjpeg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #ifdef HAVE_PNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 DEFINE_IMAGE_INSTANTIATOR_FORMAT (png);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object Qpng;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #ifdef HAVE_TIFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 DEFINE_IMAGE_INSTANTIATOR_FORMAT (tiff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Lisp_Object Qtiff;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #ifdef HAVE_GIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gif);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Lisp_Object Qgif;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Lisp_Object Qcursor_font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
117 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 static void cursor_font_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
123 int dest_mask,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
124 Lisp_Object domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #include "bitmaps.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 /* image instance methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 x_print_image_instance (struct Lisp_Image_Instance *p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 if (IMAGE_INSTANCE_X_MASK (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 break;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
154 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
157 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 break;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 x_finalize_image_instance (struct Lisp_Image_Instance *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 if (!p->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 if (DEVICE_LIVE_P (XDEVICE (p->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Screen *scr = LISP_DEVICE_TO_X_SCREEN (IMAGE_INSTANCE_DEVICE (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 if (IMAGE_INSTANCE_X_PIXMAP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 XFreePixmap (DisplayOfScreen (scr), IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 if (IMAGE_INSTANCE_X_MASK (p) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 XFreePixmap (DisplayOfScreen (scr), IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 if (IMAGE_INSTANCE_X_CURSOR (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 XFreeCursor (DisplayOfScreen (scr), IMAGE_INSTANCE_X_CURSOR (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 IMAGE_INSTANCE_X_CURSOR (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 XFreeColors (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 DefaultColormapOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 IMAGE_INSTANCE_X_PIXELS (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 IMAGE_INSTANCE_X_NPIXELS (p), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 if (IMAGE_INSTANCE_X_PIXELS (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 xfree (IMAGE_INSTANCE_X_PIXELS (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 IMAGE_INSTANCE_X_PIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 xfree (p->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 p->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 x_image_instance_equal (struct Lisp_Image_Instance *p1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 struct Lisp_Image_Instance *p2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 switch (IMAGE_INSTANCE_TYPE (p1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 if (IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
217 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
220 #endif
56
c0965ff3b039 Import from CVS: tag r19-16-pre3
cvs
parents: 50
diff changeset
221 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 return IMAGE_INSTANCE_X_NPIXELS (p);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
238 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 /* #### implement me */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
241 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
242 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 /* Set all the slots in an image instance structure to reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 default values. This is used somewhere within an instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 method. It is assumed that the device slot within the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 instance is already set -- this is the case when instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 methods are called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
258 ii->data = xnew_and_zero (struct x_image_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 IMAGE_INSTANCE_TYPE (ii) = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 /* pixmap file functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 /* Where bitmaps are; initialized from resource database */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 Lisp_Object Vx_bitmap_file_path;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #ifndef BITMAPDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 #define BITMAPDIR "/usr/include/X11/bitmaps"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #define USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 /* Given a pixmap filename, look through all of the "standard" places
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 where the file might be located. Return a full pathname if found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 otherwise, return Qnil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 locate_pixmap_file (Lisp_Object name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 /* This function can GC if IN_REDISPLAY is false */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 /* Check non-absolute pathnames with a directory component relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 the search path; that's the way Xt does it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* #### Unix-specific */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
295 if (XSTRING_BYTE (name, 0) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
296 (XSTRING_BYTE (name, 0) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
297 (XSTRING_BYTE (name, 1) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
298 (XSTRING_BYTE (name, 1) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
299 (XSTRING_BYTE (name, 2) == '/')))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 if (!NILP (Ffile_readable_p (name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 return name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 if (NILP (Vdefault_x_device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 /* This may occur during intialization. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 /* We only check the bitmapFilePath resource on the original X device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #ifdef USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 char *path = egetenv ("XBMLANGPATH");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 SubstitutionRec subs[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 subs[0].match = 'B';
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
319 subs[0].substitution = (char *) XSTRING_DATA (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 We don't. If you want it used, set it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 if (path &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 subs, XtNumber (subs), 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 name = build_string (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 XtFree (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 return (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 if (NILP (Vx_bitmap_file_path))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 char *type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 XrmValue value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 if (XrmGetResource (XtDatabase (display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 "bitmapFilePath", "BitmapFilePath", &type, &value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 && !strcmp (type, "String"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (list1 (build_string (BITMAPDIR))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 Lisp_Object found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 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 Lisp_Object temp = list1 (Vdata_directory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 GCPRO1 (temp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 locate_file (temp, name, "", &found, R_OK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 return found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 /* If INSTANTIATOR refers to inline data, return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 If INSTANTIATOR refers to data in a file, return the full filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 if it exists; otherwise, return a cons of (filename).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 keywords used to look up the file and inline data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 respectively, in the instantiator. Normally these would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 be Q_file and Q_data, but might be different for mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 potential_pixmap_file_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 Lisp_Object file_keyword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 Lisp_Object data_keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 Lisp_Object file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 Lisp_Object data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 assert (VECTORP (instantiator));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
379
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 data = find_keyword_in_vector (instantiator, data_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 file = find_keyword_in_vector (instantiator, file_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 if (!NILP (file) && NILP (data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 Lisp_Object retval = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 if (!NILP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 return Fcons (file, Qnil); /* should have been file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 Lisp_Object image_type_tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
400 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
404
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 `data' will contain the inline data (if any) or Qnil, and `file'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 will contain the name this data was derived from (if known) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 Extbyte *bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 Extcount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 FILE *stream;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
448
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* #### This is a definite problem under Mule due to the amount of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 stack data it might allocate. Need to be able to convert and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 write out to a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 GET_STRING_BINARY_DATA_ALLOCA (string, bytes, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 /* Write out to a temporary file ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 mktemp (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 stream = fopen (filename_out, "w");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 if (!stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 temp_file_error:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 if (stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 int old_errno = errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 fclose (stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 unlink (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 errno = old_errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 report_file_error ("Creating temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 list1 (build_string (filename_out)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 if (fwrite (bytes, len, 1, stream) != 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 goto temp_file_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 if (fclose (stream) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 stream = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 goto temp_file_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 /* cursor functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 not, signal an error. INSTANTIATOR is only used in the error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 message. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 unsigned int best_width, best_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 width, height, &best_width, &best_height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* this means that an X error of some sort occurred (we trap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 these so they're not fatal). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 if (width > best_width || height > best_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 error_with_frob (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 "pointer too large (%dx%d): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 "server requires %dx%d or smaller",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 width, height, best_width, best_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 Lisp_Object *background, XColor *xfg, XColor *xbg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 *foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 Fmake_color_instance (*foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 if (COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 xfg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 xfg->red = xfg->green = xfg->blue = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
525
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 *background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 Fmake_color_instance (*background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 if (COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 xbg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 xbg->red = xbg->green = xbg->blue = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 XColor xfg, xbg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 XIMAGE_INSTANCE_X_CURSOR (image_instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 /* color pixmap functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 /* Initialize an image instance from an XImage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 DEST_MASK specifies the mask of allowed image types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 PIXELS and NPIXELS specify an array of pixels that are used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 the image. These need to be kept around for the duration of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 image. When the image instance is freed, XFreeColors() will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 automatically be called on all the pixels specified here; thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 you should have allocated the pixels yourself using XAllocColor()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 or the like. The array passed in is used directly without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 being copied, so it should be heap data created with xmalloc().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 It will be freed using xfree() when the image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 destroyed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 If this fails, signal an error. INSTANTIATOR is only used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 in the error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 #### This should be able to handle conversion into `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 Use the same code as for `xpm'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 XImage *ximage,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 unsigned long *pixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 int npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 Drawable d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 d = RootWindowOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 IMAGE_COLOR_PIXMAP_MASK);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
607
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 pixmap = XCreatePixmap (dpy, d, ximage->width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 ximage->height, ximage->depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 if (!pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 signal_simple_error ("Unable to create pixmap", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 gc = XCreateGC (dpy, pixmap, 0, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 if (!gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 XFreePixmap (dpy, pixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 signal_simple_error ("Unable to create GC", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
619
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 ximage->width, ximage->height);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
622
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 find_keyword_in_vector (instantiator, Q_file);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
629
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 IMAGE_INSTANCE_X_MASK (ii) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 * XBM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 /* Check if DATA represents a valid inline XBM spec (i.e. a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 of (width height bits), with checking done on the dimensions).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 If not, signal an error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 check_valid_xbm_inline (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 Lisp_Object width, height, bits;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 CHECK_CONS (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 if (!CONSP (XCDR (data)) || !CONSP (XCDR (XCDR (data))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 !NILP (XCDR (XCDR (XCDR (data)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 signal_simple_error ("Must be list of 3 elements", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 width = XCAR (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 height = XCAR (XCDR (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 bits = XCAR (XCDR (XCDR (data)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 if (!INTP (width) || !INTP (height) || !STRINGP (bits))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 signal_simple_error ("Must be (width height bits)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 vector3 (width, height, bits));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 if (XINT (width) <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 signal_simple_error ("Width must be > 0", width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 if (XINT (height) <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 signal_simple_error ("Height must be > 0", height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 if (((unsigned) (XINT (width) * XINT (height)) / 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 > string_char_length (XSTRING (bits)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 signal_simple_error ("data is too short for W and H",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 vector3 (width, height, bits));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 /* Validate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 xbm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 /* Given a filename that is supposed to contain XBM data, return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 the inline representation of it as (width height bits). Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 the hotspot through XHOT and YHOT, if those pointers are not 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 If there is no hotspot, XHOT and YHOT will contain -1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 If the function fails:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 -- if OK_IF_DATA_INVALID is set and the data was invalid,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 return Qt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 -- maybe return an error, or return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
697
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 Extbyte *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 CONST char *filename_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 result = XmuReadBitmapDataFromFile (filename_ext, &w, &h, &data, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 if (result == BitmapSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 int len = (w + 7) / 8 * h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 retval = list3 (make_int (w), make_int (h),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 make_ext_string (data, len, FORMAT_BINARY));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 XFree ((char *) data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 case BitmapOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 /* should never happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 case BitmapFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 "invalid data in file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 case BitmapNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 "out of memory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 signal_double_file_error_2 ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 Lisp_Object mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 /* This is unclean but it's fairly standard -- a number of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 bitmaps in /usr/include/X11/bitmaps use it -- so we support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 if (NILP (mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 /* don't override explicitly specified mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 && NILP (assq_no_quit (Q_mask_data, alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 && !NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 locate_pixmap_file (concat2 (file, build_string ("Mask")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 if (NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 locate_pixmap_file (concat2 (file, build_string ("msk")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 if (!NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 Lisp_Object mask_data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 bitmap_to_lisp_data (mask_file, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 alist = remassq_no_quit (Q_mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 /* there can't be a :mask-data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 alist = Fcons (Fcons (Q_mask_file, mask_file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 Fcons (Fcons (Q_mask_data, mask_data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 return alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 /* Normalize method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
796
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 Fcons (Fcons (Q_data, data), alist));
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 (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 /* Given inline data for a mono pixmap, create and return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 corresponding X object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 static Pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 CONST Extbyte *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 Screen *screen = LISP_DEVICE_TO_X_SCREEN (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 return XCreatePixmapFromBitmapData (DisplayOfScreen (screen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 RootWindowOfScreen (screen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 /* Given inline data for a mono pixmap, initialize the given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 image instance accordingly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 CONST char *bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 Pixmap mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 Lisp_Object mask_filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 Screen *scr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 Dimension d = DefaultDepthOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 unsigned long fg = BlackPixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 unsigned long bg = WhitePixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 Fmake_color_instance (foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 if (COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 if (!NILP (background) && !COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 Fmake_color_instance (background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 if (COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 /* We used to duplicate the pixels using XAllocColor(), to protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 against their getting freed. Just as easy to just store the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 color instances here and GC-protect them, so this doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 XCreatePixmapFromBitmapData (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 RootWindowOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 fg, bg, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 XColor fg_color, bg_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 Pixmap source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 check_pointer_sizes (scr, width, height, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 source =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 XCreatePixmapFromBitmapData (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 RootWindowOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 generate_cursor_fg_bg (device, &foreground, &background,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 &fg_color, &bg_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 find_keyword_in_vector (instantiator, Q_hotspot_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 find_keyword_in_vector (instantiator, Q_hotspot_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (dpy, source, mask, &fg_color, &bg_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1004 xbm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1006 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1007 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1008 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 int dest_mask, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 CONST char *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 CONST char *gcc_may_you_rot_in_hell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 if (!NILP (mask_data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 gcc_may_you_rot_in_hell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 mask =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 XINT (XCAR (mask_data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 XINT (XCAR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (CONST unsigned char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 gcc_may_you_rot_in_hell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 init_image_instance_from_xbm_inline (ii, width, height, bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 instantiator, pointer_fg, pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 dest_mask, mask, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 /* Instantiate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1047 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 CONST char *gcc_go_home;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 gcc_go_home);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 pointer_bg, dest_mask, XINT (XCAR (data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 XINT (XCAR (XCDR (data))), gcc_go_home);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 #ifdef HAVE_JPEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 * JPEG *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1069 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1070 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1071 #endif
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 149
diff changeset
1072 #include <jpeglib.h>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 149
diff changeset
1073 #include <jerror.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1074 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1075 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1076 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1078 /* The in-core jpeg code doesn't work, so I'm avoiding it for now. -sb */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1079 /* Late-breaking update, we're going to give it a try, I think it's */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1080 /* fixed now -sb */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1081 /*#define USE_TEMP_FILES_FOR_JPEG_IMAGES 1*/
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
1082 #define USE_TEMP_FILES_FOR_PNG_IMAGES 1
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1083
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 jpeg_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 jpeg_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 return simple_image_type_normalize (inst, console_type, Qjpeg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1097 jpeg_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 return IMAGE_COLOR_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 /* To survive the otherwise baffling complexity of making sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 everything gets cleaned up in the presence of an error, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 use an unwind_protect(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 struct jpeg_unwind_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 /* Stream that we need to close */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 FILE *instream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 /* Object that holds state info for JPEG decoding */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 struct jpeg_decompress_struct *cinfo_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 /* Pixels to keep around while the image is active */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 unsigned long *pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 int npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 /* Client-side image structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 XImage *ximage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 /* Tempfile to remove */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 char tempfile[50];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 int tempfile_needs_to_be_removed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 jpeg_instantiate_unwind (Lisp_Object unwind_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 struct jpeg_unwind_data *data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (struct jpeg_unwind_data *) get_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 free_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 if (data->cinfo_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 jpeg_destroy_decompress (data->cinfo_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 if (data->instream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 fclose (data->instream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 if (data->tempfile_needs_to_be_removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 unlink (data->tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 if (data->npixels > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 Screen *scr = DefaultScreenOfDisplay (data->dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 Colormap cmap = DefaultColormapOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 xfree (data->pixels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 if (data->ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 if (data->ximage->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 xfree (data->ximage->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 data->ximage->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 XDestroyImage (data->ximage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 * ERROR HANDLING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 * The JPEG library's standard error handler (jerror.c) is divided into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 * several "methods" which you can override individually. This lets you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 * adjust the behavior without duplicating a lot of code, which you might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 * have to update with each future release.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 * Our example here shows how to override the "error_exit" method so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 * control is returned to the library's caller when a fatal error occurs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 * rather than calling exit() as the standard error_exit method does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 * We use C's setjmp/longjmp facility to return control. This means that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 * routine which calls the JPEG library must first execute a setjmp() call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 * establish the return point. We want the replacement error_exit to do a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 * longjmp(). But we need to make the setjmp buffer accessible to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 * error_exit routine. To do this, we make a private extension of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 * standard JPEG error handler object. (If we were using C++, we'd say we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 * were making a subclass of the regular error handler.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 * Here's the extended error handler struct:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 struct my_jpeg_error_mgr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 struct jpeg_error_mgr pub; /* "public" fields */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 jmp_buf setjmp_buffer; /* for return to caller */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 METHODDEF(void)
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 METHODDEF void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 our_init_source (j_decompress_ptr cinfo) {
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 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 METHODDEF(boolean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 METHODDEF boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 our_fill_input_buffer (j_decompress_ptr cinfo) {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1203 /* Insert a fake EOI marker */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1204 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1205 static JOCTET buffer[2];
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1206
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1207 buffer[0] = (JOCTET) 0xFF;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1208 buffer[1] = (JOCTET) JPEG_EOI;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1209
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1210 src->next_input_byte = buffer;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1211 src->bytes_in_buffer = 2;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1212 return TRUE;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 METHODDEF(void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 METHODDEF void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 our_skip_input_data (j_decompress_ptr cinfo, long num_bytes) {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1221 struct jpeg_source_mgr *src = NULL;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1222
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1223 src = (struct jpeg_source_mgr *) cinfo->src;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1224
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1225 if (!src) {
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1226 return;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1227 } else if (num_bytes > src->bytes_in_buffer) {
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1228 ERREXIT(cinfo, JERR_INPUT_EOF);
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1229 /*NOTREACHED*/
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1230 }
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1231
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1232 src->bytes_in_buffer -= num_bytes;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1233 src->next_input_byte += num_bytes;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 METHODDEF(void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 METHODDEF void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 our_term_source (j_decompress_ptr cinfo) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 typedef struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 struct jpeg_source_mgr pub;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 } our_jpeg_source_mgr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1248 static void
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1249 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, unsigned int len)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 struct jpeg_source_mgr *src = NULL;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1252
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 if (cinfo->src == NULL) { /* first time for this JPEG object? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 cinfo->src = (struct jpeg_source_mgr *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 sizeof(our_jpeg_source_mgr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 src = (struct jpeg_source_mgr *) cinfo->src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 src->next_input_byte = data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 src = (struct jpeg_source_mgr *) cinfo->src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 src->init_source = our_init_source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 src->fill_input_buffer = our_fill_input_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 src->skip_input_data = our_skip_input_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 src->term_source = our_term_source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 src->bytes_in_buffer = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 src->next_input_byte = data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 METHODDEF(void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 METHODDEF void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 my_jpeg_error_exit (j_common_ptr cinfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 struct my_jpeg_error_mgr *myerr = (struct my_jpeg_error_mgr *) cinfo->err;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 /* Return control to the setjmp point */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 longjmp (myerr->setjmp_buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 /* The code in this routine is based on example.c from the JPEG library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 source code and from gif_instantiate() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 jpeg_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1289 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 Screen *scr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 /* It is OK for the unwind data to be local to this function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 because the unwind-protect is always executed when this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 stack frame is still valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 struct jpeg_unwind_data unwind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 /* This struct contains the JPEG decompression parameters and pointers to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 * working space (which is allocated as needed by the JPEG library).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 struct jpeg_decompress_struct cinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 /* We use our private extension JPEG error handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 * Note that this struct must live as long as the main JPEG parameter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 * struct, to avoid dangling-pointer problems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 struct my_jpeg_error_mgr jerr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 /* Step -1: First record our unwind-protect, which will clean up after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 any exit, normal or not */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 memset (&unwind, 0, sizeof (unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 unwind.dpy = dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 record_unwind_protect (jpeg_instantiate_unwind, make_opaque_ptr (&unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1324 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 /* Step 0: Write out to a temp file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 The JPEG routines require you to read from a file unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 you provide your own special input handlers, which I don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 feel like doing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 write_lisp_string_to_temp_file (data, unwind.tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 unwind.tempfile_needs_to_be_removed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 /* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 * requires it in order to read binary files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 if ((unwind.instream = fopen (unwind.tempfile, "r")) == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 report_file_error ("Opening JPEG temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 list1 (build_string (unwind.tempfile)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1347
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 /* Step 1: allocate and initialize JPEG decompression object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 /* We set up the normal JPEG error routines, then override error_exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 cinfo.err = jpeg_std_error (&jerr.pub);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 jerr.pub.error_exit = my_jpeg_error_exit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 /* Establish the setjmp return context for my_error_exit to use. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 if (setjmp (jerr.setjmp_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 /* If we get here, the JPEG code has signaled an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 * We need to clean up the JPEG object, close the input file, and return.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 Lisp_Object errstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 char buffer[JMSG_LENGTH_MAX];
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1364
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 /* Create the message */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (*cinfo.err->format_message) ((j_common_ptr) &cinfo, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 errstring = build_string (buffer);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1368
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 signal_simple_error_2 ("JPEG decoding error",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 errstring, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 /* Now we can initialize the JPEG decompression object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 jpeg_create_decompress (&cinfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 unwind.cinfo_ptr = &cinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 /* Step 2: specify data source (eg, a file) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1380 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 jpeg_stdio_src (&cinfo, unwind.instream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 Extbyte *bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 Extcount len;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1387
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 /* #### This is a definite problem under Mule due to the amount of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 stack data it might allocate. Need to be able to convert and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 write out to a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 jpeg_memory_src (&cinfo, bytes, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 /* Step 3: read file parameters with jpeg_read_header() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
1398 jpeg_read_header (&cinfo, TRUE);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 /* We can ignore the return value from jpeg_read_header since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 * (a) suspension is not possible with the stdio data source, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 * (b) we passed TRUE to reject a tables-only JPEG file as an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 * See libjpeg.doc for more info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 /* Step 4: set parameters for decompression. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 /* We request that the JPEG file be automatically quantized into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 8-bit color in case it's not already (many JPEGs are stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 24-bit color). "Two-pass quantize" means that the colormap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 is determined on-the-fly for this particular image rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 quantizing to a supplied colormap. We can get away with this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 because we then use allocate_nearest_color().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 #### Note of course that this is not the most color-effective
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 way of doing things -- we could quantize an image that has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 lots of very similar colors, and eat up the colormap with these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 (useless to other images) colors. Unfortunately I don't think
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 there's any "general" way of maximizing the overall image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 quality of lots of images, given that we don't know the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 colors of the images until we come across each one. Best we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 could do would be various sorts of heuristics, which I don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 feel like dealing with now. A better scheme would be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 way things are done under MS Windows, where the colormap is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 dynamically adjusted for various applications; but that kind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 of thing would have to be provided by X, which it isn't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 cinfo.quantize_colors = TRUE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 cinfo.two_pass_quantize = TRUE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 cinfo.colormap = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 /* Step 5: Start decompressor */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
1433 jpeg_start_decompress (&cinfo);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 /* We can ignore the return value since suspension is not possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 * with the stdio data source.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 /* At this point we know the size of the image and the colormap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 /* Step 5.33: Allocate the colors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 /* Just in case the image contains out-of-range pixels, we go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ahead and allocate space for all of them. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1446 unwind.pixels = xnew_array (unsigned long, 256);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 unwind.npixels = cinfo.actual_number_of_colors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 for (i = 0; i < 256; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 /* Allocate pixels for the various colors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 for (i = 0; i < unwind.npixels; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 int ri, gi, bi;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 ri = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 gi = cinfo.out_color_components > 1 ? 1 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 bi = cinfo.out_color_components > 2 ? 2 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 /* Ok... apparently, an entry of cinfo.colormap can be NULL if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 there are no bits of that color in the image. How incredibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 gross. Wouldn't it be nice to have exceptions!? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 color.red = cinfo.colormap[ri] ? cinfo.colormap[ri][i] << 8 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 color.green = cinfo.colormap[gi] ? cinfo.colormap[gi][i] << 8 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 color.blue = cinfo.colormap[bi] ? cinfo.colormap[bi][i] << 8 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 color.flags = DoRed | DoGreen | DoBlue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr), &color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 unwind.pixels[i] = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 /* Step 5.66: Create the image */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 int height = cinfo.output_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 int width = cinfo.output_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 int depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 int bitmap_pad;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1481
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 depth = DefaultDepthOfScreen (scr);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1483
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 /* first get bitmap_pad (from XPM) */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1485 bitmap_pad = ((depth > 16) ? 32 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1486 (depth > 8) ? 16 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1487 8);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1488
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 depth, ZPixmap, 0, 0, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 bitmap_pad, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 if (!unwind.ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 signal_simple_error ("Unable to create X image struct", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 /* now that bytes_per_line must have been set properly alloc data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 unwind.ximage->data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 /* Step 6: Read in the data and put into image */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 JSAMPARRAY row_buffer; /* Output row buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 int row_stride; /* physical row width in output buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 /* We may need to do some setup of our own at this point before reading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 * the data. After jpeg_start_decompress() we have the correct scaled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 * output image dimensions available, as well as the output colormap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 * if we asked for color quantization.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 * In this example, we need to make an output work buffer of the right size.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1511 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 /* JSAMPLEs per row in output buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 Since we asked for quantized output, cinfo.output_components
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 will always be 1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 row_stride = cinfo.output_width * cinfo.output_components;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 /* Make a one-row-high sample array that will go away when done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 with image */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 row_buffer = ((*cinfo.mem->alloc_sarray)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1520
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 /* Here we use the library's state variable cinfo.output_scanline as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 * loop counter, so that we don't have to keep track ourselves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 while (cinfo.output_scanline < cinfo.output_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 int scanline = cinfo.output_scanline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 /* jpeg_read_scanlines expects an array of pointers to scanlines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 * Here the array is only one element long, but you could ask for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 * more than one scanline at a time if that's more convenient.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 (void) jpeg_read_scanlines (&cinfo, row_buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 for (i = 0; i < cinfo.output_width; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 XPutPixel (unwind.ximage, i, scanline,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 /* Let's make sure we avoid getting bit like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 what happened for GIF's. It's probably the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 case that JSAMPLE's are unsigned chars as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 opposed to chars, but you never know.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 (They could even be shorts if the library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 was compiled with 12-bit samples -- ####
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 We should deal with this possibility) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 unwind.pixels[(unsigned char) row_buffer[0][i]]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 /* Step 6.5: Create the pixmap and set up the image instance */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 unwind.pixels, unwind.npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 /* Step 7: Finish decompression */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
1556 jpeg_finish_decompress (&cinfo);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 /* We can ignore the return value since suspension is not possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 * with the stdio data source.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 /* And we're done!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 Now that we've succeeded, we don't want the pixels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 freed right now. They're kept around in the image instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 structure until it's destroyed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 unwind.npixels = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 /* This will clean up everything else. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 #endif /* HAVE_JPEG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 #ifdef HAVE_GIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 * GIF *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 #include "gif_lib.h" /* This is in our own source tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 gif_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 gif_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 return simple_image_type_normalize (inst, console_type, Qgif);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1596 gif_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 return IMAGE_COLOR_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 /* To survive the otherwise baffling complexity of making sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 everything gets cleaned up in the presence of an error, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 use an unwind_protect(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 struct gif_unwind_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 /* Object that holds the decoded data from a GIF file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 GifFileType *giffile;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 /* Pixels to keep around while the image is active */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 unsigned long *pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 int npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 /* Client-side image structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 XImage *ximage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 /* Tempfile to remove */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 char tempfile[50];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 int tempfile_needs_to_be_removed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 gif_instantiate_unwind (Lisp_Object unwind_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 struct gif_unwind_data *data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (struct gif_unwind_data *) get_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 free_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 if (data->giffile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 DGifCloseFile (data->giffile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 if (data->tempfile_needs_to_be_removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 unlink (data->tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 if (data->npixels > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 Screen *scr = DefaultScreenOfDisplay (data->dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 Colormap cmap = DefaultColormapOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 xfree (data->pixels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 if (data->ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 if (data->ximage->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 xfree (data->ximage->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 data->ximage->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 XDestroyImage (data->ximage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1651 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 /* We provide our own version of DGifSlurp() because the standardly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 provided one doesn't handle interlaced GIFs. This is based on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 code in gif2x11.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 /* Return value is GIF_ERROR, GIF_OK, or -1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 #### We are using "forbidden" knowledge that neither of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 constants is -1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 our_own_dgif_slurp_from_gif2x11_c (GifFileType *GifFile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 int i, j, Row, Col, Width, Height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 int ExtCode, Count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 GifRecordType RecordType;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 GifByteType *Extension;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 SavedImage *sp = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 static int InterlacedOffset[] = { 0, 4, 2, 1 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 static int InterlacedJumps[] = { 8, 8, 4, 2 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 GifPixelType *ScreenBuffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (GifPixelType *) xmalloc (GifFile->SHeight * GifFile->SWidth *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 sizeof (GifPixelType));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1674 GifFile->SavedImages = xnew (SavedImage);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 for (i = 0; i < GifFile->SHeight * GifFile->SWidth; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 ScreenBuffer[i] = GifFile->SBackGroundColor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 /* Scan the content of the GIF file and load the image(s) in: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 if (DGifGetRecordType (GifFile, &RecordType) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 switch (RecordType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 case IMAGE_DESC_RECORD_TYPE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 if (DGifGetImageDesc (GifFile) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 sp = &GifFile->SavedImages[GifFile->ImageCount-1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 Row = GifFile->Image.Top; /* Image Position relative to Screen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 Col = GifFile->Image.Left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 Width = GifFile->Image.Width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 Height = GifFile->Image.Height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 if (GifFile->Image.Left + GifFile->Image.Width > GifFile->SWidth ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 GifFile->Image.Top + GifFile->Image.Height > GifFile->SHeight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 sp->RasterBits = (GifPixelType*) xmalloc(Width * Height *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 sizeof (GifPixelType));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1702
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 if (GifFile->Image.Interlace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 /* Need to perform 4 passes on the images: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 for (Count = i = 0; i < 4; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 for (j = Row + InterlacedOffset[i]; j < Row + Height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 j += InterlacedJumps[i])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 if (DGifGetLine (GifFile, &sp->RasterBits[j * Width + Col],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 Width) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 for (i = 0; i < Height; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 if (DGifGetLine (GifFile,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 &sp->RasterBits[(Row++) * Width + Col],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 Width) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 }
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1725
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1726 /* Only get 1 image from animated gifs. */
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1727 /* #### if the rest of the file was bad, we still return
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1728 GIF_OK, since we don't even bother looking at it. Should
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1729 probably check for ImageCount == 1 above too, hmm. */
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1730 goto done;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 case EXTENSION_RECORD_TYPE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 /* Skip any extension blocks in file: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 if (DGifGetExtension (GifFile, &ExtCode, &Extension) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 while (Extension != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 if (DGifGetExtensionNext (GifFile, &Extension) == GIF_ERROR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 return GIF_ERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 case TERMINATE_RECORD_TYPE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 default: /* Should be traps by DGifGetRecordType. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 while (RecordType != TERMINATE_RECORD_TYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1754 done:
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 100
diff changeset
1755
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 return GIF_OK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 }
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1758 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 gif_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1763 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 Screen *scr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 /* It is OK for the unwind data to be local to this function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 because the unwind-protect is always executed when this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 stack frame is still valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 struct gif_unwind_data unwind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 memset (&unwind, 0, sizeof (unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 unwind.dpy = dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 record_unwind_protect (gif_instantiate_unwind, make_opaque_ptr (&unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 /* 1. Now decode the data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 /* #### The GIF routines currently require that you read from a file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 so write out to a temp file. We should change this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 write_lisp_string_to_temp_file (data, unwind.tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 unwind.tempfile_needs_to_be_removed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 /* Then slurp the image into memory, decoding along the way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 The result is the image in a simple one-byte-per-pixel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 format (#### the GIF routines only support 8-bit GIFs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 it appears). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 unwind.giffile = DGifOpenFileName (unwind.tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 if (unwind.giffile == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 gif_decode_error:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 signal_simple_error ("Unable to decode GIF",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 build_string (EmacsPrintGifError ()));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 }
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1808 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 if (our_own_dgif_slurp_from_gif2x11_c(unwind.giffile) != GIF_OK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 #else
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1811 /* DGifSlurp() doesn't handle interlaced files. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1812 /* Actually, it does, sort of. It just sets the Interlace flag
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1813 and stores RasterBits in interlaced order. We handle that below. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 if (DGifSlurp (unwind.giffile) != GIF_OK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 goto gif_decode_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 /* 2. Now allocate the colors for the image. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 ColorMapObject *cmap = unwind.giffile->SColorMap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 /* Just in case the image contains out-of-range pixels, we go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 ahead and allocate space for all of them. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1825 unwind.pixels = xnew_array (unsigned long, 256);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 unwind.npixels = cmap->ColorCount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 for (i = 0; i < 256; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 /* Allocate pixels for the various colors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 for (i = 0; i < cmap->ColorCount; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 color.red = cmap->Colors[i].Red << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 color.green = cmap->Colors[i].Green << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 color.blue = cmap->Colors[i].Blue << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 color.flags = DoRed | DoGreen | DoBlue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr), &color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 unwind.pixels[i] = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 /* 3. Now create the image */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 int height = unwind.giffile->SHeight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 int width = unwind.giffile->SWidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 int depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 int bitmap_pad;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1852 int i, j, row, pass, interlace;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1853 /* interlaced gifs have rows in this order:
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1854 0, 8, 16, ..., 4, 12, 20, ..., 2, 6, 10, ..., 1, 3, 5, ... */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1855 static int InterlacedOffset[] = { 0, 4, 2, 1 };
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1856 static int InterlacedJumps[] = { 8, 8, 4, 2 };
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1857
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1858
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 depth = DefaultDepthOfScreen (scr);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1860
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 /* first get bitmap_pad (from XPM) */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1862 bitmap_pad = ((depth > 16) ? 32 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1863 (depth > 8) ? 16 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1864 8);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1865
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 depth, ZPixmap, 0, 0, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 bitmap_pad, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 if (!unwind.ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 signal_simple_error ("Unable to create X image struct", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 /* now that bytes_per_line must have been set properly alloc data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 unwind.ximage->data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 /* write the data --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 #### XPutPixel() is a client-side-only function but could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 still be slow. Another possibility is to just convert to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 XPM format and use the Xpm routines, which optimize this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 stuff; but it's doubtful that this will be faster in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 long run, what with all the XPM overhead. If this proves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 to be a bottleneck here, maybe we should just copy the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 optimization routines from XPM (they're in turn mostly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 copied from the Xlib source code). */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1886
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1887 /* Note: We just use the first image in the file and ignore the rest.
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1888 We check here that that image covers the full "screen" size.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1889 I don't know whether that's always the case.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1890 -dkindred@cs.cmu.edu */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1891 if (unwind.giffile->SavedImages[0].ImageDesc.Height != height
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1892 || unwind.giffile->SavedImages[0].ImageDesc.Width != width
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1893 || unwind.giffile->SavedImages[0].ImageDesc.Left != 0
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1894 || unwind.giffile->SavedImages[0].ImageDesc.Top != 0)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1895 signal_simple_error ("First image in GIF file is not full size",
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1896 instantiator);
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1897
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1898 interlace = unwind.giffile->SavedImages[0].ImageDesc.Interlace;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1899 pass = 0;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1900 row = interlace ? InterlacedOffset[pass] : 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 for (i = 0; i < height; i++)
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1902 {
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1903 if (interlace && row >= height)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1904 row = InterlacedOffset[++pass];
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1905
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1906 for (j = 0; j < width; j++)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1907 XPutPixel (unwind.ximage, j, row,
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1908 unwind.pixels[(unsigned char)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1909 /* incorrect signed declaration
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1910 of RasterBits[] */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1911 (unwind.giffile->SavedImages[0].
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1912 RasterBits[i * width + j])]);
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1913
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1914 row += interlace ? InterlacedJumps[pass] : 1;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
1915 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 /* 4. Now create the pixmap and set up the image instance */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 unwind.pixels, unwind.npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 /* Now that we've succeeded, we don't want the pixels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 freed right now. They're kept around in the image instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 structure until it's destroyed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 unwind.npixels = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 #endif /* HAVE_GIF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 #ifdef HAVE_PNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 * PNG *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 png_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 png_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 return simple_image_type_normalize (inst, console_type, Qpng);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1950 png_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 return IMAGE_COLOR_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
1955 #if !defined (USE_TEMP_FILES_FOR_PNG_IMAGES) && (PNG_LIBPNG_VER >= 87)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 struct png_memory_storage
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 Extbyte *bytes; /* The data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 Extcount len; /* How big is it? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 int index; /* Where are we? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 static void png_read_from_memory(png_structp png_ptr, png_bytep data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 png_uint_32 length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 struct png_memory_storage *tbr =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 (struct png_memory_storage *) png_get_io_ptr (png_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 if (length > (tbr->len - tbr->index))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1970 png_error (png_ptr, (png_const_charp) "Read Error");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 memcpy(data,tbr->bytes + tbr->index,length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 tbr->index = tbr->index + length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 }
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
1974 #endif /* !USE_TEMP_FILES_FOR_PNG_IMAGESS || PNG_LIBPNG_VER >= 87 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 struct png_unwind_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 FILE *instream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 png_struct *png_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 png_info *info_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 unsigned long *pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 int npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 XImage *ximage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 char tempfile[50];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 int tempfile_needs_to_be_removed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 png_instantiate_unwind (Lisp_Object unwind_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 struct png_unwind_data *data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 (struct png_unwind_data *) get_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 free_opaque_ptr (unwind_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 if (data->png_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 png_read_destroy (data->png_ptr, data->info_ptr, (png_info *) NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 if (data->instream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 fclose (data->instream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 if (data->tempfile_needs_to_be_removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 unlink (data->tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 if (data->npixels > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 Screen *scr = DefaultScreenOfDisplay (data->dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 Colormap cmap = DefaultColormapOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 XFreeColors (data->dpy, cmap, data->pixels, data->npixels, 0L);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 xfree (data->pixels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 if (data->ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 if (data->ximage->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 xfree (data->ximage->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 data->ximage->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 XDestroyImage (data->ximage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2023 /* This doesn't appear to be used. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2024 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 #define get_png_val(p) _get_png_val (&(p), info_ptr.bit_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 png_uint_16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 _get_png_val (png_byte **pp, int bit_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 png_uint_16 c = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 if (bit_depth == 16) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 c = (*((*pp)++)) << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 c |= (*((*pp)++));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 return c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2038 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 png_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2043 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 Screen *scr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 struct png_unwind_data unwind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 /* PNG variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 png_struct *png_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 png_info *info_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2062 png_ptr = xnew (png_struct);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2063 info_ptr = xnew (png_info);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 memset (&unwind, 0, sizeof (unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 unwind.png_ptr = png_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 unwind.info_ptr = info_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 unwind.dpy = dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 record_unwind_protect (png_instantiate_unwind, make_opaque_ptr (&unwind));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 /* This code is a mixture of stuff from Ben's GIF/JPEG stuff from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 this file, example.c from the libpng 0.81 distribution, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 pngtopnm sources. -WMP-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 */
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
2076 #if defined (USE_TEMP_FILES_FOR_PNG_IMAGES) || (PNG_LIBPNG_VER < 87)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 /* Write out to a temp file - we really should take the time to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 write appropriate memory bound IO stuff, but I am just trying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 to get the stupid thing working right now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 write_lisp_string_to_temp_file (data, unwind.tempfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 unwind.tempfile_needs_to_be_removed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 if ((unwind.instream = fopen (unwind.tempfile, "rb")) == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 report_file_error ("Opening PNG temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 list1 (build_string (unwind.tempfile)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 /* Nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 /* Set the jmp_buf reurn context for png_error ... if this returns !0, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 we ran into a problem somewhere, and need to clean up after ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 if (setjmp (png_ptr->jmpbuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 /* Am I doing enough here? I think so, since most things happen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 in png_unwind */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 png_read_destroy (png_ptr, info_ptr, (png_info *) NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 signal_simple_error ("Error decoding PNG", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 /* Initialize all PNG structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 png_info_init (info_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 png_read_init (png_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 /* Initialize the IO layer and read in header information */
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
2112 #if defined (USE_TEMP_FILES_FOR_PNG_IMAGES) || (PNG_LIBPNG_VER < 87)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 png_init_io (png_ptr, unwind.instream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 Extbyte *bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 Extcount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 struct png_memory_storage tbr; /* Data to be read */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2120
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 assert (!NILP (data));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2122
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 /* #### This is a definite problem under Mule due to the amount of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 stack data it might allocate. Need to be able to convert and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 write out to a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 tbr.bytes = bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 tbr.len = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 tbr.index = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 png_set_read_fn(png_ptr,(void *) &tbr, png_read_from_memory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 png_read_info (png_ptr, info_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 /* set up the transformations you want. Note that these are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 all optional. Only call them if you want them */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 /* tell libpng to strip 16 bit depth files down to 8 bits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 if (info_ptr->bit_depth == 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 png_set_strip_16 (png_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 if (info_ptr->bit_depth < 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 png_set_packing (png_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 /* ##### Perhaps some way to specify the screen gamma should be in here? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 int height = info_ptr->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 int width = info_ptr->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 int depth = info_ptr->bit_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 int linesize = max (info_ptr->bit_depth >> 3, 1) * width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 int bitmap_pad;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 int y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 png_byte *png_pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 png_byte **row_pointers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 png_color static_color_cube[216];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 /* Wow, allocate all the memory. Truly, exciting. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2158 unwind.pixels = xnew_array (unsigned long, 256);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2159 png_pixels = xnew_array (png_byte, linesize * height);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2160 row_pointers = xnew_array (png_byte *, height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 for (y = 0; y < 256; y++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 unwind.pixels[y] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 for (y = 0; y < height; y++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 row_pointers[y] = png_pixels + (linesize * y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 /* #### This is where we should handle transparency, but I am unsure of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 how exactly to get that information right now, in a safe manner. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 png_color_16 current_background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 /* Some appropriate magic should go here to get the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 buffers (device?) background color and convert it to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 png_color_16 struct */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 if (info_ptr->valid & PNG_INFO_bKGD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 png_set_background (png_ptr, &(info_ptr->background), PNG_GAMMA_FILE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 1, 1.0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 png_set_background (png_ptr, &current_background, PNG_GAMMA_SCREEN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 0, 1.0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 if ((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 if (!(info_ptr->valid & PNG_INFO_PLTE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 for (y = 0; y < 216; y++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 static_color_cube[y].red = (y % 6) * 255.0 / 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 static_color_cube[y].green = ((y / 6) % 6) * 255.0 / 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 static_color_cube[y].blue = (y / 36) * 255.0 / 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 png_set_dither (png_ptr, static_color_cube, 216, 216, NULL, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 png_set_dither (png_ptr, info_ptr->palette, info_ptr->num_palette,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 info_ptr->num_palette, info_ptr->hist, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2204
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 png_read_image (png_ptr, row_pointers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 png_read_end (png_ptr, info_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 /* Ok, now we go and allocate all the colors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 if (info_ptr->valid & PNG_INFO_PLTE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 unwind.npixels = info_ptr->num_palette;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 for (y = 0; y < unwind.npixels; y++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 color.red = info_ptr->palette[y].red << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 color.green = info_ptr->palette[y].green << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 color.blue = info_ptr->palette[y].blue << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 color.flags = DoRed | DoGreen | DoBlue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 &color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 unwind.pixels[y] = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 unwind.npixels = 216;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 for (y = 0; y < 216; y++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 color.red = static_color_cube[y].red << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 color.green = static_color_cube[y].green << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 color.blue = static_color_cube[y].blue << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 color.flags = DoRed|DoGreen|DoBlue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 allocate_nearest_color (dpy, DefaultColormapOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 &color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 unwind.pixels[y] = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 #ifdef PNG_SHOW_COMMENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 /* ####
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 * I turn this off by default now, because the !%^@#!% comments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 * show up every time the image is instantiated, which can get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 * really really annoying. There should be some way to pass this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 * type of data down into the glyph code, where you can get to it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 * from lisp anyway. - WMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 for (i = 0 ; i < info_ptr->num_text ; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 /* How paranoid do I have to be about no trailing NULLs, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 using (int)info_ptr->text[i].text_length, and strncpy and a temp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 string somewhere? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 warn_when_safe (Qpng, Qinfo, "%s - %s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 info_ptr->text[i].key,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 info_ptr->text[i].text);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 /* Now create the image */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2263
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 depth = DefaultDepthOfScreen (scr);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2265
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 /* first get bitmap_pad (from XPM) */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2267 bitmap_pad = ((depth > 16) ? 32 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2268 (depth > 8) ? 16 :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2269 8);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2270
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 unwind.ximage = XCreateImage (dpy, DefaultVisualOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 depth, ZPixmap, 0, 0, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 bitmap_pad, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 if (!unwind.ximage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 signal_simple_error ("Unable to create X image struct",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 /* now that bytes_per_line must have been set properly alloc data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 unwind.ximage->data = (char *) xmalloc (unwind.ximage->bytes_per_line *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 for (i = 0; i < height; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 for (j = 0; j < width; j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 XPutPixel (unwind.ximage, j, i,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 unwind.pixels[png_pixels[i * width + j]]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2290
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 xfree (row_pointers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 xfree (png_pixels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 unwind.pixels, unwind.npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 /* This will clean up everything else. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 unwind.npixels = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 #endif /* HAVE_PNG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 #ifdef HAVE_TIFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 * TIFF *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 tiff_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 tiff_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 signal_simple_error ("No TIFF support yet", inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 static int
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
2326 tiff_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 return IMAGE_COLOR_PIXMAP_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 tiff_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2334 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 #endif /* HAVE_TIFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 * XPM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 check_valid_xpm_color_symbols (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 Lisp_Object rest;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2352
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 for (rest = data; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 if (!CONSP (rest) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 !CONSP (XCAR (rest)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 !STRINGP (XCAR (XCAR (rest))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 (!STRINGP (XCDR (XCAR (rest))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 signal_simple_error ("Invalid color symbol alist", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 xpm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 char **data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2376 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 if (result == XpmSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 Lisp_Object retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 struct buffer *old_buffer = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 Lisp_Object temp_buffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 Fget_buffer_create (build_string (" *pixmap conversion*"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 int height, width, ncolors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 GCPRO3 (name, retval, temp_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 set_buffer_internal (XBUFFER (temp_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 Ferase_buffer (Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 buffer_insert_c_string (current_buffer, "/* XPM */\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 for (elt = 0; elt <= width + ncolors; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 buffer_insert_c_string (current_buffer, "\"");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 buffer_insert_c_string (current_buffer, data[elt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 if (elt < width + ncolors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 buffer_insert_c_string (current_buffer, "\",\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 buffer_insert_c_string (current_buffer, "\"};\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 retval = Fbuffer_substring (Qnil, Qnil, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 XpmFree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 set_buffer_internal (old_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 RETURN_UNGCPRO (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 signal_simple_error ("invalid XPM data in file", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 signal_double_file_error ("Reading pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 "out of memory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 case XpmOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 /* should never happen? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 "no such file or directory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 signal_double_file_error_2 ("Parsing pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 Lisp_Object Vxpm_color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 evaluate_xpm_color_symbols (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 Lisp_Object rest, results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 GCPRO2 (rest, results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 Lisp_Object name, value, cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 CHECK_CONS (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 CHECK_CONS (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 CHECK_STRING (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 CHECK_CONS (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 value = XCAR (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 value = Feval (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 ("Result from xpm-color-symbols eval must be nil, string, or color",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 results = Fcons (Fcons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 return results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 Lisp_Object color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2491
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 `data' will contain the inline data (if any) or Qnil, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 `file' will contain the name this data was derived from (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 if (NILP (file) && !UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 Lisp_Object data = pixmap_to_lisp_data (file, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 if (UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 color_symbols = evaluate_xpm_color_symbols ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2542 xpm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2544 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2545 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2546 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 There was no version number in xpm.h before 3.3, but this should do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 #if (XpmVersion >= 3) || defined(XpmExactColors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 # define XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 #ifndef XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 Your version of XPM is too old. You cannot compile with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 Upgrade to version 3.2g or better or compile with --with-xpm=no.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 #endif /* !XPM_DOES_BUFFERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 static XpmColorSymbol *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2564 Lisp_Object domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 Lisp_Object color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 Screen *xs = LISP_DEVICE_TO_X_SCREEN (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 Display *dpy = DisplayOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 Colormap cmap = DefaultColormapOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 Lisp_Object results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 XpmColorSymbol *symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 GCPRO2 (results, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 /* We built up results to be (("name" . #<color>) ...) so that if an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 error happens we don't lose any malloc()ed data, or more importantly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 leave any pixels allocated in the server. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 LIST_LOOP (rest, color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 Lisp_Object cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 Lisp_Object name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 Lisp_Object value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 value =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 Fmake_color_instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 assert (COLOR_SPECIFIERP (value));
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2598 value = Fspecifier_instance (value, domain, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 results = noseeum_cons (noseeum_cons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 if (i == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2609 symbols = xnew_array (XpmColorSymbol, i);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 xpmattrs->valuemask |= XpmColorSymbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 xpmattrs->colorsymbols = symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 xpmattrs->numsymbols = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 while (--i >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 Lisp_Object cons = XCAR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 /* Duplicate the pixel value so that we still have a lock on it if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 the pixel we were passed is later freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 if (! XAllocColor (dpy, cmap, &color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 abort (); /* it must be allocable since we're just duplicating it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2623 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 symbols [i].pixel = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 symbols [i].value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 cons = results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 results = XCDR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 return symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 xpm_free (XpmAttributes *xpmattrs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 /* Could conceivably lose if XpmXXX returned an error without first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 initializing this structure, if we didn't know that initializing it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 to all zeros was ok (and also that it's ok to call XpmFreeAttributes()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 multiple times, since it zeros slots as it frees them...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 XpmFreeAttributes (xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2647 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 XpmAttributes xpmattrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 XpmColorSymbol *color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 Q_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 int force_mono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 force_mono = (type != IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 memset (&xpmattrs, 0, sizeof (xpmattrs)); /* want XpmInitAttributes() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 xpmattrs.valuemask = XpmReturnPixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 /* Without this, we get a 1-bit version of the color image, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 isn't quite right. With this, we get the mono image, which might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 be very different looking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 xpmattrs.valuemask |= XpmColorKey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 xpmattrs.color_key = XPM_MONO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 xpmattrs.depth = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 xpmattrs.valuemask |= XpmDepth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 xpmattrs.closeness = 65535;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 xpmattrs.valuemask |= XpmCloseness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2707
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2708 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 color_symbol_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 result = XpmCreatePixmapFromBuffer (dpy,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 RootWindowOfScreen (xs),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2713 (char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 &pixmap, &mask, &xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 if (color_symbols)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 xfree (color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 xpmattrs.numsymbols = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 case XpmSuccess:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 signal_simple_error ("invalid XPM data", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 case XpmColorFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 case XpmColorError:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 force_mono = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 signal_double_file_error ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 "out of memory", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 signal_double_file_error_2 ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 make_int (result), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 w = xpmattrs.width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 h = xpmattrs.height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 int npixels = xpmattrs.npixels;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2777 Pixel *pixels;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 if (npixels != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2781 pixels = xnew_array (Pixel, npixels);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2785 pixels = NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 IMAGE_INSTANCE_X_MASK (ii) = mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 /* XpmReadFileToPixmap() doesn't return the depth (bogus!) so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 we need to get it ourself. (No, xpmattrs.depth is not it;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 that's an input slot, not output.) We could just assume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 that it has the same depth as the root window, but some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 devices allow more than one depth, so that isn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 necessarily correct (I guess?) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 Window root;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 unsigned int w2, h2, bw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 unsigned int d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 if (!XGetGeometry (dpy, pixmap, &root, &x, &y, &w2, &h2, &bw, &d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 if (w != w2 || h != h2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 int npixels = xpmattrs.npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 Pixel *pixels = xpmattrs.pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 int xhot = 0, yhot = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 xhot = xpmattrs.x_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 yhot = xpmattrs.y_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 check_pointer_sizes (xs, w, h, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 /* If the loaded pixmap has colors allocated (meaning it came from an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 XPM file), then use those as the default colors for the cursor we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 create. Otherwise, default to pointer_fg and pointer_bg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 if (npixels >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 /* With an XBM file, it's obvious which bit is foreground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 and which is background, or rather, it's implicit: in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 an XBM file, a 1 bit is foreground, and a 0 bit is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 background.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2855
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 XCreatePixmapCursor() assumes this property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 pixmap it is called with as well; the `foreground'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 color argument is used for the 1 bits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 With an XPM file, it's tricker, since the elements of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 the pixmap don't represent FG and BG, but are actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 pixel values. So we need to figure out which of those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 pixels is the foreground color and which is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 background. We do it by comparing RGB and assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 that the darker color is the foreground. This works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 with the result of xbmtopbm|ppmtoxpm, at least.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2867
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 It might be nice if there was some way to tag the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 colors in the XPM file with whether they are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 foreground - perhaps with logical color names somehow?
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2871
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 Once we have decided which color is the foreground, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 need to ensure that that color corresponds to a `1' bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 in the Pixmap. The XPM library wrote into the (1-bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 pixmap with XPutPixel, which will ignore all but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 least significant bit.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2877
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 This means that a 1 bit in the image corresponds to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 `fg' only if `fg.pixel' is odd.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2880
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 (This also means that the image will be all the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 color if both `fg' and `bg' are odd or even, but we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 safely assume that that won't happen if the XPM file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 sensible I think.)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2885
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 The desired result is that the image use `1' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 represent the foreground color, and `0' to represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 the background color. So, we may need to invert the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 image to accomplish this; we invert if fg is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 odd. (Remember that WhitePixel and BlackPixel are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 necessarily 1 and 0 respectively, though I think it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 might be safe to assume that one of them is always 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 and the other is always 0. We also pretty much need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 assume that one is even and the other is odd.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 fg.pixel = pixels[0]; /* pick a pixel at random. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 bg.pixel = fg.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 bg.pixel = pixels[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 if (fg.pixel != bg.pixel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 /* If (fg.pixel == bg.pixel) then probably something has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 gone wrong, but I don't think signalling an error would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 be appropriate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 XQueryColor (dpy, DefaultColormapOfScreen (xs), &fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 XQueryColor (dpy, DefaultColormapOfScreen (xs), &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 /* If the foreground is lighter than the background, swap them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 (This occurs semi-randomly, depending on the ordering of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 color list in the XPM file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 + (fg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 + (bg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 if (fg_total > bg_total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 XColor swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 swap = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 fg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 bg = swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2930
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 (This occurs (only?) on servers with Black=0, White=1.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 if ((fg.pixel & 1) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 gcv.function = GXxor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 gcv.foreground = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2964
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 #endif /* HAVE_XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 * X-Face *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 xface_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
2986 /* This funcation can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2990
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3034 xface_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3036 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3037 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3038 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 #if defined(EXTERN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 /* This is about to get redefined! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 #undef EXTERN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 /* We have to define SYSV32 so that compface.h includes string.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 instead of strings.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 #define SYSV32
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3049 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3050 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3051 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 #include <compface.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3053 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3054 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3055 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 /* JMP_BUF cannot be used here because if it doesn't get defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 to jmp_buf we end up with a conflicting type error with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 definition in compface.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 extern jmp_buf comp_env;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 #undef SYSV32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3065 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 int i, stattis;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 char *p, *bits, *bp;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3070 CONST char * volatile emsg = 0;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3071 CONST char * volatile dstring;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 if ((p = strchr (dstring, ':')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 dstring = p + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 if (!(stattis = setjmp (comp_env)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 UnCompAll ((char *) dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 UnGenFace ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 switch (stattis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 case -2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 emsg = "uncompface: internal error";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 case -1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 emsg = "uncompface: insufficient or invalid data";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 emsg = "uncompface: excess data ignored";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 if (emsg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 signal_simple_error_2 (emsg, data, Qimage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 bp = bits = (char *) alloca (PIXELS / 8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 /* the compface library exports char F[], which uses a single byte per
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 pixel to represent a 48x48 bitmap. Yuck. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 for (i = 0, p = F; i < (PIXELS / 8); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 int n, b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 /* reverse the bit order of each byte... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 for (b = n = 0; b < 8; ++b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 n |= ((*p++) << b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 *bp++ = (char) n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 pointer_bg, dest_mask, 48, 48, bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 #endif /* HAVE_XFACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 /**********************************************************************
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3128 * Autodetect *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3132 autodetect_validate (Lisp_Object instantiator)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 static Lisp_Object
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3138 autodetect_normalize (Lisp_Object instantiator,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
3139 Lisp_Object console_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 Lisp_Object filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 Lisp_Object data = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 GCPRO3 (filename, data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 RETURN_UNGCPRO (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 filename = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 if (!NILP (filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 /* #### Apparently some versions of XpmReadFileToData, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 called by pixmap_to_lisp_data, don't return an error value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 if the given file is not a valid XPM file. Instead, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 just seg fault. It is definitely caused by passing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 bitmap. To try and avoid this we check for bitmaps first. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3163
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 if (xhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 if (yhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 alist = xbm_mask_file_munging (alist, filename, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 data = pixmap_to_lisp_data (filename, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 alist = Fcons (Fcons (Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 evaluate_xpm_color_symbols ()),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 /* If we couldn't convert it, just put it back as it is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 We might try to further frob it later as a cursor-font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 specification. (We can't do that now because we don't know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 what dest-types it's going to be instantiated into.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 {
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3212 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 static int
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3219 autodetect_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3221 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3222 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3223 IMAGE_COLOR_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3224 IMAGE_POINTER_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3225 IMAGE_TEXT_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3229 autodetect_instantiate (Lisp_Object image_instance,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
3230 Lisp_Object instantiator,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
3231 Lisp_Object pointer_fg,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
3232 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3233 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 int is_cursor_font = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 GCPRO3 (data, alist, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 if (XmuCursorNameToIndex (name_ext) != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 result = alist_to_tagged_vector (Qcursor_font, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 is_cursor_font = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 if (!is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 result = alist_to_tagged_vector (Qstring, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 if (is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 cursor_font_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3261 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 string_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3264 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 * Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 /* XmuCvtStringToCursor is bogus in the following ways:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 - When it can't convert the given string to a real cursor, it will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 sometimes return a "success" value, after triggering a BadPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 error. It then gives you a cursor that will itself generate BadCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 errors. So we install this error handler to catch/notice the X error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 and take that as meaning "couldn't convert."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 - When you tell it to find a cursor file that doesn't exist, it prints
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 an error message on stderr. You can't make it not do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 objects, or XPM files, or $XBMLANGPATH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 static int XLoadFont_got_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 XLoadFont_got_error = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 static Font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 safe_XLoadFont (Display *dpy, char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 Font font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 int (*old_handler) (Display *, XErrorEvent *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 XLoadFont_got_error = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 old_handler = XSetErrorHandler (XLoadFont_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 font = XLoadFont (dpy, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 XSetErrorHandler (old_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 if (XLoadFont_got_error) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 return font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3322 font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3330 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 Font source, mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 int source_char, mask_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 if (!STRINGP (data) ||
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
3350 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 signal_simple_error ("Invalid font-glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
3366 count = sscanf ((char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 "FONT %s %d %s %d %c",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 source_name, &source_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 mask_name, &mask_char, &dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 /* Allow "%s %d %d" as well... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 count = 4, mask_name[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 if (count != 2 && count != 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 signal_simple_error ("invalid cursor specification", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 source = safe_XLoadFont (dpy, source_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 if (! source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 signal_simple_error_2 ("couldn't load font",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 build_string (source_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 if (count == 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 else if (!mask_name[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 mask = source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 mask = safe_XLoadFont (dpy, mask_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 /* continuable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 build_string (mask_name), data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 mask_char = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 XUnloadFont (dpy, source);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 if (mask && mask != source) XUnloadFont (dpy, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 * Cursor-Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 cursor_font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3420 cursor_font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3428 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 signal_simple_error ("Unrecognized cursor-font name", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 maybe_recolor_cursor (image_instance, foreground, background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 x_colorize_image_instance (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 Lisp_Object foreground, Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 struct Lisp_Image_Instance *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 p = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 /* Make sure there aren't two pointers to the same mask, causing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 it to get freed twice. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485 Screen *scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 Dimension d = DefaultDepthOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 Pixmap new = XCreatePixmap (dpy, RootWindowOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 gcv.foreground = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 gcv.background = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 0, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 IMAGE_INSTANCE_X_PIXMAP (p) = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
3512 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 /* subwindows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 Lisp_Object Qsubwindowp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 static Lisp_Object mark_subwindow (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 static void print_subwindow (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 static void finalize_subwindow (void *, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 static int subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 static unsigned long subwindow_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 mark_subwindow, print_subwindow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 finalize_subwindow, subwindow_equal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 subwindow_hash, struct Lisp_Subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 return sw->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 struct frame *frm = XFRAME (sw->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 error ("printing unreadable object #<subwindow 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 write_c_string ("#<subwindow", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 sprintf (buf, " %dx%d", sw->width, sw->height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 /* This is stolen from frame.c. Subwindows are strange in that they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 are specific to a particular frame so we want to print in their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 description what that frame is. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3553
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 write_c_string (" on #<", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 if (!FRAME_LIVE_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 write_c_string ("dead", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 else if (FRAME_TTY_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 write_c_string ("tty", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 else if (FRAME_X_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 write_c_string ("x", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 write_c_string ("UNKNOWN", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 write_c_string ("-frame ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 print_internal (frm->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 sprintf (buf, " 0x%x>", frm->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 sprintf (buf, ") 0x%x>", sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 finalize_subwindow (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 if (for_disksave) finalose (sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 if (sw->subwindow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 sw->subwindow = 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 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 /* subwindows are equal iff they have the same window XID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 subwindow_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 return XSUBWINDOW (obj)->subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 /* #### PROBLEM: The display routines assume that the glyph is only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 being displayed in one buffer. If it is in two different buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 which are both being displayed simultaneously you will lose big time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 This can be dealt with in the new redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
3602 /* #### These are completely un-re-implemented in 19.14. Get it done
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
3603 for 19.15. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3605 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 Creates a new `subwindow' object of size WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 The default is a window of size 1x1, which is also the minimum allowed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 window size. Subwindows are per-frame. A buffer being shown in two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 different frames will only display a subwindow glyph in the frame in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 which it was actually created. If two windows on the same frame are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 displaying the buffer then the most recently used window will actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612 display the window. If the frame is not specified, the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3616 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3617 (width, height, frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 Window pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 unsigned int iw, ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 XSetWindowAttributes xswa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 Mask valueMask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626
140
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
3627 error ("subwindows are not functional in 20.2; they may be again someday");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 f = decode_x_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 dpy = DisplayOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 CHECK_INT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 iw = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 if (iw < 1) iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 CHECK_INT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 ih = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 if (ih < 1) ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3653 struct Lisp_Subwindow *sw =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3654 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 sw->frame = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 sw->xscreen = xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 sw->parent_window = pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 sw->height = ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 sw->width = iw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 xswa.backing_store = Always;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 valueMask |= CWBackingStore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 xswa.colormap = DefaultColormapOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 valueMask |= CWColormap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 InputOutput, CopyFromParent, valueMask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 &xswa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 XSETSUBWINDOW (val, sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 /* #### Should this function exist? */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3678 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3681 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3682 (subwindow, property, data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 Atom property_atom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 CHECK_STRING (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 (FRAME_DEVICE (XFRAME (sw->frame))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3696 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3698 PropModeReplace,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3699 XSTRING_DATA (data),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
3700 XSTRING_LENGTH (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 return (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3705 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 Return non-nil if OBJECT is a subwindow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3708 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3709 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 return (SUBWINDOWP (object) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3714 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 Width of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3717 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3718 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 return (make_int (XSUBWINDOW (subwindow)->width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3724 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 Height of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3727 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3728 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 return (make_int (XSUBWINDOW (subwindow)->height));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3734 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 Return the xid of SUBWINDOW as a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3737 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3738 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 return (make_int (XSUBWINDOW (subwindow)->subwindow));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3744 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 Resize SUBWINDOW to WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746 If a value is nil that parameter is not changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3748 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3749 (subwindow, width, height))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751 int neww, newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 neww = sw->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 neww = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 newh = sw->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 newh = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 sw->height = newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 sw->width = neww;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3775 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 Generate a Map event for SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3778 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3779 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 XSUBWINDOW (subwindow)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 }
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
3788 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 syms_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
3797 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 defsymbol (&Qsubwindowp, "subwindowp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3800 DEFSUBR (Fmake_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3801 DEFSUBR (Fchange_subwindow_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3802 DEFSUBR (Fsubwindowp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3803 DEFSUBR (Fsubwindow_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3804 DEFSUBR (Fsubwindow_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3805 DEFSUBR (Fsubwindow_xid);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3806 DEFSUBR (Fresize_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3807 DEFSUBR (Fforce_subwindow_map);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
3808 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 defkeyword (&Q_mask_file, ":mask-file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 defkeyword (&Q_mask_data, ":mask-data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 defkeyword (&Q_hotspot_x, ":hotspot-x");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 defkeyword (&Q_hotspot_y, ":hotspot-y");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 defkeyword (&Q_foreground, ":foreground");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 defkeyword (&Q_background, ":background");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 defkeyword (&Q_color_symbols, ":color-symbols");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 console_type_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 /* image methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 CONSOLE_HAS_METHOD (x, print_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 CONSOLE_HAS_METHOD (x, finalize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 CONSOLE_HAS_METHOD (x, image_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 CONSOLE_HAS_METHOD (x, image_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 CONSOLE_HAS_METHOD (x, colorize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 image_instantiator_format_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 /* image-instantiator types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 IIFORMAT_HAS_METHOD (xbm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 IIFORMAT_HAS_METHOD (xbm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 IIFORMAT_HAS_METHOD (xbm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 IIFORMAT_HAS_METHOD (cursor_font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 IIFORMAT_HAS_METHOD (font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 IIFORMAT_HAS_METHOD (font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 IIFORMAT_HAS_METHOD (font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 #ifdef HAVE_JPEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (jpeg, "jpeg");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 IIFORMAT_HAS_METHOD (jpeg, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 IIFORMAT_HAS_METHOD (jpeg, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 IIFORMAT_HAS_METHOD (jpeg, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 IIFORMAT_HAS_METHOD (jpeg, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 IIFORMAT_VALID_KEYWORD (jpeg, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 IIFORMAT_VALID_KEYWORD (jpeg, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 #ifdef HAVE_GIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gif, "gif");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 IIFORMAT_HAS_METHOD (gif, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 IIFORMAT_HAS_METHOD (gif, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 IIFORMAT_HAS_METHOD (gif, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 IIFORMAT_HAS_METHOD (gif, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 IIFORMAT_VALID_KEYWORD (gif, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 IIFORMAT_VALID_KEYWORD (gif, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 #ifdef HAVE_PNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (png, "png");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 IIFORMAT_HAS_METHOD (png, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 IIFORMAT_HAS_METHOD (png, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 IIFORMAT_HAS_METHOD (png, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 IIFORMAT_HAS_METHOD (png, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 IIFORMAT_VALID_KEYWORD (png, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 IIFORMAT_VALID_KEYWORD (png, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3910
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 #ifdef HAVE_TIFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (tiff, "tiff");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 IIFORMAT_HAS_METHOD (tiff, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 IIFORMAT_HAS_METHOD (tiff, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 IIFORMAT_HAS_METHOD (tiff, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 IIFORMAT_HAS_METHOD (tiff, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 IIFORMAT_VALID_KEYWORD (tiff, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 IIFORMAT_VALID_KEYWORD (tiff, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 IIFORMAT_HAS_METHOD (xpm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 IIFORMAT_HAS_METHOD (xpm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 IIFORMAT_HAS_METHOD (xpm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 IIFORMAT_HAS_METHOD (xface, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 IIFORMAT_HAS_METHOD (xface, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 IIFORMAT_HAS_METHOD (xface, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3950 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3952 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3953 "autodetect");
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3954
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3955 IIFORMAT_HAS_METHOD (autodetect, validate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3956 IIFORMAT_HAS_METHOD (autodetect, normalize);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3957 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3958 IIFORMAT_HAS_METHOD (autodetect, instantiate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3959
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3960 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 #ifdef HAVE_JPEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 Fprovide (Qjpeg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 #ifdef HAVE_GIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 Fprovide (Qgif);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 #ifdef HAVE_PNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 Fprovide (Qpng);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3977
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 #ifdef HAVE_TIFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 Fprovide (Qtiff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 Fprovide (Qxpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 Definitions of logical color-names used when reading XPM files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 The COLOR-NAME should be a string, which is the name of the color to define;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 the FORM should evaluate to a `color' specifier object, or a string to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 passed to `make-color-instance'. If a loaded XPM file references a symbolic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 color called COLOR-NAME, it will display as the computed color instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 The default value of this variable defines the logical color names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 \"foreground\" and \"background\" to be the colors of the `default' face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3997 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 Fprovide (Qxface);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4001 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 A list of the directories in which X bitmap files may be found.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4005 If nil, this is initialized from the "*bitmapFilePath" resource.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 This is used by the `make-image-instance' function (however, note that if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 the environment variable XBMLANGPATH is set, it is consulted first).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 Vx_bitmap_file_path = Qnil;
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 complex_vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 #define BUILD_GLYPH_INST(variable, name) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 Fadd_spec_to_specifier \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 (GLYPH_IMAGE (XGLYPH (variable)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 vector3 (Qxbm, Q_data, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 list3 (make_int (name##_width), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 make_int (name##_height), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 make_ext_string (name##_bits, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 sizeof (name##_bits), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 FORMAT_BINARY))), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 Qglobal, Qx, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4029 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 #undef BUILD_GLYPH_INST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 }