annotate src/glyphs-x.c @ 274:ca9a9ec9c1c1 r21-0b35

Import from CVS: tag r21-0b35
author cvs
date Mon, 13 Aug 2007 10:29:42 +0200
parents c5d627a313b1
children 6330739388db
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
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 20.5
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
39 Many changes for color work and optimizations by Jareth Hein for 20.5
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 20.5
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
41 TIFF code by Jareth Hein for 20.5
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 TODO:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Convert images.el to C and stick it in here?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include "lisp.h"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
49 #include "lstream.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
60 #include "imgproc.h"
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
61
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #include "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
64 #ifdef HAVE_PNG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
65 #ifdef __cplusplus
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
66 extern "C" {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
67 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
68 #include <png.h>
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
69 #ifdef __cplusplus
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
70 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
71 #endif
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
72 #else
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
73 #include <setjmp.h>
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
74 #endif
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
75 #ifdef FILE_CODING
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
76 #include "file-coding.h"
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
77 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
79 #if INTBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
80 # define FOUR_BYTE_TYPE unsigned int
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
81 #elif LONGBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
82 # define FOUR_BYTE_TYPE unsigned long
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
83 #elif SHORTBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
84 # define FOUR_BYTE_TYPE unsigned short
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
85 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
86 #error What kind of strange-ass system are we running on?
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
87 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
88
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
89 #define LISP_DEVICE_TO_X_SCREEN(dev) XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Lisp_Object Qxbm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 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
95 Lisp_Object Q_foreground, Q_background;
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_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object Qxpm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object Q_color_symbols;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
101 void mswindows_xpm_instantiate (Lisp_Object image_instance,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
102 Lisp_Object instantiator,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
103 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
104 int dest_mask, Lisp_Object domain);
0
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_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Lisp_Object Qxface;
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
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
112 #ifdef HAVE_TIFF
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
113 DEFINE_IMAGE_INSTANTIATOR_FORMAT (tiff);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
114 Lisp_Object Qtiff;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
115 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
116
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
117 #ifdef HAVE_JPEG
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
118 DEFINE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
119 Lisp_Object Qjpeg;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
120 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
121
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
122 #ifdef HAVE_GIF
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
123 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gif);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
124 Lisp_Object Qgif;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
125 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
126
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
127 #ifdef HAVE_PNG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
128 DEFINE_IMAGE_INSTANTIATOR_FORMAT (png);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
129 Lisp_Object Qpng;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 Lisp_Object Qcursor_font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
137 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 static void cursor_font_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
143 int dest_mask,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
144 Lisp_Object domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #include "bitmaps.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 /* image instance methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 /************************************************************************/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
152 static DOESNT_RETURN
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
153 signal_image_error (CONST char *reason, Lisp_Object frob)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
154 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
155 signal_error (Qimage_conversion_error,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
156 list2 (build_translated_string (reason), frob));
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
157 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
158
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
159 static DOESNT_RETURN
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
160 signal_image_error_2 (CONST char *reason, Lisp_Object frob0, Lisp_Object frob1)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
161 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
162 signal_error (Qimage_conversion_error,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
163 list3 (build_translated_string (reason), frob0, frob1));
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
164 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
166 /************************************************************************/
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
167 /* convert from a series of RGB triples to an XImage formated for the */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
168 /* proper display */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
169 /************************************************************************/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
170 static XImage *
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
171 convert_EImage_to_XImage (Lisp_Object device, int width, int height,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
172 unsigned char *pic, unsigned long **pixtbl,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
173 int *pixcount, int *npixels)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
174 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
175 Display *dpy;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
176 Colormap cmap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
177 Visual *vis;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
178 XImage *outimg;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
179 int depth, bitmap_pad, byte_cnt, i, j;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
180 int rd,gr,bl,q;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
181 unsigned char *data, *ip, *dp;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
182 quant_table *qtable;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
183 union {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
184 FOUR_BYTE_TYPE val;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
185 char cp[4];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
186 } conv;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
187
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
188 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
189 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
190 vis = DEVICE_X_VISUAL (XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
191 depth = DEVICE_X_DEPTH(XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
192
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
193 if (vis->class == PseudoColor)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
194 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
195 /* Quantize the image and get a histogram while we're at it.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
196 Do this first to save memory */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
197 qtable = build_EImage_quantable(pic, width, height, 256);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
198 if (qtable == NULL) return NULL;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
199 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
200
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
201 bitmap_pad = ((depth > 16) ? 32 :
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
202 (depth > 8) ? 16 :
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
203 8);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
204 byte_cnt = bitmap_pad >> 3;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
205
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
206 outimg = XCreateImage (dpy, vis,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
207 depth, ZPixmap, 0, 0, width, height,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
208 bitmap_pad, 0);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
209 if (!outimg) return NULL;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
210
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
211 data = (unsigned char *) xmalloc (outimg->bytes_per_line * height);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
212 if (!data)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
213 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
214 XDestroyImage (outimg);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
215 return NULL;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
216 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
217 outimg->data = (char *) data;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
218
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
219 if (vis->class == PseudoColor)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
220 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
221 unsigned long pixarray[256];
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
222 int n;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
223 /* use our quantize table to allocate the colors */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
224 *pixcount = 32;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
225 *pixtbl = xnew_array (unsigned long, *pixcount);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
226 *npixels = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
227
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
228 /* ### should implement a sort by popularity to assure proper allocation */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
229 n = *npixels;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
230 for (i = 0; i < qtable->num_active_colors; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
231 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
232 XColor color;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
233 int res;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
234
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
235 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
236 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
237 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
238 color.flags = DoRed | DoGreen | DoBlue;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
239 res = allocate_nearest_color (dpy, cmap, vis, &color);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
240 if (res > 0 && res < 3)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
241 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
242 DO_REALLOC(*pixtbl, *pixcount, n+1, unsigned long);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
243 (*pixtbl)[n] = color.pixel;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
244 n++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
245 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
246 pixarray[i] = color.pixel;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
247 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
248 *npixels = n;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
249 ip = pic;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
250 for (i = 0; i < height; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
251 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
252 dp = data + (i * outimg->bytes_per_line);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
253 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
254 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
255 rd = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
256 gr = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
257 bl = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
258 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
259 #ifdef WORDS_BIGENDIAN
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
260 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
261 #else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
262 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
263 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
264 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
265 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
266 xfree(qtable);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
267 } else {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
268 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
269 junk = vis->red_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
270 rshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
271 while ((junk & 0x1) == 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
272 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
273 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
274 rshift ++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
275 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
276 rbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
277 while (junk != 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
278 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
279 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
280 rbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
281 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
282 junk = vis->green_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
283 gshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
284 while ((junk & 0x1) == 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
285 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
286 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
287 gshift ++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
288 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
289 gbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
290 while (junk != 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
291 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
292 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
293 gbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
294 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
295 junk = vis->blue_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
296 bshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
297 while ((junk & 0x1) == 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
298 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
299 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
300 bshift ++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
301 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
302 bbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
303 while (junk != 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
304 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
305 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
306 bbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
307 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
308 ip = pic;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
309 for (i = 0; i < height; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
310 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
311 dp = data + (i * outimg->bytes_per_line);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
312 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
313 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
314 if (rbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
315 rd = *ip++ << (rbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
316 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
317 rd = *ip++ >> (8 - rbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
318 if (gbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
319 gr = *ip++ << (gbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
320 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
321 gr = *ip++ >> (8 - gbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
322 if (bbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
323 bl = *ip++ << (bbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
324 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
325 bl = *ip++ >> (8 - bbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
326
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
327 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
328 #ifdef WORDS_BIGENDIAN
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
329 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
330 #else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
331 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
332 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
333 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
334 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
335 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
336 return outimg;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
337 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
338
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
339
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
340
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 x_print_image_instance (struct Lisp_Image_Instance *p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 if (IMAGE_INSTANCE_X_MASK (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 break;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
362 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
365 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 x_finalize_image_instance (struct Lisp_Image_Instance *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 if (!p->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 if (DEVICE_LIVE_P (XDEVICE (p->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
379 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 if (IMAGE_INSTANCE_X_PIXMAP (p))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
382 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 if (IMAGE_INSTANCE_X_MASK (p) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
385 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if (IMAGE_INSTANCE_X_CURSOR (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
391 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 IMAGE_INSTANCE_X_CURSOR (p) = 0;
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 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
397 XFreeColors (dpy,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
398 IMAGE_INSTANCE_X_COLORMAP (p),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 IMAGE_INSTANCE_X_PIXELS (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 IMAGE_INSTANCE_X_NPIXELS (p), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 if (IMAGE_INSTANCE_X_PIXELS (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 xfree (IMAGE_INSTANCE_X_PIXELS (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 IMAGE_INSTANCE_X_PIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 xfree (p->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 p->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 x_image_instance_equal (struct Lisp_Image_Instance *p1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 struct Lisp_Image_Instance *p2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 switch (IMAGE_INSTANCE_TYPE (p1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 case IMAGE_POINTER:
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
423 if (IMAGE_INSTANCE_X_COLORMAP (p1) != IMAGE_INSTANCE_X_COLORMAP (p2) ||
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
424 IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
426 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
429 #endif
56
c0965ff3b039 Import from CVS: tag r19-16-pre3
cvs
parents: 50
diff changeset
430 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 break;
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 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 return IMAGE_INSTANCE_X_NPIXELS (p);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
447 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* #### implement me */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
450 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
451 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 /* Set all the slots in an image instance structure to reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 default values. This is used somewhere within an instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 method. It is assumed that the device slot within the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 instance is already set -- this is the case when instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 methods are called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
467 ii->data = xnew_and_zero (struct x_image_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 IMAGE_INSTANCE_TYPE (ii) = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 /* pixmap file functions */
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 /* Where bitmaps are; initialized from resource database */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 Lisp_Object Vx_bitmap_file_path;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 #ifndef BITMAPDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 #define BITMAPDIR "/usr/include/X11/bitmaps"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 #define USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 /* Given a pixmap filename, look through all of the "standard" places
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 where the file might be located. Return a full pathname if found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 otherwise, return Qnil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 locate_pixmap_file (Lisp_Object name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* This function can GC if IN_REDISPLAY is false */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 /* Check non-absolute pathnames with a directory component relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 the search path; that's the way Xt does it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 /* #### Unix-specific */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
504 if (XSTRING_BYTE (name, 0) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
505 (XSTRING_BYTE (name, 0) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
506 (XSTRING_BYTE (name, 1) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
507 (XSTRING_BYTE (name, 1) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
508 (XSTRING_BYTE (name, 2) == '/')))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 if (!NILP (Ffile_readable_p (name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 return name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 if (NILP (Vdefault_x_device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 /* This may occur during intialization. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 /* We only check the bitmapFilePath resource on the original X device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 #ifdef USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 char *path = egetenv ("XBMLANGPATH");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 SubstitutionRec subs[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 subs[0].match = 'B';
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
528 subs[0].substitution = (char *) XSTRING_DATA (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 We don't. If you want it used, set it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 if (path &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 subs, XtNumber (subs), 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 name = build_string (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 XtFree (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 return (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 if (NILP (Vx_bitmap_file_path))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 char *type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 XrmValue value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 if (XrmGetResource (XtDatabase (display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 "bitmapFilePath", "BitmapFilePath", &type, &value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 && !strcmp (type, "String"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
551 (decode_path (BITMAPDIR)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 Lisp_Object found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 Lisp_Object temp = list1 (Vdata_directory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 GCPRO1 (temp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 locate_file (temp, name, "", &found, R_OK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 return found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 /* If INSTANTIATOR refers to inline data, return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 If INSTANTIATOR refers to data in a file, return the full filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 if it exists; otherwise, return a cons of (filename).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 keywords used to look up the file and inline data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 respectively, in the instantiator. Normally these would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 be Q_file and Q_data, but might be different for mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 potential_pixmap_file_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Lisp_Object file_keyword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 Lisp_Object data_keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 Lisp_Object file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 Lisp_Object data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 assert (VECTORP (instantiator));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
588
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 data = find_keyword_in_vector (instantiator, data_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 file = find_keyword_in_vector (instantiator, file_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 if (!NILP (file) && NILP (data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 Lisp_Object retval = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 if (!NILP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 return Fcons (file, Qnil); /* should have been file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 Lisp_Object image_type_tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
609 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
613
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 `data' will contain the inline data (if any) or Qnil, and `file'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 will contain the name this data was derived from (if known) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 Fcons (Fcons (Q_data, data), alist));
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 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
651 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
655 Lisp_Object instream, outstream;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
656 Lstream *istr, *ostr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
657 char tempbuf[1024]; /* some random amount */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
658 int fubar = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
659 FILE *tmpfil;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
660 static Extbyte_dynarr *conversion_out_dynarr;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
661 Bytecount bstart, bend;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
662 struct gcpro gcpro1, gcpro2;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
663 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
664 Lisp_Object conv_out_stream;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
665 Lstream *costr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
666 struct gcpro gcpro3;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
667 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
668
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
669 /* This function can GC */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
670 if (!conversion_out_dynarr)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
671 conversion_out_dynarr = Dynarr_new (Extbyte);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
672 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
673 Dynarr_reset (conversion_out_dynarr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
674
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
675 /* Create the temporary file ... */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 mktemp (filename_out);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
678 tmpfil = fopen (filename_out, "w");
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
679 if (!tmpfil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
681 if (tmpfil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 int old_errno = errno;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
684 fclose (tmpfil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 unlink (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 errno = old_errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 report_file_error ("Creating temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 list1 (build_string (filename_out)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
692 CHECK_STRING (string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
693 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
694 GB_HISTORICAL_STRING_BEHAVIOR);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
695 instream = make_lisp_string_input_stream (string, bstart, bend);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
696 istr = XLSTREAM (instream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
697 /* setup the out stream */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
698 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
699 ostr = XLSTREAM (outstream);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
700 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
701 /* setup the conversion stream */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
702 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
703 costr = XLSTREAM (conv_out_stream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
704 GCPRO3 (instream, outstream, conv_out_stream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
705 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
706 GCPRO2 (instream, outstream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
707 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
708
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
709 /* Get the data while doing the conversion */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
710 while (1)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
711 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
712 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
713 if (!size_in_bytes)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
714 break;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
715 /* It does seem the flushes are necessary... */
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
716 #ifdef FILE_CODING
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
717 Lstream_write (costr, tempbuf, size_in_bytes);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
718 Lstream_flush (costr);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
719 #else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
720 Lstream_write (ostr, tempbuf, size_in_bytes);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
721 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
722 Lstream_flush (ostr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
723 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
724 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
725 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
726 fubar = 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
727 break;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
728 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
729 /* reset the dynarr */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
730 Lstream_rewind(ostr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
731 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
732
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
733 if (fclose (tmpfil) != 0)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
734 fubar = 1;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
735 Lstream_close (istr);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
736 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
737 Lstream_close (costr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
738 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
739 Lstream_close (ostr);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
740
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
741 UNGCPRO;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
742 Lstream_delete (istr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
743 Lstream_delete (ostr);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
744 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
745 Lstream_delete (costr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
746 #endif
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
747
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
748 if (fubar)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
749 report_file_error ("Writing temp file",
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
750 list1 (build_string (filename_out)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
752 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
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 /* cursor functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 not, signal an error. INSTANTIATOR is only used in the error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 message. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 unsigned int best_width, best_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 width, height, &best_width, &best_height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 /* this means that an X error of some sort occurred (we trap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 these so they're not fatal). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 if (width > best_width || height > best_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 error_with_frob (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 "pointer too large (%dx%d): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 "server requires %dx%d or smaller",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 width, height, best_width, best_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 Lisp_Object *background, XColor *xfg, XColor *xbg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 *foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 Fmake_color_instance (*foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 if (COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 xfg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 xfg->red = xfg->green = xfg->blue = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
797
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 *background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 Fmake_color_instance (*background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 if (COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 xbg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 xbg->red = xbg->green = xbg->blue = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 XColor xfg, xbg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 XIMAGE_INSTANCE_X_CURSOR (image_instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 /* color pixmap functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 /* Initialize an image instance from an XImage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 DEST_MASK specifies the mask of allowed image types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 PIXELS and NPIXELS specify an array of pixels that are used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 the image. These need to be kept around for the duration of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 image. When the image instance is freed, XFreeColors() will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 automatically be called on all the pixels specified here; thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 you should have allocated the pixels yourself using XAllocColor()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 or the like. The array passed in is used directly without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 being copied, so it should be heap data created with xmalloc().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 It will be freed using xfree() when the image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 destroyed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 If this fails, signal an error. INSTANTIATOR is only used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 in the error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 #### This should be able to handle conversion into `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 Use the same code as for `xpm'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 XImage *ximage,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 int dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
858 Colormap cmap,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 unsigned long *pixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 int npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 Drawable d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
873 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 IMAGE_COLOR_PIXMAP_MASK);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
878
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 pixmap = XCreatePixmap (dpy, d, ximage->width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 ximage->height, ximage->depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 if (!pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 signal_simple_error ("Unable to create pixmap", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 gc = XCreateGC (dpy, pixmap, 0, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 if (!gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 XFreePixmap (dpy, pixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 signal_simple_error ("Unable to create GC", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
890
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 ximage->width, ximage->height);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
893
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 find_keyword_in_vector (instantiator, Q_file);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
900
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 IMAGE_INSTANCE_X_MASK (ii) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
906 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 * XBM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 /* Check if DATA represents a valid inline XBM spec (i.e. a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 of (width height bits), with checking done on the dimensions).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 If not, signal an error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 check_valid_xbm_inline (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 Lisp_Object width, height, bits;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
925 if (!CONSP (data) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
926 !CONSP (XCDR (data)) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
927 !CONSP (XCDR (XCDR (data))) ||
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 !NILP (XCDR (XCDR (XCDR (data)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 signal_simple_error ("Must be list of 3 elements", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
931 width = XCAR (data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 height = XCAR (XCDR (data));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
933 bits = XCAR (XCDR (XCDR (data)));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
934
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
935 CHECK_STRING (bits);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
936
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
937 if (!NATNUMP (width))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
938 signal_simple_error ("Width must be a natural number", width);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
939
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
940 if (!NATNUMP (height))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
941 signal_simple_error ("Height must be a natural number", height);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
942
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
943 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
944 signal_simple_error ("data is too short for width and height",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 vector3 (width, height, bits));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 /* Validate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 xbm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 /* Given a filename that is supposed to contain XBM data, return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 the inline representation of it as (width height bits). Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 the hotspot through XHOT and YHOT, if those pointers are not 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 If there is no hotspot, XHOT and YHOT will contain -1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 If the function fails:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 -- if OK_IF_DATA_INVALID is set and the data was invalid,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 return Qt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 -- maybe return an error, or return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
967
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 Extbyte *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 CONST char *filename_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 result = XmuReadBitmapDataFromFile (filename_ext, &w, &h, &data, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 if (result == BitmapSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 int len = (w + 7) / 8 * h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 retval = list3 (make_int (w), make_int (h),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 make_ext_string (data, len, FORMAT_BINARY));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 XFree ((char *) data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 case BitmapOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 /* should never happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 case BitmapFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 "invalid data in file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 case BitmapNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 "out of memory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 signal_double_file_error_2 ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 Lisp_Object mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 /* This is unclean but it's fairly standard -- a number of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 bitmaps in /usr/include/X11/bitmaps use it -- so we support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 if (NILP (mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 /* don't override explicitly specified mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 && NILP (assq_no_quit (Q_mask_data, alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 && !NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 locate_pixmap_file (concat2 (file, build_string ("Mask")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 if (NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 locate_pixmap_file (concat2 (file, build_string ("msk")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 if (!NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 Lisp_Object mask_data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 bitmap_to_lisp_data (mask_file, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 alist = remassq_no_quit (Q_mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 /* there can't be a :mask-data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 alist = Fcons (Fcons (Q_mask_file, mask_file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 Fcons (Fcons (Q_mask_data, mask_data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 return alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 /* Normalize method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1066
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 /* Given inline data for a mono pixmap, create and return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 corresponding X object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 static Pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 CONST Extbyte *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1126 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1127 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 /* Given inline data for a mono pixmap, initialize the given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 image instance accordingly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 CONST char *bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 Pixmap mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 Lisp_Object mask_filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 Screen *scr;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1152 Drawable draw;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1159 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1198 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 unsigned long fg = BlackPixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 unsigned long bg = WhitePixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 Fmake_color_instance (foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 if (COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 if (!NILP (background) && !COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 Fmake_color_instance (background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 encode_error_behavior_flag (ERROR_ME));
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 (COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 /* We used to duplicate the pixels using XAllocColor(), to protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 against their getting freed. Just as easy to just store the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 color instances here and GC-protect them, so this doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 IMAGE_INSTANCE_X_PIXMAP (ii) =
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1225 XCreatePixmapFromBitmapData (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 fg, bg, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 case IMAGE_POINTER:
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1233 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 XColor fg_color, bg_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 Pixmap source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 check_pointer_sizes (scr, width, height, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 source =
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1240 XCreatePixmapFromBitmapData (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 generate_cursor_fg_bg (device, &foreground, &background,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 &fg_color, &bg_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 find_keyword_in_vector (instantiator, Q_hotspot_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 find_keyword_in_vector (instantiator, Q_hotspot_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (dpy, source, mask, &fg_color, &bg_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 }
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1271
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1273 xbm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1275 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1276 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1277 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 int dest_mask, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 CONST char *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 CONST char *gcc_may_you_rot_in_hell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 if (!NILP (mask_data))
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1295 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 gcc_may_you_rot_in_hell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 mask =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 XINT (XCAR (mask_data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 XINT (XCAR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (CONST unsigned char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 gcc_may_you_rot_in_hell);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1304 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 init_image_instance_from_xbm_inline (ii, width, height, bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 instantiator, pointer_fg, pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 dest_mask, mask, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 /* Instantiate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1315 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1316 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 CONST char *gcc_go_home;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 gcc_go_home);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 pointer_bg, dest_mask, XINT (XCAR (data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 XINT (XCAR (XCDR (data))), gcc_go_home);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 * XPM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 check_valid_xpm_color_symbols (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 Lisp_Object rest;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1342
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 for (rest = data; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 if (!CONSP (rest) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 !CONSP (XCAR (rest)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 !STRINGP (XCAR (XCAR (rest))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (!STRINGP (XCDR (XCAR (rest))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 signal_simple_error ("Invalid color symbol alist", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 xpm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 char **data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1366 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 if (result == XpmSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 Lisp_Object retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 struct buffer *old_buffer = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 Lisp_Object temp_buffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 Fget_buffer_create (build_string (" *pixmap conversion*"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 int height, width, ncolors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 GCPRO3 (name, retval, temp_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 set_buffer_internal (XBUFFER (temp_buffer));
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
1383 Ferase_buffer (Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 buffer_insert_c_string (current_buffer, "/* XPM */\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 for (elt = 0; elt <= width + ncolors; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 buffer_insert_c_string (current_buffer, "\"");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 buffer_insert_c_string (current_buffer, data[elt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 if (elt < width + ncolors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 buffer_insert_c_string (current_buffer, "\",\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 buffer_insert_c_string (current_buffer, "\"};\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
1400 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 XpmFree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 set_buffer_internal (old_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 RETURN_UNGCPRO (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 return Qt;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1415 signal_image_error ("invalid XPM data in file", name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 signal_double_file_error ("Reading pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 "out of memory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 case XpmOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 /* should never happen? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 "no such file or directory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 signal_double_file_error_2 ("Parsing pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 Lisp_Object Vxpm_color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 evaluate_xpm_color_symbols (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 Lisp_Object rest, results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 GCPRO2 (rest, results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 Lisp_Object name, value, cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 CHECK_CONS (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 CHECK_CONS (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 CHECK_STRING (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 CHECK_CONS (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 value = XCAR (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 value = Feval (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 ("Result from xpm-color-symbols eval must be nil, string, or color",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 results = Fcons (Fcons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 return results;
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 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 Lisp_Object color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 Lisp_Object alist = Qnil;
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 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 `data' will contain the inline data (if any) or Qnil, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 `file' will contain the name this data was derived from (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 if (NILP (file) && !UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 Lisp_Object data = pixmap_to_lisp_data (file, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 if (UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 color_symbols = evaluate_xpm_color_symbols ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1532 xpm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1534 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1535 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1536 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 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
1542 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 #if (XpmVersion >= 3) || defined(XpmExactColors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 # define XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 #ifndef XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Your version of XPM is too old. You cannot compile with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 Upgrade to version 3.2g or better or compile with --with-xpm=no.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 #endif /* !XPM_DOES_BUFFERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 static XpmColorSymbol *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1554 Lisp_Object domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 Lisp_Object color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 /* This function can GC */
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1558 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1559 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 Lisp_Object results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 XpmColorSymbol *symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 GCPRO2 (results, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 /* We built up results to be (("name" . #<color>) ...) so that if an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 error happens we don't lose any malloc()ed data, or more importantly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 leave any pixels allocated in the server. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 LIST_LOOP (rest, color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Lisp_Object cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 Lisp_Object name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 Lisp_Object value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 value =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 Fmake_color_instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 assert (COLOR_SPECIFIERP (value));
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1587 value = Fspecifier_instance (value, domain, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 results = noseeum_cons (noseeum_cons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 if (i == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1598 symbols = xnew_array (XpmColorSymbol, i);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 xpmattrs->valuemask |= XpmColorSymbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 xpmattrs->colorsymbols = symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 xpmattrs->numsymbols = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 while (--i >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 Lisp_Object cons = XCAR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 /* 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
1608 the pixel we were passed is later freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 if (! XAllocColor (dpy, cmap, &color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 abort (); /* it must be allocable since we're just duplicating it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1612 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 symbols [i].pixel = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 symbols [i].value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 cons = results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 results = XCDR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 return symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 xpm_free (XpmAttributes *xpmattrs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 /* Could conceivably lose if XpmXXX returned an error without first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 initializing this structure, if we didn't know that initializing it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 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
1629 multiple times, since it zeros slots as it frees them...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 XpmFreeAttributes (xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1636 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 Screen *xs;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1644 Colormap cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1645 int depth;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 XpmAttributes xpmattrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 XpmColorSymbol *color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 Q_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 int force_mono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 unsigned int w, h;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1656 #ifdef HAVE_MS_WINDOWS
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1657 if (DEVICE_MSWINDOWS_P (XDEVICE (device)))
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1658 return mswindows_xpm_instantiate(image_instance, instantiator,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1659 pointer_fg, pointer_bg,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1660 dest_mask, domain);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1661 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 force_mono = (type != IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1681 #if 1
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1682 /* Although I haven't found it documented yet, it appears that pointers are
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1683 always colored via the default window colormap... Sigh. However, with
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1684 the current color structure, this will blow the doors off as things aren't set up
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1685 to differenciate between two colormaps per console. AARGH! */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1686 if (type == IMAGE_POINTER)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1687 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1688 cmap = DefaultColormap(dpy, DefaultScreen(dpy));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1689 depth = DefaultDepthOfScreen (xs);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1690 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1691 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1692 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1693 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1694 depth = DEVICE_X_DEPTH (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1695 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1696 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1697 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1698 depth = DEVICE_X_DEPTH (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1699 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1700
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1707 xzero (xpmattrs); /* want XpmInitAttributes() */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 xpmattrs.valuemask = XpmReturnPixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 /* Without this, we get a 1-bit version of the color image, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 isn't quite right. With this, we get the mono image, which might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 be very different looking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 xpmattrs.valuemask |= XpmColorKey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 xpmattrs.color_key = XPM_MONO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 xpmattrs.depth = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 xpmattrs.valuemask |= XpmDepth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 xpmattrs.closeness = 65535;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 xpmattrs.valuemask |= XpmCloseness;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1723 xpmattrs.depth = depth;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1724 xpmattrs.valuemask |= XpmDepth;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1725 xpmattrs.visual = DEVICE_X_VISUAL (XDEVICE(device));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1726 xpmattrs.valuemask |= XpmVisual;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1727 xpmattrs.colormap = cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1728 xpmattrs.valuemask |= XpmColormap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1730
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1731 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 color_symbol_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 result = XpmCreatePixmapFromBuffer (dpy,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1735 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1736 (char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 &pixmap, &mask, &xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 if (color_symbols)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 xfree (color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 xpmattrs.numsymbols = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 case XpmSuccess:
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 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 xpm_free (&xpmattrs);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1753 signal_image_error ("invalid XPM data", data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 case XpmColorFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 case XpmColorError:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 force_mono = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 signal_double_file_error ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 "out of memory", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 signal_double_file_error_2 ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 make_int (result), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 w = xpmattrs.width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 h = xpmattrs.height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 int npixels = xpmattrs.npixels;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1800 Pixel *pixels;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 if (npixels != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1804 pixels = xnew_array (Pixel, npixels);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1808 pixels = NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 IMAGE_INSTANCE_X_MASK (ii) = mask;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1812 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1828 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 int npixels = xpmattrs.npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 Pixel *pixels = xpmattrs.pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 int xhot = 0, yhot = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 xhot = xpmattrs.x_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 yhot = xpmattrs.y_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 check_pointer_sizes (xs, w, h, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 /* If the loaded pixmap has colors allocated (meaning it came from an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 XPM file), then use those as the default colors for the cursor we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 create. Otherwise, default to pointer_fg and pointer_bg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 if (npixels >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 /* With an XBM file, it's obvious which bit is foreground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 and which is background, or rather, it's implicit: in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 an XBM file, a 1 bit is foreground, and a 0 bit is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 background.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1862
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 XCreatePixmapCursor() assumes this property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 pixmap it is called with as well; the `foreground'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 color argument is used for the 1 bits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 With an XPM file, it's tricker, since the elements of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 the pixmap don't represent FG and BG, but are actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 pixel values. So we need to figure out which of those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 pixels is the foreground color and which is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 background. We do it by comparing RGB and assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 that the darker color is the foreground. This works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 with the result of xbmtopbm|ppmtoxpm, at least.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1874
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 It might be nice if there was some way to tag the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 colors in the XPM file with whether they are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 foreground - perhaps with logical color names somehow?
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1878
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 Once we have decided which color is the foreground, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 need to ensure that that color corresponds to a `1' bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 in the Pixmap. The XPM library wrote into the (1-bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 pixmap with XPutPixel, which will ignore all but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 least significant bit.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1884
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 This means that a 1 bit in the image corresponds to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 `fg' only if `fg.pixel' is odd.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1887
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (This also means that the image will be all the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 color if both `fg' and `bg' are odd or even, but we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 safely assume that that won't happen if the XPM file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 sensible I think.)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1892
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 The desired result is that the image use `1' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 represent the foreground color, and `0' to represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 the background color. So, we may need to invert the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 image to accomplish this; we invert if fg is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 odd. (Remember that WhitePixel and BlackPixel are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 necessarily 1 and 0 respectively, though I think it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 might be safe to assume that one of them is always 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 and the other is always 0. We also pretty much need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 assume that one is even and the other is odd.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 fg.pixel = pixels[0]; /* pick a pixel at random. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 bg.pixel = fg.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 bg.pixel = pixels[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 if (fg.pixel != bg.pixel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 /* If (fg.pixel == bg.pixel) then probably something has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 gone wrong, but I don't think signalling an error would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 be appropriate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1917 XQueryColor (dpy, cmap, &fg);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1918 XQueryColor (dpy, cmap, &bg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 /* If the foreground is lighter than the background, swap them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 (This occurs semi-randomly, depending on the ordering of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 color list in the XPM file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 + (fg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 + (bg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 if (fg_total > bg_total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 XColor swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 swap = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 fg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 bg = swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1937
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 (This occurs (only?) on servers with Black=0, White=1.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 if ((fg.pixel & 1) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 gcv.function = GXxor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 gcv.foreground = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1971
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 #endif /* HAVE_XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1978 #ifdef HAVE_JPEG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1979
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1980 /**********************************************************************
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1981 * JPEG *
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1982 **********************************************************************/
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1983
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1984 #ifdef __cplusplus
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1985 extern "C" {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1986 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1987 #include <jpeglib.h>
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1988 #include <jerror.h>
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1989 #ifdef __cplusplus
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1990 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1991 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1992
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1993 /*#define USE_TEMP_FILES_FOR_JPEG_IMAGES 1*/
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1994 static void
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1995 jpeg_validate (Lisp_Object instantiator)
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
1996 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1997 file_or_data_must_be_present (instantiator);
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
1998 }
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
1999
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2000 static Lisp_Object
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2001 jpeg_normalize (Lisp_Object inst, Lisp_Object console_type)
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2002 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2003 return simple_image_type_normalize (inst, console_type, Qjpeg);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2004 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2005
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2006 static int
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2007 jpeg_possible_dest_types (void)
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2008 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2009 return IMAGE_COLOR_PIXMAP_MASK;
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2010 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2011
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2012 /* To survive the otherwise baffling complexity of making sure
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2013 everything gets cleaned up in the presence of an error, we
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2014 use an unwind_protect(). */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2015
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2016 struct jpeg_unwind_data
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2017 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2018 Display *dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2019 Colormap cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2020 /* Stream that we need to close */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2021 FILE *instream;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2022 /* Object that holds state info for JPEG decoding */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2023 struct jpeg_decompress_struct *cinfo_ptr;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2024 /* EImage data */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2025 unsigned char *eimage;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2026 /* Pixels to keep around while the image is active */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2027 unsigned long *pixels;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2028 int npixels, pixcount;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2029 /* Client-side image structure */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2030 XImage *ximage;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2031 /* Tempfile to remove */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2032 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2033 char tempfile[50];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2034 int tempfile_needs_to_be_removed;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2035 #endif
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2036 };
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2037
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2038 static Lisp_Object
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2039 jpeg_instantiate_unwind (Lisp_Object unwind_obj)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2040 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2041 struct jpeg_unwind_data *data =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2042 (struct jpeg_unwind_data *) get_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2043
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2044 free_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2045 if (data->cinfo_ptr)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2046 jpeg_destroy_decompress (data->cinfo_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2047
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2048 if (data->instream)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2049 fclose (data->instream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2050
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2051 if (data->eimage) xfree (data->eimage);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2052
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2053 if (data->npixels > 0)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2054 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2055 if (data->pixcount)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2056 xfree (data->pixels);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2057
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2058 if (data->ximage)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2059 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2060 if (data->ximage->data)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2061 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2062 xfree (data->ximage->data);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2063 data->ximage->data = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2064 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2065 XDestroyImage (data->ximage);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2066 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2067 #if USE_TEMP_FILES_FOR_JPEG_IMAGES
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2068 if (data->tempfile_needs_to_be_removed)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2069 unlink (data->tempfile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2070 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2071
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2072 return Qnil;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2073 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2074
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2075 /*
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2076 * ERROR HANDLING:
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2077 *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2078 * The JPEG library's standard error handler (jerror.c) is divided into
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2079 * several "methods" which you can override individually. This lets you
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2080 * adjust the behavior without duplicating a lot of code, which you might
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2081 * have to update with each future release.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2082 *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2083 * Our example here shows how to override the "error_exit" method so that
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2084 * control is returned to the library's caller when a fatal error occurs,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2085 * rather than calling exit() as the standard error_exit method does.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2086 *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2087 * We use C's setjmp/longjmp facility to return control. This means that the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2088 * routine which calls the JPEG library must first execute a setjmp() call to
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2089 * establish the return point. We want the replacement error_exit to do a
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2090 * longjmp(). But we need to make the setjmp buffer accessible to the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2091 * error_exit routine. To do this, we make a private extension of the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2092 * standard JPEG error handler object. (If we were using C++, we'd say we
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2093 * were making a subclass of the regular error handler.)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2094 *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2095 * Here's the extended error handler struct:
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2096 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2097
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2098 struct my_jpeg_error_mgr
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2099 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2100 struct jpeg_error_mgr pub; /* "public" fields */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2101 jmp_buf setjmp_buffer; /* for return to caller */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2102 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2103
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2104 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2105 METHODDEF(void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2106 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2107 METHODDEF void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2108 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2109 our_init_source (j_decompress_ptr cinfo)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2110 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2111 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2112
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2113 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2114 METHODDEF(boolean)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2115 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2116 METHODDEF boolean
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2117 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2118 our_fill_input_buffer (j_decompress_ptr cinfo)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2119 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2120 /* Insert a fake EOI marker */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2121 struct jpeg_source_mgr *src = cinfo->src;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2122 static JOCTET buffer[2];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2123
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2124 buffer[0] = (JOCTET) 0xFF;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2125 buffer[1] = (JOCTET) JPEG_EOI;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2126
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2127 src->next_input_byte = buffer;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2128 src->bytes_in_buffer = 2;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2129 return TRUE;
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2130 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2131
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2132 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2133 METHODDEF(void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2134 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2135 METHODDEF void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2136 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2137 our_skip_input_data (j_decompress_ptr cinfo, long num_bytes)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2138 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2139 struct jpeg_source_mgr *src = NULL;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2140
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2141 src = (struct jpeg_source_mgr *) cinfo->src;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2142
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2143 if (!src)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2144 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2145 return;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2146 } else if (num_bytes > src->bytes_in_buffer)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2147 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2148 ERREXIT(cinfo, JERR_INPUT_EOF);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2149 /*NOTREACHED*/
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2150 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2151
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2152 src->bytes_in_buffer -= num_bytes;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2153 src->next_input_byte += num_bytes;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2154 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2155
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2156 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2157 METHODDEF(void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2158 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2159 METHODDEF void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2160 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2161 our_term_source (j_decompress_ptr cinfo)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2162 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2163 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2164
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2165 typedef struct
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2166 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2167 struct jpeg_source_mgr pub;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2168 } our_jpeg_source_mgr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2169
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2170 static void
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2171 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, unsigned int len)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2172 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2173 struct jpeg_source_mgr *src;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2174
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2175 if (cinfo->src == NULL)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2176 { /* first time for this JPEG object? */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2177 cinfo->src = (struct jpeg_source_mgr *)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2178 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2179 sizeof(our_jpeg_source_mgr));
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2180 src = (struct jpeg_source_mgr *) cinfo->src;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2181 src->next_input_byte = data;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2182 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2183 src = (struct jpeg_source_mgr *) cinfo->src;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2184 src->init_source = our_init_source;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2185 src->fill_input_buffer = our_fill_input_buffer;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2186 src->skip_input_data = our_skip_input_data;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2187 src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2188 src->term_source = our_term_source;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2189 src->bytes_in_buffer = len;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2190 src->next_input_byte = data;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2191 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2192
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2193 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2194 METHODDEF(void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2195 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2196 METHODDEF void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2197 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2198 my_jpeg_error_exit (j_common_ptr cinfo)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2199 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2200 /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2201 struct my_jpeg_error_mgr *myerr = (struct my_jpeg_error_mgr *) cinfo->err;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2202
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2203 /* Return control to the setjmp point */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2204 longjmp (myerr->setjmp_buffer, 1);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2205 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2206
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2207 #if defined(JPEG_LIB_VERSION) && (JPEG_LIB_VERSION >= 61)
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2208 METHODDEF(void)
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2209 #else
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2210 METHODDEF void
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2211 #endif
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2212 my_jpeg_output_message (j_common_ptr cinfo)
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2213 {
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2214 char buffer[JMSG_LENGTH_MAX];
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2215
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2216 /* Create the message */
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2217 (*cinfo->err->format_message) (cinfo, buffer);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2218 warn_when_safe (Qjpeg, Qinfo, "%s", buffer);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2219 }
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2220
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2221 /* The code in this routine is based on example.c from the JPEG library
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2222 source code and from gif_instantiate() */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2223 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2224 jpeg_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2225 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2226 int dest_mask, Lisp_Object domain)
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2227 {
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2228 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2229 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2230 Display *dpy;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2231 Colormap cmap;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2232 Visual *vis;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2233 /* It is OK for the unwind data to be local to this function,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2234 because the unwind-protect is always executed when this
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2235 stack frame is still valid. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2236 struct jpeg_unwind_data unwind;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2237 int speccount = specpdl_depth ();
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2238
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2239 /* This struct contains the JPEG decompression parameters and pointers to
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2240 * working space (which is allocated as needed by the JPEG library).
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2241 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2242 struct jpeg_decompress_struct cinfo;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2243 /* We use our private extension JPEG error handler.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2244 * Note that this struct must live as long as the main JPEG parameter
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2245 * struct, to avoid dangling-pointer problems.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2246 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2247 struct my_jpeg_error_mgr jerr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2248
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2249 if (!DEVICE_X_P (XDEVICE (device)))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2250 signal_simple_error ("Not an X device", device);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2251
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2252 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2253 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2254 vis = DEVICE_X_VISUAL (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2255
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2256 /* Step -1: First record our unwind-protect, which will clean up after
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2257 any exit, normal or not */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2258
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2259 xzero (unwind);
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2260 unwind.dpy = dpy;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2261 unwind.cmap = cmap;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2262 record_unwind_protect (jpeg_instantiate_unwind, make_opaque_ptr (&unwind));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2263
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2264 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2265 /* Step 0: Write out to a temp file.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2266
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2267 The JPEG routines require you to read from a file unless
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2268 you provide your own special input handlers, which I don't
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2269 feel like doing. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2270 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2271 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2272
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2273 assert (!NILP (data));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2274
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2275 write_lisp_string_to_temp_file (data, unwind.tempfile);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2276 unwind.tempfile_needs_to_be_removed = 1;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2277
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2278 /* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2279 * requires it in order to read binary files.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2280 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2281
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2282 if ((unwind.instream = fopen (unwind.tempfile, "r")) == NULL)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2283 report_file_error ("Opening JPEG temp file",
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2284 list1 (build_string (unwind.tempfile)));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2285 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2286 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2287
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2288 /* Step 1: allocate and initialize JPEG decompression object */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2289
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2290 /* We set up the normal JPEG error routines, then override error_exit. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2291 cinfo.err = jpeg_std_error (&jerr.pub);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2292 jerr.pub.error_exit = my_jpeg_error_exit;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2293 jerr.pub.output_message = my_jpeg_output_message;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2294
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2295 /* Establish the setjmp return context for my_error_exit to use. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2296 if (setjmp (jerr.setjmp_buffer))
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
2297 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2298 /* If we get here, the JPEG code has signaled an error.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2299 * We need to clean up the JPEG object, close the input file, and return.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2300 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2301
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2302 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2303 Lisp_Object errstring;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2304 char buffer[JMSG_LENGTH_MAX];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2305
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2306 /* Create the message */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2307 (*cinfo.err->format_message) ((j_common_ptr) &cinfo, buffer);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2308 errstring = build_string (buffer);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2309
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2310 signal_image_error_2 ("JPEG decoding error",
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2311 errstring, instantiator);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2312 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2313 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2314
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2315 /* Now we can initialize the JPEG decompression object. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2316 jpeg_create_decompress (&cinfo);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2317 unwind.cinfo_ptr = &cinfo;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2318
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2319 /* Step 2: specify data source (eg, a file) */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2320
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2321 #ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2322 jpeg_stdio_src (&cinfo, unwind.instream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2323 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2324 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2325 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
2326 CONST Extbyte *bytes;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2327 Extcount len;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2328
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2329 /* #### This is a definite problem under Mule due to the amount of
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2330 stack data it might allocate. Need to be able to convert and
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2331 write out to a file. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2332 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2333 jpeg_memory_src (&cinfo, (JOCTET *) bytes, len);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2334 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2335 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2336
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2337 /* Step 3: read file parameters with jpeg_read_header() */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2338
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2339 jpeg_read_header (&cinfo, TRUE);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2340 /* We can ignore the return value from jpeg_read_header since
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2341 * (a) suspension is not possible with the stdio data source, and
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2342 * (b) we passed TRUE to reject a tables-only JPEG file as an error.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2343 * See libjpeg.doc for more info.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2344 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2345
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2346 #if 0
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2347 /* Step 4: set parameters for decompression. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2348
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2349 if (vis->class == PseudoColor)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2350 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2351
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2352 /* We request that the JPEG file be automatically quantized into
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2353 8-bit color in case it's not already (many JPEGs are stored in
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2354 24-bit color). "Two-pass quantize" means that the colormap
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2355 is determined on-the-fly for this particular image rather than
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2356 quantizing to a supplied colormap. We can get away with this
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2357 because we then use allocate_nearest_color().
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2358
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2359 #### Note of course that this is not the most color-effective
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2360 way of doing things -- we could quantize an image that has
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2361 lots of very similar colors, and eat up the colormap with these
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2362 (useless to other images) colors. Unfortunately I don't think
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2363 there's any "general" way of maximizing the overall image
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2364 quality of lots of images, given that we don't know the
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2365 colors of the images until we come across each one. Best we
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2366 could do would be various sorts of heuristics, which I don't
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2367 feel like dealing with now. A better scheme would be the
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2368 way things are done under MS Windows, where the colormap is
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2369 dynamically adjusted for various applications; but that kind
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2370 of thing would have to be provided by X, which it isn't. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2371
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2372 cinfo.quantize_colors = TRUE;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2373 cinfo.two_pass_quantize = TRUE;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2374 cinfo.colormap = NULL;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2375 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2376
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2377 /* Step 5: Start decompressor */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2378
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2379 jpeg_start_decompress (&cinfo);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2380 /* We can ignore the return value since suspension is not possible
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2381 * with the stdio data source.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2382 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2383
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2384 /* At this point we know the size of the image and the colormap. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2385
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2386 /* Step 5.33: Allocate the colors */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2387 if (vis->class == PseudoColor)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2388 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2389 int i;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2390 unwind.pixcount = 32;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2391 unwind.pixels = xnew_array (unsigned long, unwind.pixcount);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2392 unwind.npixels = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2393
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2394 /* Allocate pixels for the various colors. */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2395 for (i = 0; i < cinfo.actual_number_of_colors; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2396 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2397 XColor color;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2398 int ri, gi, bi, res;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2399
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2400 ri = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2401 gi = cinfo.out_color_components > 1 ? 1 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2402 bi = cinfo.out_color_components > 2 ? 2 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2403
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2404 /* Ok... apparently, an entry of cinfo.colormap can be NULL if
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2405 there are no bits of that color in the image. How incredibly
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2406 gross. Wouldn't it be nice to have exceptions!? */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2407 color.red = cinfo.colormap[ri] ? cinfo.colormap[ri][i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2408 color.green = cinfo.colormap[gi] ? cinfo.colormap[gi][i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2409 color.blue = cinfo.colormap[bi] ? cinfo.colormap[bi][i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2410 color.flags = DoRed | DoGreen | DoBlue;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2411
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2412 res = allocate_nearest_color (dpy, cmap, vis, &color);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2413 if (res > 0 && res < 3)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2414 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2415 DO_REALLOC(unwind.pixels, unwind.pixcount, unwind.npixels+1, unsigned long);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2416 unwind.pixels[unwind.npixels] = color.pixel;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2417 unwind.npixels++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2418 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2419 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2420 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2421
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2422 /* Step 5.66: Create the image */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2423 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2424 int height = cinfo.output_height;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2425 int width = cinfo.output_width;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2426 int depth;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2427 int bitmap_pad;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2428
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2429 depth = DEVICE_X_DEPTH(XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2430
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2431 /* first get bitmap_pad (from XPM) */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2432 bitmap_pad = ((depth > 16) ? 32 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2433 (depth > 8) ? 16 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2434 8);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2435
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2436 unwind.ximage = XCreateImage (dpy, vis, depth, ZPixmap, 0, 0, width, height,
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2437 bitmap_pad, 0);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2438
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2439 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2440 signal_image_error ("Unable to create X image struct", instantiator);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2441
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2442 /* now that bytes_per_line must have been set properly alloc data */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2443 unwind.ximage->data =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2444 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2445 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2446
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2447 /* Step 6: Read in the data and put into image */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2448 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2449 JSAMPARRAY row_buffer; /* Output row buffer */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2450 int row_stride; /* physical row width in output buffer */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2451
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2452 /* We may need to do some setup of our own at this point before reading
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2453 * the data. After jpeg_start_decompress() we have the correct scaled
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2454 * output image dimensions available, as well as the output colormap
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2455 * if we asked for color quantization.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2456 * In this example, we need to make an output work buffer of the right size.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2457 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2458 /* JSAMPLEs per row in output buffer.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2459 Since we asked for quantized output, cinfo.output_components
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2460 will always be 1. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2461 row_stride = cinfo.output_width * cinfo.output_components;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2462 /* Make a one-row-high sample array that will go away when done
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2463 with image */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2464 row_buffer = ((*cinfo.mem->alloc_sarray)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2465 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2466
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2467 /* Here we use the library's state variable cinfo.output_scanline as the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2468 * loop counter, so that we don't have to keep track ourselves.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2469 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2470 while (cinfo.output_scanline < cinfo.output_height)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2471 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2472 int i;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2473 int scanline = cinfo.output_scanline;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2474
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2475 /* jpeg_read_scanlines expects an array of pointers to scanlines.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2476 * Here the array is only one element long, but you could ask for
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2477 * more than one scanline at a time if that's more convenient.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2478 */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2479 jpeg_read_scanlines (&cinfo, row_buffer, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2480
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2481 for (i = 0; i < (int) cinfo.output_width; i++)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2482 XPutPixel (unwind.ximage, i, scanline,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2483 /* Let's make sure we avoid getting bit like
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2484 what happened for GIF's. It's probably the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2485 case that JSAMPLE's are unsigned chars as
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2486 opposed to chars, but you never know.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2487
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2488 (They could even be shorts if the library
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2489 was compiled with 12-bit samples -- ####
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2490 We should deal with this possibility) */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2491 unwind.pixels[(unsigned char) row_buffer[0][i]]);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2492 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2493 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2494 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2495 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2496 /* Step 4: set parameters for decompression. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2497
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2498 /* Now that we're using EImages, use the default of all data in 24bit color.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2499 The backend routine will take care of any necessary reductions. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2500
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2501 /* Step 5: Start decompressor */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2502 jpeg_start_decompress (&cinfo);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2503
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2504 /* Step 6: Read in the data and put into EImage format (8bit RGB triples)*/
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2505
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2506 unwind.eimage = (unsigned char*) xmalloc (cinfo.output_width * cinfo.output_height * 3);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2507 if (!unwind.eimage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2508 signal_image_error("Unable to allocate enough memory for image", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2509
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2510 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2511 JSAMPARRAY row_buffer; /* Output row buffer */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2512 JSAMPLE *jp;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2513 int row_stride; /* physical row width in output buffer */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2514 unsigned char *op = unwind.eimage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2515
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2516 /* We may need to do some setup of our own at this point before reading
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2517 * the data. After jpeg_start_decompress() we have the correct scaled
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2518 * output image dimensions available
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2519 * We need to make an output work buffer of the right size.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2520 */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2521 /* JSAMPLEs per row in output buffer. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2522 row_stride = cinfo.output_width * cinfo.output_components;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2523 /* Make a one-row-high sample array that will go away when done
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2524 with image */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2525 row_buffer = ((*cinfo.mem->alloc_sarray)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2526 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2527
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2528 /* Here we use the library's state variable cinfo.output_scanline as the
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2529 * loop counter, so that we don't have to keep track ourselves.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2530 */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2531 while (cinfo.output_scanline < cinfo.output_height)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2532 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2533 int i;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2534
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2535 /* jpeg_read_scanlines expects an array of pointers to scanlines.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2536 * Here the array is only one element long, but you could ask for
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2537 * more than one scanline at a time if that's more convenient.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2538 */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2539 (void) jpeg_read_scanlines (&cinfo, row_buffer, 1);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2540 jp = row_buffer[0];
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2541 for (i = 0; i < cinfo.output_width; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2542 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2543 int clr;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2544 #if (BITS_IN_JSAMPLE == 8)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2545 for (clr = 0; clr < 3; clr++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2546 *op++ = (unsigned char)*jp++;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2547 #else /* other option is 12 */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2548 for (clr = 0; clr < 3; clr++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2549 *op++ = (unsigned char)(*jp++ >> 4);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2550 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2551 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2552 }
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2553 unwind.ximage = convert_EImage_to_XImage (device, cinfo.output_width, cinfo.output_height, unwind.eimage,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2554 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2555 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2556 signal_image_error("JPEG conversion failed", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2557 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2558 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2559
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2560 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2561 /* Step 6.5: Create the pixmap and set up the image instance */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2562 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2563 cmap, unwind.pixels, unwind.npixels,
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2564 instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2565
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2566 /* Step 7: Finish decompression */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2567
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2568 jpeg_finish_decompress (&cinfo);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2569 /* We can ignore the return value since suspension is not possible
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2570 * with the stdio data source.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2571 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2572
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2573 /* And we're done!
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2574
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2575 Now that we've succeeded, we don't want the pixels
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2576 freed right now. They're kept around in the image instance
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2577 structure until it's destroyed. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2578 unwind.npixels = 0;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2579 unwind.pixcount = 0;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2580
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2581 /* This will clean up everything else. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2582 unbind_to (speccount, Qnil);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2583 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2584
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2585 #endif /* HAVE_JPEG */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2586
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2587 #ifdef HAVE_GIF
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2588 /* #define USE_TEMP_FILES_FOR_GIF_IMAGES */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2589 /**********************************************************************
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2590 * GIF *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2591 **********************************************************************/
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2592
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2593 #include <gif_lib.h>
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2594
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2595 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2596 gif_validate (Lisp_Object instantiator)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2597 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2598 file_or_data_must_be_present (instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2599 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2600
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2601 static Lisp_Object
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2602 gif_normalize (Lisp_Object inst, Lisp_Object console_type)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2603 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2604 return simple_image_type_normalize (inst, console_type, Qgif);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2605 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2606
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2607 static int
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2608 gif_possible_dest_types (void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2609 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2610 return IMAGE_COLOR_PIXMAP_MASK;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2611 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2612
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2613 /* To survive the otherwise baffling complexity of making sure
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2614 everything gets cleaned up in the presence of an error, we
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2615 use an unwind_protect(). */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2616
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2617 struct gif_unwind_data
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2618 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2619 Display *dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2620 Colormap cmap;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2621 unsigned char *eimage;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2622 /* Object that holds the decoded data from a GIF file */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2623 GifFileType *giffile;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2624 /* Pixels to keep around while the image is active */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2625 unsigned long *pixels;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2626 int npixels, pixcount;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2627 /* Client-side image structure */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2628 XImage *ximage;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2629 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2630 /* Tempfile to remove */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2631 char tempfile[50];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2632 int tempfile_needs_to_be_removed;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2633 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2634 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2635
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2636 static Lisp_Object
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2637 gif_instantiate_unwind (Lisp_Object unwind_obj)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2638 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2639 struct gif_unwind_data *data =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2640 (struct gif_unwind_data *) get_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2641
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2642 free_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2643 if (data->giffile)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2644 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2645 DGifCloseFile (data->giffile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2646 GifFree(data->giffile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2647 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2648 if (data->eimage) xfree(data->eimage);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2649 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2650 if (data->tempfile_needs_to_be_removed)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2651 unlink (data->tempfile);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2652 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2653 if (data->npixels > 0)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2654 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2655 if (data->pixcount > 0)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2656 xfree (data->pixels);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2657 if (data->ximage)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2658 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2659 if (data->ximage->data)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2660 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2661 xfree (data->ximage->data);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2662 data->ximage->data = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2663 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2664 XDestroyImage (data->ximage);
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
2665 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2666
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2667 return Qnil;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2668 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2669
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2670 #ifndef USE_TEMP_FILES_FOR_GIF_IMAGES
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2671 typedef struct gif_memory_storage
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2672 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2673 Extbyte *bytes; /* The data */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2674 Extcount len; /* How big is it? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2675 int index; /* Where are we? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2676 } gif_memory_storage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2677
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2678 static size_t
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2679 gif_read_from_memory(GifByteType *buf, size_t size, VoidPtr data)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2680 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2681 gif_memory_storage *mem = (gif_memory_storage*)data;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2682
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2683 if (size > (mem->len - mem->index))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2684 return -1;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2685 memcpy(buf, mem->bytes + mem->index, size);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2686 mem->index = mem->index + size;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2687 return size;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2688 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2689
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2690 static int
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2691 gif_memory_close(VoidPtr data)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2692 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2693 return 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2694 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2695
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2696 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2697 struct gif_error_struct
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2698 {
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
2699 CONST char *err_str; /* return the error string */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2700 jmp_buf setjmp_buffer; /* for return to caller */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2701 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2702
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2703 static void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2704 gif_error_func(CONST char *err_str, VoidPtr error_ptr)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2705 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2706 struct gif_error_struct *error_data = (struct gif_error_struct*)error_ptr;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2707
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2708 /* return to setjmp point */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2709 error_data->err_str = err_str;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2710 longjmp (error_data->setjmp_buffer, 1);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2711 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2712
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2713 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2714 gif_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2715 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2716 int dest_mask, Lisp_Object domain)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2717 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2718 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2719 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2720 Display *dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2721 Colormap cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2722 Visual *vis;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2723 /* It is OK for the unwind data to be local to this function,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2724 because the unwind-protect is always executed when this
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2725 stack frame is still valid. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2726 struct gif_unwind_data unwind;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2727 int speccount = specpdl_depth ();
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2728 #ifndef USE_TEMP_FILES_FOR_GIF_IMAGES
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2729 gif_memory_storage mem_struct;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2730 struct gif_error_struct gif_err;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2731 Extbyte *bytes;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2732 Extcount len;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2733 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2734 if (!DEVICE_X_P (XDEVICE (device)))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2735 signal_simple_error ("Not an X device", device);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2736
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2737 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2738 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2739 vis = DEVICE_X_VISUAL (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2740
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2741 xzero (unwind);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2742 unwind.dpy = dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2743 unwind.cmap = cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2744 record_unwind_protect (gif_instantiate_unwind, make_opaque_ptr (&unwind));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2745
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2746 /* 1. Now decode the data. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2747
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2748 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2749 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2750
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2751 assert (!NILP (data));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2752
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2753 if (!(unwind.giffile = GifSetup()))
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2754 signal_image_error ("Insufficent memory to instantiate GIF image", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2755
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2756 /* set up error facilities */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2757 if (setjmp(gif_err.setjmp_buffer))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2758 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2759 /* An error was signaled. No clean up is needed, as unwind handles that
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2760 for us. Just pass the error along. */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2761 Lisp_Object errstring;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2762 errstring = build_string (gif_err.err_str);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2763 signal_image_error_2 ("GIF decoding error", errstring, instantiator);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2764 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2765 GifSetErrorFunc(unwind.giffile, (Gif_error_func)gif_error_func, (VoidPtr)&gif_err);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2766
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2767 #ifdef USE_TEMP_FILES_FOR_GIF_IMAGES
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2768 write_lisp_string_to_temp_file (data, unwind.tempfile);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2769 unwind.tempfile_needs_to_be_removed = 1;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2770 DGifOpenFileName (unwind.giffile, unwind.tempfile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2771 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2772 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2773 mem_struct.bytes = bytes;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2774 mem_struct.len = len;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2775 mem_struct.index = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2776 GifSetReadFunc(unwind.giffile, gif_read_from_memory, (VoidPtr)&mem_struct);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2777 GifSetCloseFunc(unwind.giffile, gif_memory_close, (VoidPtr)&mem_struct);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2778 DGifInitRead(unwind.giffile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2779 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2780 /* Then slurp the image into memory, decoding along the way.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2781 The result is the image in a simple one-byte-per-pixel
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2782 format (#### the GIF routines only support 8-bit GIFs,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2783 it appears). */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2784 DGifSlurp (unwind.giffile);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2785 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2786
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2787 #if 0
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2788 /* 2. Now allocate the colors for the image. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2789 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2790 int i;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2791 ColorMapObject *cmo = unwind.giffile->SColorMap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2792 /* Just in case the image contains out-of-range pixels, we go
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2793 ahead and allocate space for all of them. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2794 unwind.pixels = xnew_array (unsigned long, 256);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2795 unwind.npixels = 0;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2796
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2797 for (i = 0; i < 256; i++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2798 unwind.pixels[i] = 0; /* Use a reasonable color for out of range. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2799
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2800 /* Allocate pixels for the various colors. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2801 for (i = 0; i < cmo->ColorCount; i++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2802 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2803 int res;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2804 XColor color;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2805
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2806 color.red = cmo->Colors[i].Red << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2807 color.green = cmo->Colors[i].Green << 8;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2808 color.blue = cmo->Colors[i].Blue << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2809 color.flags = DoRed | DoGreen | DoBlue;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2810
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2811 res = allocate_nearest_color (dpy, cmap, vis, &color);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2812 if (res > 0 && res < 3)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2813 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2814 unwind.pixels[unwind.npixels] = color.pixel;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2815 unwind.npixels++;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2816 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2817 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2818 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2819
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2820 /* 3. Now create the image */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2821 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2822 int height = unwind.giffile->SHeight;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2823 int width = unwind.giffile->SWidth;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2824 int depth;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2825 int bitmap_pad;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2826 int i, j, row, pass, interlace;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2827 /* interlaced gifs have rows in this order:
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2828 0, 8, 16, ..., 4, 12, 20, ..., 2, 6, 10, ..., 1, 3, 5, ... */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2829 static int InterlacedOffset[] = { 0, 4, 2, 1 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2830 static int InterlacedJumps[] = { 8, 8, 4, 2 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2831
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2832 depth = DEVICE_X_DEPTH(XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2833
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2834 /* first get bitmap_pad (from XPM) */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2835 bitmap_pad = ((depth > 16) ? 32 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2836 (depth > 8) ? 16 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2837 8);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2838
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2839 unwind.ximage = XCreateImage (dpy, vis,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2840 depth, ZPixmap, 0, 0, width, height,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2841 bitmap_pad, 0);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2842
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2843 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2844 signal_image_error ("Unable to create X image struct", instantiator);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2845
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2846 /* now that bytes_per_line must have been set properly alloc data */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2847 unwind.ximage->data =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2848 (char *) xmalloc (unwind.ximage->bytes_per_line * height);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2849
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2850 /* write the data --
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2851 #### XPutPixel() is a client-side-only function but could
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2852 still be slow. Another possibility is to just convert to
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2853 XPM format and use the Xpm routines, which optimize this
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2854 stuff; but it's doubtful that this will be faster in the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2855 long run, what with all the XPM overhead. If this proves
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2856 to be a bottleneck here, maybe we should just copy the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2857 optimization routines from XPM (they're in turn mostly
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2858 copied from the Xlib source code). */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2859
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2860 /* Note: We just use the first image in the file and ignore the rest.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2861 We check here that that image covers the full "screen" size.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2862 I don't know whether that's always the case.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2863 -dkindred@cs.cmu.edu */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2864 if (unwind.giffile->SavedImages[0].ImageDesc.Height != height
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2865 || unwind.giffile->SavedImages[0].ImageDesc.Width != width
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2866 || unwind.giffile->SavedImages[0].ImageDesc.Left != 0
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2867 || unwind.giffile->SavedImages[0].ImageDesc.Top != 0)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2868 signal_image_error ("First image in GIF file is not full size",
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2869 instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2870
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2871 interlace = unwind.giffile->SavedImages[0].ImageDesc.Interlace;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2872 pass = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2873 row = interlace ? InterlacedOffset[pass] : 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2874 for (i = 0; i < height; i++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2875 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2876 if (interlace && row >= height)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2877 row = InterlacedOffset[++pass];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2878
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2879 for (j = 0; j < width; j++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2880 XPutPixel (unwind.ximage, j, row,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2881 unwind.pixels[(unsigned char)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2882 /* incorrect signed declaration
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2883 of RasterBits[] */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2884 (unwind.giffile->SavedImages[0].
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2885 RasterBits[i * width + j])]);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2886
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2887 row += interlace ? InterlacedJumps[pass] : 1;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2888 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2889 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2890 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2891 /* 3. Now create the EImage */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2892 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2893 ColorMapObject *cmo = unwind.giffile->SColorMap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2894 int height = unwind.giffile->SHeight;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2895 int width = unwind.giffile->SWidth;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2896 int i, j, row, pass, interlace;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2897 unsigned char *eip;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2898 /* interlaced gifs have rows in this order:
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2899 0, 8, 16, ..., 4, 12, 20, ..., 2, 6, 10, ..., 1, 3, 5, ... */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2900 static int InterlacedOffset[] = { 0, 4, 2, 1 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2901 static int InterlacedJumps[] = { 8, 8, 4, 2 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2902
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2903 unwind.eimage = (unsigned char*) xmalloc (width * height * 3);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2904 if (!unwind.eimage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2905 signal_image_error("Unable to allocate enough memory for image", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2906
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2907 /* write the data in EImage format (8bit RGB triples) */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2908
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2909 /* Note: We just use the first image in the file and ignore the rest.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2910 We check here that that image covers the full "screen" size.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2911 I don't know whether that's always the case.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2912 -dkindred@cs.cmu.edu */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2913 if (unwind.giffile->SavedImages[0].ImageDesc.Height != height
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2914 || unwind.giffile->SavedImages[0].ImageDesc.Width != width
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2915 || unwind.giffile->SavedImages[0].ImageDesc.Left != 0
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2916 || unwind.giffile->SavedImages[0].ImageDesc.Top != 0)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2917 signal_image_error ("First image in GIF file is not full size",
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2918 instantiator);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2919
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2920 interlace = unwind.giffile->SavedImages[0].ImageDesc.Interlace;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2921 pass = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2922 row = interlace ? InterlacedOffset[pass] : 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2923 eip = unwind.eimage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2924 for (i = 0; i < height; i++)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2925 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2926 if (interlace && row >= height)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2927 row = InterlacedOffset[++pass];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2928 eip = unwind.eimage + (row * width * 3);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2929 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2930 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2931 unsigned char pixel = unwind.giffile->SavedImages[0].RasterBits[(i * width) + j];
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2932 *eip++ = cmo->Colors[pixel].Red;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2933 *eip++ = cmo->Colors[pixel].Green;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2934 *eip++ = cmo->Colors[pixel].Blue;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2935 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2936 row += interlace ? InterlacedJumps[pass] : 1;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2937 }
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2938 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2939 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2940 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2941 signal_image_error("GIF conversion failed", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2942 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2943 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2944 /* 4. Now create the pixmap and set up the image instance */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2945 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2946 cmap, unwind.pixels, unwind.npixels,
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2947 instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2948 /* Now that we've succeeded, we don't want the pixels
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2949 freed right now. They're kept around in the image instance
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2950 structure until it's destroyed. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2951 unwind.npixels = 0;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2952 unwind.pixcount = 0;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2953 unbind_to (speccount, Qnil);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2954 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2955
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2956 #endif /* HAVE_GIF */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2957
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2958
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2959 #ifdef HAVE_PNG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2960 /* #define USE_TEMP_FILES_FOR_PNG_IMAGES 1 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2961
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2962 /**********************************************************************
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2963 * PNG *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2964 **********************************************************************/
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2965 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2966 png_validate (Lisp_Object instantiator)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2967 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2968 file_or_data_must_be_present (instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2969 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2970
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2971 static Lisp_Object
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2972 png_normalize (Lisp_Object inst, Lisp_Object console_type)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2973 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2974 return simple_image_type_normalize (inst, console_type, Qpng);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2975 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2976
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2977 static int
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2978 png_possible_dest_types (void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2979 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2980 return IMAGE_COLOR_PIXMAP_MASK;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2981 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2982
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
2983 #ifndef USE_TEMP_FILES_FOR_PNG_IMAGES
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2984 struct png_memory_storage
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2985 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2986 CONST Extbyte *bytes; /* The data */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2987 Extcount len; /* How big is it? */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2988 int index; /* Where are we? */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2989 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2990
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2991 static void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2992 png_read_from_memory(png_structp png_ptr, png_bytep data,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2993 png_size_t length)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2994 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2995 struct png_memory_storage *tbr =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2996 (struct png_memory_storage *) png_get_io_ptr (png_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2997
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2998 if (length > (tbr->len - tbr->index))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
2999 png_error (png_ptr, (png_const_charp) "Read Error");
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3000 memcpy (data,tbr->bytes + tbr->index,length);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3001 tbr->index = tbr->index + length;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3002 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3003 #endif /* !USE_TEMP_FILES_FOR_PNG_IMAGES */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3004
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3005 struct png_error_struct
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3006 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3007 CONST char *err_str;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3008 jmp_buf setjmp_buffer; /* for return to caller */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3009 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3010
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3011 /* jh 98/03/12 - #### AARRRGH! libpng includes jmp_buf inside its own
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3012 structure, and there are cases where the size can be different from
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3013 between inside the libarary, and inside the code! To do an end run
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3014 around this, use our own error functions, and don't rely on things
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3015 passed in the png_ptr to them. This is an ugly hack and must
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3016 go away when the lisp engine is threaded! */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3017 static struct png_error_struct png_err_stct;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3018
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3019 static void
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3020 png_error_func (png_structp png_ptr, png_const_charp msg)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3021 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3022 png_err_stct.err_str = msg;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3023 longjmp (png_err_stct.setjmp_buffer, 1);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3024 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3025
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3026 static void
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3027 png_warning_func (png_structp png_ptr, png_const_charp msg)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3028 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3029 warn_when_safe (Qpng, Qinfo, "%s", msg);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3030 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3031
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3032 struct png_unwind_data
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3033 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3034 Display *dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3035 Colormap cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3036 FILE *instream;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3037 unsigned char *eimage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3038 png_structp png_ptr;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3039 png_infop info_ptr;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3040 unsigned long *pixels;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3041 int npixels, pixcount;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3042 XImage *ximage;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3043 #ifdef USE_TEMP_FILES_FOR_PNG_IMAGESS
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3044 char tempfile[50];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3045 int tempfile_needs_to_be_removed;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3046 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3047 };
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3048
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3049 static Lisp_Object
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3050 png_instantiate_unwind (Lisp_Object unwind_obj)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3051 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3052 struct png_unwind_data *data =
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3053 (struct png_unwind_data *) get_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3054
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3055 free_opaque_ptr (unwind_obj);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3056 if (data->png_ptr)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3057 png_destroy_read_struct (&(data->png_ptr), &(data->info_ptr), (png_infopp)NULL);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3058 if (data->instream)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3059 fclose (data->instream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3060 if (data->npixels > 0)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3061 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3062 if (data->pixcount > 0)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3063 xfree (data->pixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3064
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3065 if (data->eimage)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3066 xfree (data->eimage);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3067 if (data->ximage)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3068 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3069 if (data->ximage->data)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3070 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3071 xfree (data->ximage->data);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3072 data->ximage->data = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3073 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3074 XDestroyImage (data->ximage);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3075 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3076 #ifdef USE_TEMP_FILES_FOR_PNG_IMAGES
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3077 if (data->tempfile_needs_to_be_removed)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3078 unlink (data->tempfile);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3079 #endif
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3080 return Qnil;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3081 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3082
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3083 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3084 png_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3085 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3086 int dest_mask, Lisp_Object domain)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3087 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3088 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3089 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3090 Display *dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3091 Colormap cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3092 Visual *vis;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3093 struct png_unwind_data unwind;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3094 int speccount = specpdl_depth ();
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3095
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3096 /* PNG variables */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3097 png_structp png_ptr;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3098 png_infop info_ptr;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3099
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3100 if (!DEVICE_X_P (XDEVICE (device)))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3101 signal_simple_error ("Not an X device", device);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3102
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3103 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3104 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3105 vis = DEVICE_X_VISUAL (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3106
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3107 /* Initialize all PNG structures */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3108 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, (void*)&png_err_stct,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3109 png_error_func, png_warning_func);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3110 if (!png_ptr)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3111 signal_image_error ("Error obtaining memory for png_read", instantiator);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3112 info_ptr = png_create_info_struct (png_ptr);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3113 if (!info_ptr)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3114 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3115 png_destroy_read_struct (&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3116 signal_image_error ("Error obtaining memory for png_read", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3117 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3118
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3119 xzero (unwind);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3120 unwind.png_ptr = png_ptr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3121 unwind.info_ptr = info_ptr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3122 unwind.dpy = dpy;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3123 unwind.cmap = cmap;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3124
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3125 record_unwind_protect (png_instantiate_unwind, make_opaque_ptr (&unwind));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3126
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3127 /* This code is a mixture of stuff from Ben's GIF/JPEG stuff from
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3128 this file, example.c from the libpng 0.81 distribution, and the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3129 pngtopnm sources. -WMP-
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3130 */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3131 /* It has been further modified to handle the API changes for 0.96,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3132 and is no longer usable for previous versions. jh
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3133 */
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3134
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3135 /* Set the jmp_buf reurn context for png_error ... if this returns !0, then
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3136 we ran into a problem somewhere, and need to clean up after ourselves. */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3137 if (setjmp (png_err_stct.setjmp_buffer))
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3138 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3139 /* Something blew up: just display the error (cleanup happens in the unwind) */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3140 signal_image_error_2 ("Error decoding PNG",
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3141 build_string(png_err_stct.err_str),
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3142 instantiator);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3143 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3144
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3145 /* Initialize the IO layer and read in header information */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3146 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3147 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3148 CONST Extbyte *bytes;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3149 Extcount len;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3150 struct png_memory_storage tbr; /* Data to be read */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3151
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3152 assert (!NILP (data));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3153
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3154 /* #### This is a definite problem under Mule due to the amount of
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3155 stack data it might allocate. Need to think about using Lstreams */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3156 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3157 tbr.bytes = bytes;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3158 tbr.len = len;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3159 tbr.index = 0;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3160 png_set_read_fn (png_ptr,(void *) &tbr, png_read_from_memory);
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3161 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3162
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3163 png_read_info (png_ptr, info_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3164
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3165 #if 0
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3166 /* set up the transformations you want. Note that these are
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3167 all optional. Only call them if you want them */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3168 /* tell libpng to strip 16 bit depth files down to 8 bits */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3169 if (info_ptr->bit_depth == 16)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3170 png_set_strip_16 (png_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3171 if (info_ptr->bit_depth < 8)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3172 png_set_packing (png_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3173 /* ##### Perhaps some way to specify the screen gamma should be in here? */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3174
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3175 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3176 int height = info_ptr->height;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3177 int width = info_ptr->width;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3178 int depth = info_ptr->bit_depth;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3179 int linesize = max (info_ptr->bit_depth >> 3, 1) * width;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3180 int bitmap_pad;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3181 int y;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3182 XColor color;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3183 png_byte *png_pixels;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3184 png_byte **row_pointers;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3185 png_color static_color_cube[216];
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3186
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3187 /* Wow, allocate all the memory. Truly, exciting. */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3188 unwind.pixcount = 32;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3189 unwind.pixels = xnew_array (unsigned long, unwind.pixcount);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3190 png_pixels = xnew_array (png_byte, linesize * height);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3191 row_pointers = xnew_array (png_byte *, height);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3192
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3193 for (y = 0; y < height; y++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3194 row_pointers[y] = png_pixels + (linesize * y);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3195
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3196 /* #### This is where we should handle transparency, but I am unsure of
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3197 how exactly to get that information right now, in a safe manner. */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3198 #if 0
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3199 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3200 png_color_16 current_background;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3201
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3202 /* Some appropriate magic should go here to get the current
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3203 buffers (device?) background color and convert it to a
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3204 png_color_16 struct */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3205 if (info_ptr->valid & PNG_INFO_bKGD)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3206 png_set_background (png_ptr, &(info_ptr->background), PNG_GAMMA_FILE,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3207 1, 1.0);
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3208 else
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3209 png_set_background (png_ptr, &current_background, PNG_GAMMA_SCREEN,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3210 0, 1.0);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3211 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3212 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3213
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3214 if (((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3215 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)) &&
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3216 (vis->class == PseudoColor))
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3217 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3218 if (!(info_ptr->valid & PNG_INFO_PLTE))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3219 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3220 for (y = 0; y < 216; y++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3221 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3222 static_color_cube[y].red = (png_byte) ((y % 6) * 255.0 / 5);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3223 static_color_cube[y].green = (png_byte) (((y / 6) % 6) * 255.0 / 5);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3224 static_color_cube[y].blue = (png_byte) ((y / 36) * 255.0 / 5);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3225 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3226 png_set_dither (png_ptr, static_color_cube, 216, 216, NULL, 1);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3227 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3228 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3229 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3230 png_set_dither (png_ptr, info_ptr->palette, info_ptr->num_palette,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3231 info_ptr->num_palette, info_ptr->hist, 1);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3232 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3233 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3234
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3235 png_read_image (png_ptr, row_pointers);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3236 png_read_end (png_ptr, info_ptr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3237
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3238 /* Ok, now we go and allocate all the colors */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3239 if (info_ptr->valid & PNG_INFO_PLTE)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3240 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3241 unwind.npixels = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3242 for (y = 0; y < info_ptr->num_palette; y++)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3243 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3244 int res;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3245 color.red = info_ptr->palette[y].red << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3246 color.green = info_ptr->palette[y].green << 8;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3247 color.blue = info_ptr->palette[y].blue << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3248 color.flags = DoRed | DoGreen | DoBlue;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3249 res = allocate_nearest_color (dpy, cmap, vis, &color);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3250 if (res > 0 && res < 3)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3251 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3252 DO_REALLOC(unwind.pixels, unwind.pixcount, unwind.npixels+1, unsigned long);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3253 unwind.pixels[unwind.npixels] = color.pixel;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3254 unwind.npixels++;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3255 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3256 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3257 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3258 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3259 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3260 unwind.npixels = 0;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3261 for (y = 0; y < 216; y++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3262 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3263 int res;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3264 color.red = static_color_cube[y].red << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3265 color.green = static_color_cube[y].green << 8;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3266 color.blue = static_color_cube[y].blue << 8;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3267 color.flags = DoRed|DoGreen|DoBlue;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3268 res = allocate_nearest_color (dpy, cmap, vis, &color);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3269 if (res > 0 && res < 3)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3270 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3271 unwind.pixels[unwind.npixels] = color.pixel;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3272 unwind.npixels++;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3273 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3274 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3275 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3276
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3277 #ifdef PNG_SHOW_COMMENTS
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3278 /* ####
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3279 * I turn this off by default now, because the !%^@#!% comments
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3280 * show up every time the image is instantiated, which can get
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3281 * really really annoying. There should be some way to pass this
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3282 * type of data down into the glyph code, where you can get to it
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3283 * from lisp anyway. - WMP
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3284 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3285 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3286 int i;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3287
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3288 for (i = 0 ; i < info_ptr->num_text ; i++)
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 209
diff changeset
3289 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3290 /* How paranoid do I have to be about no trailing NULLs, and
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3291 using (int)info_ptr->text[i].text_length, and strncpy and a temp
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3292 string somewhere? */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3293
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3294 warn_when_safe (Qpng, Qinfo, "%s - %s",
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3295 info_ptr->text[i].key,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3296 info_ptr->text[i].text);
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3297 }
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3298 }
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3299 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3300
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3301 /* Now create the image */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3302
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3303 depth = DEVICE_X_DEPTH(XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3304
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3305 /* first get bitmap_pad (from XPM) */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3306 bitmap_pad = ((depth > 16) ? 32 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3307 (depth > 8) ? 16 :
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3308 8);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3309
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3310 unwind.ximage = XCreateImage (dpy, vis,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3311 depth, ZPixmap, 0, 0, width, height,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3312 bitmap_pad, 0);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3313
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3314 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3315 signal_image_error ("Unable to create X image struct",
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3316 instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3317
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3318 /* now that bytes_per_line must have been set properly alloc data */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3319 unwind.ximage->data = (char *) xmalloc (unwind.ximage->bytes_per_line *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3320 height);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3321
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3322 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3323 int i, j;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3324 for (i = 0; i < height; i++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3325 for (j = 0; j < width; j++)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3326 XPutPixel (unwind.ximage, j, i,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3327 unwind.pixels[png_pixels[i * width + j]]);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3328 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3329
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3330 xfree (row_pointers);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3331 xfree (png_pixels);
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3332 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3333 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3334 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3335 int height = info_ptr->height;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3336 int width = info_ptr->width;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3337 int y;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3338 unsigned char **row_pointers;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3339
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3340 /* Wow, allocate all the memory. Truly, exciting. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3341 unwind.eimage = xnew_array_and_zero (unsigned char, width * height * 3);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3342 /* libpng expects that the image buffer passed in contains a
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3343 picture to draw on top of if the png has any transparencies.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3344 This could be a good place to pass that in... */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3345
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3346 row_pointers = xnew_array (png_byte *, height);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3347
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3348 for (y = 0; y < height; y++)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3349 row_pointers[y] = unwind.eimage + (width * 3 * y);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3350
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3351 /* Now that we're using EImage, ask for 8bit RGB triples for any type
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3352 of image*/
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3353 /* convert palatte images to full RGB */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3354 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3355 png_set_expand (png_ptr);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3356 /* send grayscale images to RGB too */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3357 if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY ||
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3358 info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3359 png_set_gray_to_rgb (png_ptr);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3360 /* we can't handle alpha values */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3361 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3362 png_set_strip_alpha (png_ptr);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3363 /* rip out any transparancy layers/colors */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3364 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3365 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3366 png_set_expand (png_ptr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3367 png_set_strip_alpha (png_ptr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3368 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3369 /* tell libpng to strip 16 bit depth files down to 8 bits */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3370 if (info_ptr->bit_depth == 16)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3371 png_set_strip_16 (png_ptr);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3372 /* if the image is < 8 bits, pad it out */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3373 if (info_ptr->bit_depth < 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3374 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3375 if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3376 png_set_expand (png_ptr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3377 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3378 png_set_packing (png_ptr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3379 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3380
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3381 #if 1 /* tests? or permanent? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3382 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3383 /* if the png specifies a background chunk, go ahead and
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3384 use it */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3385 png_color_16 my_background, *image_background;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3386
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3387 /* ### how do I get the background of the current frame? */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3388 my_background.red = 0x7fff;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3389 my_background.green = 0x7fff;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3390 my_background.blue = 0x7fff;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3391
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3392 if (png_get_bKGD (png_ptr, info_ptr, &image_background))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3393 png_set_background (png_ptr, image_background,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3394 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3395 else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3396 png_set_background (png_ptr, &my_background,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3397 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3398 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3399 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3400 png_read_image (png_ptr, row_pointers);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3401 png_read_end (png_ptr, info_ptr);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3402
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3403 #ifdef PNG_SHOW_COMMENTS
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3404 /* ####
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3405 * I turn this off by default now, because the !%^@#!% comments
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3406 * show up every time the image is instantiated, which can get
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3407 * really really annoying. There should be some way to pass this
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3408 * type of data down into the glyph code, where you can get to it
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3409 * from lisp anyway. - WMP
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3410 */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3411 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3412 int i;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3413
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3414 for (i = 0 ; i < info_ptr->num_text ; i++)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3415 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3416 /* How paranoid do I have to be about no trailing NULLs, and
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3417 using (int)info_ptr->text[i].text_length, and strncpy and a temp
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3418 string somewhere? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3419
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3420 warn_when_safe (Qpng, Qinfo, "%s - %s",
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3421 info_ptr->text[i].key,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3422 info_ptr->text[i].text);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3423 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3424 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3425 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3426
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3427 xfree (row_pointers);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3428 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3429 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3430 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3431 signal_image_error ("PNG conversion failed", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3432 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3433 #endif
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3434
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3435 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3436 cmap, unwind.pixels, unwind.npixels,
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3437 instantiator);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3438
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3439 /* This will clean up everything else. */
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3440 unwind.npixels = 0;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3441 unwind.pixcount = 0;
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3442 unbind_to (speccount, Qnil);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
3443 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
3444
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3445 #endif /* HAVE_PNG */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3446
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3447
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3448 #ifdef HAVE_TIFF
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3449 #include "tiffio.h"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3450
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3451 /**********************************************************************
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3452 * TIFF *
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3453 **********************************************************************/
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3454 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3455 tiff_validate (Lisp_Object instantiator)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3456 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3457 file_or_data_must_be_present (instantiator);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3458 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3459
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3460 static Lisp_Object
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3461 tiff_normalize (Lisp_Object inst, Lisp_Object console_type)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3462 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3463 return simple_image_type_normalize (inst, console_type, Qtiff);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3464 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3465
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3466 static int
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3467 tiff_possible_dest_types (void)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3468 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3469 return IMAGE_COLOR_PIXMAP_MASK;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3470 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3471
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3472 struct tiff_unwind_data
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3473 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3474 Display *dpy;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3475 Colormap cmap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3476 unsigned char *eimage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3477 /* Object that holds the decoded data from a TIFF file */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3478 TIFF *tiff;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3479 /* Pixels to keep around while the image is active */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3480 unsigned long *pixels;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3481 int npixels,pixcount;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3482 /* Client-side image structure */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3483 XImage *ximage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3484 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3485
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3486 static Lisp_Object
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3487 tiff_instantiate_unwind (Lisp_Object unwind_obj)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3488 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3489 struct tiff_unwind_data *data =
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3490 (struct tiff_unwind_data *) get_opaque_ptr (unwind_obj);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3491
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3492 free_opaque_ptr (unwind_obj);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3493 if (data->tiff)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3494 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3495 TIFFClose(data->tiff);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3496 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3497 if (data->eimage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3498 xfree (data->eimage);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3499 if (data->npixels > 0)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3500 XFreeColors (data->dpy, data->cmap, data->pixels, data->npixels, 0L);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3501 if (data->pixcount)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3502 xfree (data->pixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3503 if (data->ximage)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3504 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3505 if (data->ximage->data)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3506 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3507 xfree (data->ximage->data);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3508 data->ximage->data = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3509 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3510 XDestroyImage (data->ximage);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3511 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3512
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3513 return Qnil;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3514 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3515
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3516 typedef struct tiff_memory_storage
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3517 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3518 Extbyte *bytes; /* The data */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3519 Extcount len; /* How big is it? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3520 int index; /* Where are we? */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3521 } tiff_memory_storage;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3522
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3523 static size_t
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3524 tiff_memory_read(thandle_t data, tdata_t buf, tsize_t size)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3525 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3526 tiff_memory_storage *mem = (tiff_memory_storage*)data;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3527
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3528 if (size > (mem->len - mem->index))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3529 return (size_t) -1;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3530 memcpy(buf, mem->bytes + mem->index, size);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3531 mem->index = mem->index + size;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3532 return size;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3533 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3534
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3535 static size_t tiff_memory_write(thandle_t data, tdata_t buf, tsize_t size)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3536 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3537 abort();
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3538 return 0; /* Shut up warnings. */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3539 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3540
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3541 static toff_t tiff_memory_seek(thandle_t data, toff_t off, int whence)
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3542 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3543 tiff_memory_storage *mem = (tiff_memory_storage*)data;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3544 int newidx;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3545 switch(whence) {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3546 case SEEK_SET:
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3547 newidx = off;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3548 break;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3549 case SEEK_END:
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3550 newidx = mem->len + off;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3551 break;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3552 case SEEK_CUR:
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3553 newidx = mem->index + off;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3554 break;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3555 default:
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3556 fprintf(stderr,"Eh? invalid seek mode in tiff_memory_seek\n");
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3557 return -1;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3558 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3559
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3560 if ((newidx > mem->len) || (newidx < 0))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3561 return -1;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3562
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3563 mem->index = newidx;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3564 return newidx;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3565 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3566
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3567 static int
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3568 tiff_memory_close(thandle_t data)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3569 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3570 return 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3571 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3572
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3573 static int
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3574 tiff_map_noop(thandle_t data, tdata_t* pbase, toff_t* psize)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3575 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3576 return 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3577 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3578
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3579 static void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3580 tiff_unmap_noop(thandle_t data, tdata_t pbase, toff_t psize)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3581 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3582 return;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3583 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3584
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3585 static toff_t
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3586 tiff_memory_size(thandle_t data)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3587 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3588 tiff_memory_storage *mem = (tiff_memory_storage*)data;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3589 return mem->len;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3590 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3591
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3592 struct tiff_error_struct
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3593 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3594 #if HAVE_VSNPRINTF
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3595 char err_str[256];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3596 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3597 char err_str[1024]; /* return the error string */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3598 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3599 jmp_buf setjmp_buffer; /* for return to caller */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3600 };
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3601
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3602 /* jh 98/03/12 - ###This struct for passing data to the error functions
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3603 is an ugly hack caused by the fact that libtiff (as of v3.4) doesn't
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3604 have any place to store error func data. This should be rectified
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3605 before XEmacs gets threads! */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3606 static struct tiff_error_struct tiff_err_data;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3607
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3608 static void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3609 tiff_error_func(CONST char *module, CONST char *fmt, ...)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3610 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3611 va_list vargs;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3612
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3613 va_start (vargs, fmt);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3614 #if HAVE_VSNPRINTF
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3615 vsnprintf (tiff_err_data.err_str, 255, fmt, vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3616 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3617 /* pray this doesn't overflow... */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3618 vsprintf (tiff_err_data.err_str, fmt, vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3619 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3620 va_end (vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3621 /* return to setjmp point */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3622 longjmp (tiff_err_data.setjmp_buffer, 1);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3623 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3624
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3625 static void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3626 tiff_warning_func(CONST char *module, CONST char *fmt, ...)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3627 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3628 va_list vargs;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3629 #if HAVE_VSNPRINTF
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3630 char warn_str[256];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3631 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3632 char warn_str[1024];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3633 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3634
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3635 va_start (vargs, fmt);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3636 #if HAVE_VSNPRINTF
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3637 vsnprintf (warn_str, 255, fmt, vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3638 #else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3639 vsprintf (warn_str, fmt, vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3640 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3641 va_end (vargs);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3642 warn_when_safe (Qtiff, Qinfo, "%s - %s",
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3643 module, warn_str);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3644 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3645
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3646 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3647 tiff_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3648 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3649 int dest_mask, Lisp_Object domain)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3650 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3651 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3652 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3653 Colormap cmap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3654 Display *dpy;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3655 tiff_memory_storage mem_struct;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3656 /* It is OK for the unwind data to be local to this function,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3657 because the unwind-protect is always executed when this
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3658 stack frame is still valid. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3659 struct tiff_unwind_data unwind;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3660 int speccount = specpdl_depth ();
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3661
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3662 if (!DEVICE_X_P (XDEVICE (device)))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3663 signal_simple_error ("Not an X device", device);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3664
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3665 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3666 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3667
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3668 xzero (unwind);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3669 unwind.dpy = dpy;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3670 unwind.cmap = cmap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3671 record_unwind_protect (tiff_instantiate_unwind, make_opaque_ptr (&unwind));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3672
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3673 /* set up error facilities */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3674 if (setjmp (tiff_err_data.setjmp_buffer))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3675 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3676 /* An error was signaled. No clean up is needed, as unwind handles that
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3677 for us. Just pass the error along. */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3678 signal_image_error_2 ("TIFF decoding error",
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3679 build_string(tiff_err_data.err_str),
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3680 instantiator);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3681 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3682 TIFFSetErrorHandler ((TIFFErrorHandler)tiff_error_func);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3683 TIFFSetWarningHandler ((TIFFErrorHandler)tiff_warning_func);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3684 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3685 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3686 Extbyte *bytes;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3687 Extcount len;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3688
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3689 uint32 width, height;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3690 uint32 *raster;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3691 unsigned char *ep;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3692
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3693 assert (!NILP (data));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3694
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3695 /* #### This is a definite problem under Mule due to the amount of
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3696 stack data it might allocate. Think about Lstreams... */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3697 GET_STRING_BINARY_DATA_ALLOCA (data, bytes, len);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3698 mem_struct.bytes = bytes;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3699 mem_struct.len = len;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3700 mem_struct.index = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3701
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3702 unwind.tiff = TIFFClientOpen ("memfile", "r", &mem_struct,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3703 (TIFFReadWriteProc)tiff_memory_read,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3704 (TIFFReadWriteProc)tiff_memory_write,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3705 tiff_memory_seek, tiff_memory_close, tiff_memory_size,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3706 tiff_map_noop, tiff_unmap_noop);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3707 if (!unwind.tiff)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3708 signal_image_error ("Insufficent memory to instantiate TIFF image", instantiator);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3709
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3710 TIFFGetField (unwind.tiff, TIFFTAG_IMAGEWIDTH, &width);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3711 TIFFGetField (unwind.tiff, TIFFTAG_IMAGELENGTH, &height);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3712 unwind.eimage = (unsigned char *) xmalloc (width * height * 3);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3713
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3714 /* ### This is little more than proof-of-concept/function testing.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3715 It needs to be reimplimented via scanline reads for both memory
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3716 compactness. */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3717 raster = (uint32*) _TIFFmalloc (width * height * sizeof (uint32));
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3718 if (raster != NULL)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3719 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3720 int i,j;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3721 uint32 *rp;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3722 ep = unwind.eimage;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3723 rp = raster;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3724 if (TIFFReadRGBAImage (unwind.tiff, width, height, raster, 0))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3725 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3726 for (i = height - 1; i >= 0; i--)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3727 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3728 /* This is to get around weirdness in the libtiff library where properly
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3729 made TIFFs will come out upside down. libtiff bug or jhod-brainlock? */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3730 rp = raster + (i * width);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3731 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3732 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3733 *ep++ = (unsigned char)TIFFGetR(*rp);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3734 *ep++ = (unsigned char)TIFFGetG(*rp);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3735 *ep++ = (unsigned char)TIFFGetB(*rp);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3736 rp++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3737 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3738 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3739 }
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3740 _TIFFfree (raster);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3741 } else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3742 signal_image_error ("Unable to allocate memory for TIFFReadRGBA", instantiator);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3743
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3744 unwind.ximage = convert_EImage_to_XImage (device, width, height, unwind.eimage,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3745 &unwind.pixels, &unwind.pixcount, &unwind.npixels);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3746 if (!unwind.ximage)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3747 signal_image_error ("TIFF conversion failed", instantiator);
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3748 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3749 /* Now create the pixmap and set up the image instance */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3750 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3751 cmap, unwind.pixels, unwind.npixels,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3752 instantiator);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3753 /* Now that we've succeeded, we don't want the pixels
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3754 freed right now. They're kept around in the image instance
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3755 structure until it's destroyed. */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3756 unwind.npixels = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3757 unwind.pixcount = 0;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
3758 unbind_to (speccount, Qnil);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3759 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3760
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
3761 #endif /* HAVE_TIFF */
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
3762
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
3763
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 * X-Face *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 xface_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
3779 /* This funcation can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3783
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3827 xface_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3829 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3830 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
3831 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 #if defined(EXTERN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 /* This is about to get redefined! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 #undef EXTERN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 /* We have to define SYSV32 so that compface.h includes string.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 instead of strings.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 #define SYSV32
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3842 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3843 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3844 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 #include <compface.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3846 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3847 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3848 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 /* JMP_BUF cannot be used here because if it doesn't get defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 to jmp_buf we end up with a conflicting type error with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 definition in compface.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 extern jmp_buf comp_env;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 #undef SYSV32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
3858 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 int i, stattis;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 char *p, *bits, *bp;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3863 CONST char * volatile emsg = 0;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3864 CONST char * volatile dstring;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 if ((p = strchr (dstring, ':')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 dstring = p + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 /* 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
3876 if (!(stattis = setjmp (comp_env)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 UnCompAll ((char *) dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 UnGenFace ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 switch (stattis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 case -2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 emsg = "uncompface: internal error";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 case -1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 emsg = "uncompface: insufficient or invalid data";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 emsg = "uncompface: excess data ignored";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 if (emsg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 signal_simple_error_2 (emsg, data, Qimage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 bp = bits = (char *) alloca (PIXELS / 8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 /* the compface library exports char F[], which uses a single byte per
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 pixel to represent a 48x48 bitmap. Yuck. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 for (i = 0, p = F; i < (PIXELS / 8); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 int n, b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 /* reverse the bit order of each byte... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 for (b = n = 0; b < 8; ++b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 n |= ((*p++) << b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 *bp++ = (char) n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 pointer_bg, dest_mask, 48, 48, bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 #endif /* HAVE_XFACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 /**********************************************************************
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3921 * Autodetect *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3925 autodetect_validate (Lisp_Object instantiator)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 static Lisp_Object
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
3931 autodetect_normalize (Lisp_Object instantiator,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
3932 Lisp_Object console_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 Lisp_Object filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 Lisp_Object data = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 GCPRO3 (filename, data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 RETURN_UNGCPRO (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 filename = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 if (!NILP (filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 /* #### Apparently some versions of XpmReadFileToData, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 called by pixmap_to_lisp_data, don't return an error value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 if the given file is not a valid XPM file. Instead, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 just seg fault. It is definitely caused by passing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 bitmap. To try and avoid this we check for bitmaps first. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3956
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 if (xhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 if (yhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 alist = xbm_mask_file_munging (alist, filename, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 data = pixmap_to_lisp_data (filename, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 alist = Fcons (Fcons (Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 evaluate_xpm_color_symbols ()),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 /* If we couldn't convert it, just put it back as it is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 We might try to further frob it later as a cursor-font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 specification. (We can't do that now because we don't know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 what dest-types it's going to be instantiated into.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 {
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4005 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 static int
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4012 autodetect_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4014 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4015 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4016 IMAGE_COLOR_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4017 IMAGE_POINTER_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4018 IMAGE_TEXT_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4022 autodetect_instantiate (Lisp_Object image_instance,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
4023 Lisp_Object instantiator,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
4024 Lisp_Object pointer_fg,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
4025 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
4026 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 int is_cursor_font = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 GCPRO3 (data, alist, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 if (XmuCursorNameToIndex (name_ext) != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 result = alist_to_tagged_vector (Qcursor_font, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 is_cursor_font = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 if (!is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 result = alist_to_tagged_vector (Qstring, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 if (is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 cursor_font_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
4054 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 string_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
4057 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 * Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 /* XmuCvtStringToCursor is bogus in the following ways:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 - 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
4076 sometimes return a "success" value, after triggering a BadPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 error. It then gives you a cursor that will itself generate BadCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 errors. So we install this error handler to catch/notice the X error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 and take that as meaning "couldn't convert."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 - 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
4082 an error message on stderr. You can't make it not do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 objects, or XPM files, or $XBMLANGPATH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 static int XLoadFont_got_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 XLoadFont_got_error = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 static Font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 safe_XLoadFont (Display *dpy, char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 Font font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 int (*old_handler) (Display *, XErrorEvent *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 XLoadFont_got_error = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 old_handler = XSetErrorHandler (XLoadFont_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 font = XLoadFont (dpy, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 XSetErrorHandler (old_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 if (XLoadFont_got_error) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 return font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4115 font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
4123 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 Font source, mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 int source_char, mask_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 if (!STRINGP (data) ||
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
4143 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 signal_simple_error ("Invalid font-glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
4159 count = sscanf ((char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 "FONT %s %d %s %d %c",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 source_name, &source_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 mask_name, &mask_char, &dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 /* Allow "%s %d %d" as well... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 count = 4, mask_name[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 if (count != 2 && count != 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 signal_simple_error ("invalid cursor specification", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 source = safe_XLoadFont (dpy, source_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 if (! source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 signal_simple_error_2 ("couldn't load font",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 build_string (source_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 if (count == 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 else if (!mask_name[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 mask = source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 mask = safe_XLoadFont (dpy, mask_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 /* continuable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 build_string (mask_name), data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 mask_char = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 XUnloadFont (dpy, source);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 if (mask && mask != source) XUnloadFont (dpy, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 * Cursor-Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 cursor_font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4213 cursor_font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
4221 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242 signal_simple_error ("Unrecognized cursor-font name", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 maybe_recolor_cursor (image_instance, foreground, background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 x_colorize_image_instance (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 Lisp_Object foreground, Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 struct Lisp_Image_Instance *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 p = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 /* Make sure there aren't two pointers to the same mask, causing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 it to get freed twice. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
4278 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
4279 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
4280 Pixmap new = XCreatePixmap (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 gcv.foreground = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 gcv.background = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 0, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 IMAGE_INSTANCE_X_PIXMAP (p) = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
4305 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 /* subwindows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 Lisp_Object Qsubwindowp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 return sw->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 struct frame *frm = XFRAME (sw->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 error ("printing unreadable object #<subwindow 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 write_c_string ("#<subwindow", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 sprintf (buf, " %dx%d", sw->width, sw->height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 /* This is stolen from frame.c. Subwindows are strange in that they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 are specific to a particular frame so we want to print in their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 description what that frame is. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4337
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 write_c_string (" on #<", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 if (!FRAME_LIVE_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 write_c_string ("dead", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 else if (FRAME_TTY_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 write_c_string ("tty", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 else if (FRAME_X_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 write_c_string ("x", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 write_c_string ("UNKNOWN", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347 write_c_string ("-frame ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 print_internal (frm->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 sprintf (buf, " 0x%x>", frm->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 sprintf (buf, ") 0x%x>", sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 finalize_subwindow (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 if (for_disksave) finalose (sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 if (sw->subwindow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 sw->subwindow = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 /* subwindows are equal iff they have the same window XID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 subwindow_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 return XSUBWINDOW (obj)->subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4381 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4382 mark_subwindow, print_subwindow,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4383 finalize_subwindow, subwindow_equal,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4384 subwindow_hash, struct Lisp_Subwindow);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4385
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 /* #### PROBLEM: The display routines assume that the glyph is only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 being displayed in one buffer. If it is in two different buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 which are both being displayed simultaneously you will lose big time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 This can be dealt with in the new redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
4391 /* #### These are completely un-re-implemented in 19.14. Get it done
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
4392 for 19.15. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4394 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 Creates a new `subwindow' object of size WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396 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
4397 window size. Subwindows are per-frame. A buffer being shown in two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 different frames will only display a subwindow glyph in the frame in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 which it was actually created. If two windows on the same frame are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 displaying the buffer then the most recently used window will actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 display the window. If the frame is not specified, the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4405 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4406 (width, height, frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 Window pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 unsigned int iw, ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 XSetWindowAttributes xswa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 Mask valueMask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415
140
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
4416 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
4417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418 f = decode_x_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 dpy = DisplayOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 CHECK_INT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 iw = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 if (iw < 1) iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 CHECK_INT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 ih = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 if (ih < 1) ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4442 struct Lisp_Subwindow *sw =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4443 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 sw->frame = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 sw->xscreen = xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 sw->parent_window = pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 sw->height = ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 sw->width = iw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451 xswa.backing_store = Always;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 valueMask |= CWBackingStore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 xswa.colormap = DefaultColormapOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 valueMask |= CWColormap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 InputOutput, CopyFromParent, valueMask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 &xswa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 XSETSUBWINDOW (val, sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 /* #### Should this function exist? */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4467 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4470 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4471 (subwindow, property, data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 Atom property_atom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 CHECK_STRING (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 (FRAME_DEVICE (XFRAME (sw->frame))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
4485 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
4487 PropModeReplace,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
4488 XSTRING_DATA (data),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
4489 XSTRING_LENGTH (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4491 return property;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4494 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 Return non-nil if OBJECT is a subwindow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4497 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4498 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4500 return SUBWINDOWP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4503 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 Width of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4506 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4507 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 CHECK_SUBWINDOW (subwindow);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4510 return make_int (XSUBWINDOW (subwindow)->width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4513 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 Height of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4516 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4517 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519 CHECK_SUBWINDOW (subwindow);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4520 return make_int (XSUBWINDOW (subwindow)->height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4523 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 Return the xid of SUBWINDOW as a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4526 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4527 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 CHECK_SUBWINDOW (subwindow);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
4530 return make_int (XSUBWINDOW (subwindow)->subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4533 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 Resize SUBWINDOW to WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 If a value is nil that parameter is not changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4537 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4538 (subwindow, width, height))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 int neww, newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 neww = sw->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 neww = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552 newh = sw->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554 newh = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 sw->height = newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559 sw->width = neww;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4564 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 Generate a Map event for SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4567 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4568 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 XSUBWINDOW (subwindow)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 }
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
4577 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 syms_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
4586 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 defsymbol (&Qsubwindowp, "subwindowp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4589 DEFSUBR (Fmake_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4590 DEFSUBR (Fchange_subwindow_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4591 DEFSUBR (Fsubwindowp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4592 DEFSUBR (Fsubwindow_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4593 DEFSUBR (Fsubwindow_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4594 DEFSUBR (Fsubwindow_xid);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4595 DEFSUBR (Fresize_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4596 DEFSUBR (Fforce_subwindow_map);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
4597 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 defkeyword (&Q_mask_file, ":mask-file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 defkeyword (&Q_mask_data, ":mask-data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 defkeyword (&Q_hotspot_x, ":hotspot-x");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 defkeyword (&Q_hotspot_y, ":hotspot-y");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 defkeyword (&Q_foreground, ":foreground");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 defkeyword (&Q_background, ":background");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 defkeyword (&Q_color_symbols, ":color-symbols");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 console_type_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 /* image methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616 CONSOLE_HAS_METHOD (x, print_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 CONSOLE_HAS_METHOD (x, finalize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 CONSOLE_HAS_METHOD (x, image_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 CONSOLE_HAS_METHOD (x, image_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 CONSOLE_HAS_METHOD (x, colorize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 image_instantiator_format_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 /* image-instantiator types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630 IIFORMAT_HAS_METHOD (xbm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631 IIFORMAT_HAS_METHOD (xbm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633 IIFORMAT_HAS_METHOD (xbm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646 IIFORMAT_HAS_METHOD (cursor_font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656 IIFORMAT_HAS_METHOD (font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657 IIFORMAT_HAS_METHOD (font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 IIFORMAT_HAS_METHOD (font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4664 #ifdef HAVE_JPEG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4665 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (jpeg, "jpeg");
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4666
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4667 IIFORMAT_HAS_METHOD (jpeg, validate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4668 IIFORMAT_HAS_METHOD (jpeg, normalize);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4669 IIFORMAT_HAS_METHOD (jpeg, possible_dest_types);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4670 IIFORMAT_HAS_METHOD (jpeg, instantiate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4671
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4672 IIFORMAT_VALID_KEYWORD (jpeg, Q_data, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4673 IIFORMAT_VALID_KEYWORD (jpeg, Q_file, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4674 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4675
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4676 #ifdef HAVE_GIF
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4677 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gif, "gif");
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4678
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4679 IIFORMAT_HAS_METHOD (gif, validate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4680 IIFORMAT_HAS_METHOD (gif, normalize);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4681 IIFORMAT_HAS_METHOD (gif, possible_dest_types);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4682 IIFORMAT_HAS_METHOD (gif, instantiate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4683
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4684 IIFORMAT_VALID_KEYWORD (gif, Q_data, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4685 IIFORMAT_VALID_KEYWORD (gif, Q_file, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4686 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4687
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4688 #ifdef HAVE_PNG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4689 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (png, "png");
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4690
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4691 IIFORMAT_HAS_METHOD (png, validate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4692 IIFORMAT_HAS_METHOD (png, normalize);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4693 IIFORMAT_HAS_METHOD (png, possible_dest_types);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4694 IIFORMAT_HAS_METHOD (png, instantiate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4695
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4696 IIFORMAT_VALID_KEYWORD (png, Q_data, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4697 IIFORMAT_VALID_KEYWORD (png, Q_file, check_valid_string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4698 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4699
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4700 #ifdef HAVE_TIFF
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
4701 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (tiff, "tiff");
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4702
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4703 IIFORMAT_HAS_METHOD (tiff, validate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4704 IIFORMAT_HAS_METHOD (tiff, normalize);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4705 IIFORMAT_HAS_METHOD (tiff, possible_dest_types);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4706 IIFORMAT_HAS_METHOD (tiff, instantiate);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4707
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
4708 IIFORMAT_VALID_KEYWORD (tiff, Q_data, check_valid_string);
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
4709 IIFORMAT_VALID_KEYWORD (tiff, Q_file, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 IIFORMAT_HAS_METHOD (xpm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716 IIFORMAT_HAS_METHOD (xpm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 IIFORMAT_HAS_METHOD (xpm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 IIFORMAT_HAS_METHOD (xface, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 IIFORMAT_HAS_METHOD (xface, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731 IIFORMAT_HAS_METHOD (xface, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4739 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4741 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4742 "autodetect");
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4743
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4744 IIFORMAT_HAS_METHOD (autodetect, validate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4745 IIFORMAT_HAS_METHOD (autodetect, normalize);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4746 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4747 IIFORMAT_HAS_METHOD (autodetect, instantiate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4748
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
4749 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4755 #ifdef HAVE_JPEG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4756 Fprovide (Qjpeg);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4757 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4758
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4759 #ifdef HAVE_GIF
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4760 Fprovide (Qgif);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4761 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4762
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4763 #ifdef HAVE_PNG
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4764 Fprovide (Qpng);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4765 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4766
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4767 #ifdef HAVE_TIFF
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4768 Fprovide (Qtiff);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4769 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
4770
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4772 Fprovide (Qxpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775 Definitions of logical color-names used when reading XPM files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 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
4777 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
4778 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
4779 passed to `make-color-instance'. If a loaded XPM file references a symbolic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 color called COLOR-NAME, it will display as the computed color instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 The default value of this variable defines the logical color names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 \"foreground\" and \"background\" to be the colors of the `default' face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4786 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 Fprovide (Qxface);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4790 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 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
4794 If nil, this is initialized from the "*bitmapFilePath" resource.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 This is used by the `make-image-instance' function (however, note that if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 the environment variable XBMLANGPATH is set, it is consulted first).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 Vx_bitmap_file_path = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802 complex_vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 #define BUILD_GLYPH_INST(variable, name) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 Fadd_spec_to_specifier \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 (GLYPH_IMAGE (XGLYPH (variable)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 vector3 (Qxbm, Q_data, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 list3 (make_int (name##_width), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 make_int (name##_height), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 make_ext_string (name##_bits, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 sizeof (name##_bits), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 FORMAT_BINARY))), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813 Qglobal, Qx, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
4818 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 #undef BUILD_GLYPH_INST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 }