annotate src/glyphs-x.c @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents de805c49cfc1
children 41dbb7a9d5f2
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
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 21.0
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
39 Many changes for color work and optimizations by Jareth Hein for 21.0
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 21.0
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
41 TIFF code by Jareth Hein for 21.0
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
42 GIF/JPEG/PNG/TIFF code moved to new glyph-eimage.c for 21.0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 TODO:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Convert images.el to C and stick it in here?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "lisp.h"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
50 #include "lstream.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #include "buffer.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
57 #include "window.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
62 #include "imgproc.h"
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
63
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #include "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
66 #include <setjmp.h>
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
67
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
68 #ifdef FILE_CODING
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
69 #include "file-coding.h"
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
70 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
72 #if INTBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
73 # define FOUR_BYTE_TYPE unsigned int
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
74 #elif LONGBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
75 # define FOUR_BYTE_TYPE unsigned long
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
76 #elif SHORTBITS == 32
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
77 # define FOUR_BYTE_TYPE unsigned short
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
78 #else
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
79 #error What kind of strange-ass system are we running on?
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
80 #endif
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
81
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
82 #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
83
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
84 #ifdef HAVE_XPM
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
85 DEFINE_DEVICE_IIFORMAT (x, xpm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
86 #endif
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
87 DEFINE_DEVICE_IIFORMAT (x, xbm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
88 DEFINE_DEVICE_IIFORMAT (x, subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #ifdef HAVE_XFACE
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
90 DEFINE_DEVICE_IIFORMAT (x, xface);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Qcursor_font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
98 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 static void cursor_font_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
104 int dest_mask,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
105 Lisp_Object domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #include "bitmaps.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* image instance methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
114 /************************************************************************/
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
115 /* 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
116 /* proper display */
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
117 /************************************************************************/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
118 static XImage *
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
119 convert_EImage_to_XImage (Lisp_Object device, int width, int height,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
120 unsigned char *pic, unsigned long **pixtbl,
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
121 int *npixels)
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
122 {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
123 Display *dpy;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
124 Colormap cmap;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
125 Visual *vis;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
126 XImage *outimg;
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 388
diff changeset
127 int depth, bitmap_pad, bits_per_pixel, byte_cnt, i, j;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
128 int rd,gr,bl,q;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
129 unsigned char *data, *ip, *dp;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
130 quant_table *qtable = 0;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
131 union {
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
132 FOUR_BYTE_TYPE val;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
133 char cp[4];
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
134 } conv;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
135
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
136 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
137 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
138 vis = DEVICE_X_VISUAL (XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
139 depth = DEVICE_X_DEPTH(XDEVICE(device));
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
140
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
141 if (vis->class == PseudoColor)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
142 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
143 /* Quantize the image and get a histogram while we're at it.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
144 Do this first to save memory */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
145 qtable = build_EImage_quantable(pic, width, height, 256);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
146 if (qtable == NULL) return NULL;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
147 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
148
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
149 bitmap_pad = ((depth > 16) ? 32 :
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
150 (depth > 8) ? 16 :
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
151 8);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
152
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
153 outimg = XCreateImage (dpy, vis,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
154 depth, ZPixmap, 0, 0, width, height,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
155 bitmap_pad, 0);
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
156 if (!outimg) return NULL;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
157
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 388
diff changeset
158 bits_per_pixel = outimg->bits_per_pixel;
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 388
diff changeset
159 byte_cnt = bits_per_pixel >> 3;
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 388
diff changeset
160
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
161 data = (unsigned char *) xmalloc (outimg->bytes_per_line * height);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
162 if (!data)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
163 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
164 XDestroyImage (outimg);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
165 return NULL;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
166 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
167 outimg->data = (char *) data;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
168
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
169 if (vis->class == PseudoColor)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
170 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
171 unsigned long pixarray[256];
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
172 int pixcount, n;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
173 /* use our quantize table to allocate the colors */
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
174 pixcount = 32;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
175 *pixtbl = xnew_array (unsigned long, pixcount);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
176 *npixels = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
177
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
178 /* ### should implement a sort by popularity to assure proper allocation */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
179 n = *npixels;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
180 for (i = 0; i < qtable->num_active_colors; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
181 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
182 XColor color;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
183 int res;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
184
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
185 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
186 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
187 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
188 color.flags = DoRed | DoGreen | DoBlue;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
189 res = allocate_nearest_color (dpy, cmap, vis, &color);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
190 if (res > 0 && res < 3)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
191 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
192 DO_REALLOC(*pixtbl, pixcount, n+1, unsigned long);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
193 (*pixtbl)[n] = color.pixel;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
194 n++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
195 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
196 pixarray[i] = color.pixel;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
197 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
198 *npixels = n;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
199 ip = pic;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
200 for (i = 0; i < height; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
201 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
202 dp = data + (i * outimg->bytes_per_line);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
203 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
204 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
205 rd = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
206 gr = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
207 bl = *ip++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
208 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
209 #if WORDS_BIGENDIAN
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
210 if (outimg->byte_order == MSBFirst)
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
211 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
212 else
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
213 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
214 #else
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
215 if (outimg->byte_order == MSBFirst)
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
216 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
217 else
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
218 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
219 #endif
269
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 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
222 xfree(qtable);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
223 } else {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
224 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
225 junk = vis->red_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
226 rshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
227 while ((junk & 0x1) == 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
228 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
229 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
230 rshift ++;
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 rbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
233 while (junk != 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
234 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
235 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
236 rbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
237 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
238 junk = vis->green_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
239 gshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
240 while ((junk & 0x1) == 0)
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 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
243 gshift ++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
244 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
245 gbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
246 while (junk != 0)
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 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
249 gbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
250 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
251 junk = vis->blue_mask;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
252 bshift = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
253 while ((junk & 0x1) == 0)
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 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
256 bshift ++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
257 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
258 bbits = 0;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
259 while (junk != 0)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
260 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
261 junk = junk >> 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
262 bbits++;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
263 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
264 ip = pic;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
265 for (i = 0; i < height; i++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
266 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
267 dp = data + (i * outimg->bytes_per_line);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
268 for (j = 0; j < width; j++)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
269 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
270 if (rbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
271 rd = *ip++ << (rbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
272 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
273 rd = *ip++ >> (8 - rbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
274 if (gbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
275 gr = *ip++ << (gbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
276 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
277 gr = *ip++ >> (8 - gbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
278 if (bbits > 8)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
279 bl = *ip++ << (bbits - 8);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
280 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
281 bl = *ip++ >> (8 - bbits);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
282
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
283 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
284 #if WORDS_BIGENDIAN
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
285 if (outimg->byte_order == MSBFirst)
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
286 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
287 else
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
288 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
289 #else
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
290 if (outimg->byte_order == MSBFirst)
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
291 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
292 else
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
293 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 298
diff changeset
294 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
295 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
296 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
297 }
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
298 return outimg;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
299 }
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
300
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
301
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
302
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
304 x_print_image_instance (struct Lisp_Image_Instance *p,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 if (IMAGE_INSTANCE_X_MASK (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
330 x_finalize_image_instance (struct Lisp_Image_Instance *p)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 if (!p->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
335 if (DEVICE_LIVE_P (XDEVICE (p->device)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
337 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (p->device));
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
338
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
339 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_WIDGET
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
340 ||
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
341 IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
342 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
343 if (IMAGE_INSTANCE_SUBWINDOW_ID (p))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
344 XDestroyWindow (dpy, IMAGE_INSTANCE_X_SUBWINDOW_ID (p));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
345 IMAGE_INSTANCE_SUBWINDOW_ID (p) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
346 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
347 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
349 if (IMAGE_INSTANCE_X_PIXMAP (p))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
350 XFreePixmap (dpy, IMAGE_INSTANCE_X_PIXMAP (p));
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
351 if (IMAGE_INSTANCE_X_MASK (p) &&
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
352 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
353 XFreePixmap (dpy, IMAGE_INSTANCE_X_MASK (p));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
354 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
355 IMAGE_INSTANCE_X_MASK (p) = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
356
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
357 if (IMAGE_INSTANCE_X_CURSOR (p))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
358 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
359 XFreeCursor (dpy, IMAGE_INSTANCE_X_CURSOR (p));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
360 IMAGE_INSTANCE_X_CURSOR (p) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
361 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
362
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
363 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
364 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
365 XFreeColors (dpy,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
366 IMAGE_INSTANCE_X_COLORMAP (p),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
367 IMAGE_INSTANCE_X_PIXELS (p),
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
368 IMAGE_INSTANCE_X_NPIXELS (p), 0);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
369 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
370 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
373 if (IMAGE_INSTANCE_X_PIXELS (p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 xfree (IMAGE_INSTANCE_X_PIXELS (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 IMAGE_INSTANCE_X_PIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 xfree (p->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 p->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 static int
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
384 x_image_instance_equal (struct Lisp_Image_Instance *p1,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
385 struct Lisp_Image_Instance *p2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 switch (IMAGE_INSTANCE_TYPE (p1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 case IMAGE_POINTER:
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
392 if (IMAGE_INSTANCE_X_COLORMAP (p1) != IMAGE_INSTANCE_X_COLORMAP (p2) ||
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
393 IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 return 0;
56
c0965ff3b039 Import from CVS: tag r19-16-pre3
cvs
parents: 50
diff changeset
395 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 static unsigned long
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
404 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 return IMAGE_INSTANCE_X_NPIXELS (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 /* Set all the slots in an image instance structure to reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 default values. This is used somewhere within an instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 method. It is assumed that the device slot within the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 instance is already set -- this is the case when instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 methods are called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
424 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
427 ii->data = xnew_and_zero (struct x_image_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 IMAGE_INSTANCE_TYPE (ii) = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* pixmap file functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 /* Where bitmaps are; initialized from resource database */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Lisp_Object Vx_bitmap_file_path;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 #ifndef BITMAPDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 #define BITMAPDIR "/usr/include/X11/bitmaps"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 #define USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 /* Given a pixmap filename, look through all of the "standard" places
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 where the file might be located. Return a full pathname if found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 otherwise, return Qnil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
455 static Lisp_Object
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
456 x_locate_pixmap_file (Lisp_Object name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 /* This function can GC if IN_REDISPLAY is false */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 /* Check non-absolute pathnames with a directory component relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 the search path; that's the way Xt does it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 /* #### Unix-specific */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
464 if (XSTRING_BYTE (name, 0) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
465 (XSTRING_BYTE (name, 0) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
466 (XSTRING_BYTE (name, 1) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
467 (XSTRING_BYTE (name, 1) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
468 (XSTRING_BYTE (name, 2) == '/')))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 if (!NILP (Ffile_readable_p (name)))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
471 return name;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 if (NILP (Vdefault_x_device))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
477 /* This may occur during initialization. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 /* We only check the bitmapFilePath resource on the original X device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 #ifdef USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 char *path = egetenv ("XBMLANGPATH");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 SubstitutionRec subs[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 subs[0].match = 'B';
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
488 subs[0].substitution = (char *) XSTRING_DATA (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 We don't. If you want it used, set it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 if (path &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 subs, XtNumber (subs), 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 name = build_string (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 XtFree (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 return (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 if (NILP (Vx_bitmap_file_path))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 char *type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 XrmValue value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 if (XrmGetResource (XtDatabase (display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 "bitmapFilePath", "BitmapFilePath", &type, &value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 && !strcmp (type, "String"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
511 (decode_path (BITMAPDIR)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 Lisp_Object found;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 392
diff changeset
516 if (locate_file (Vx_bitmap_file_path, name, Qnil, &found, R_OK) < 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 Lisp_Object temp = list1 (Vdata_directory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 GCPRO1 (temp);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 392
diff changeset
522 locate_file (temp, name, Qnil, &found, R_OK);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 return found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
530 static Lisp_Object
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
531 locate_pixmap_file (Lisp_Object name)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
532 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
533 return x_locate_pixmap_file (name);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
534 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
535
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
536 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
540 Lisp_Object instream, outstream;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
541 Lstream *istr, *ostr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
542 char tempbuf[1024]; /* some random amount */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
543 int fubar = 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
544 FILE *tmpfil;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 259
diff changeset
545 static Extbyte_dynarr *conversion_out_dynarr;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
546 Bytecount bstart, bend;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
547 struct gcpro gcpro1, gcpro2;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
548 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
549 Lisp_Object conv_out_stream;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
550 Lstream *costr;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
551 struct gcpro gcpro3;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
552 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
553
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
554 /* This function can GC */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
555 if (!conversion_out_dynarr)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
556 conversion_out_dynarr = Dynarr_new (Extbyte);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
557 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
558 Dynarr_reset (conversion_out_dynarr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
559
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
560 /* Create the temporary file ... */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 mktemp (filename_out);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
563 tmpfil = fopen (filename_out, "w");
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
564 if (!tmpfil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
566 if (tmpfil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 int old_errno = errno;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
569 fclose (tmpfil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 unlink (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 errno = old_errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 report_file_error ("Creating temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 list1 (build_string (filename_out)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
577 CHECK_STRING (string);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
578 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
579 GB_HISTORICAL_STRING_BEHAVIOR);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
580 instream = make_lisp_string_input_stream (string, bstart, bend);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
581 istr = XLSTREAM (instream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
582 /* setup the out stream */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
583 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
584 ostr = XLSTREAM (outstream);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
585 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
586 /* setup the conversion stream */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
587 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
588 costr = XLSTREAM (conv_out_stream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
589 GCPRO3 (instream, outstream, conv_out_stream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
590 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
591 GCPRO2 (instream, outstream);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
592 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
593
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
594 /* Get the data while doing the conversion */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
595 while (1)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
596 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
597 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
598 if (!size_in_bytes)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
599 break;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
600 /* It does seem the flushes are necessary... */
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
601 #ifdef FILE_CODING
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
602 Lstream_write (costr, tempbuf, size_in_bytes);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
603 Lstream_flush (costr);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
604 #else
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
605 Lstream_write (ostr, tempbuf, size_in_bytes);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
606 #endif
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
607 Lstream_flush (ostr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
608 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
609 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
610 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
611 fubar = 1;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
612 break;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
613 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
614 /* reset the dynarr */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
615 Lstream_rewind(ostr);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
616 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
617
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
618 if (fclose (tmpfil) != 0)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
619 fubar = 1;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
620 Lstream_close (istr);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
621 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
622 Lstream_close (costr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
623 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
624 Lstream_close (ostr);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
625
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
626 UNGCPRO;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
627 Lstream_delete (istr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
628 Lstream_delete (ostr);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
629 #ifdef FILE_CODING
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
630 Lstream_delete (costr);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
631 #endif
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
632
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
633 if (fubar)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
634 report_file_error ("Writing temp file",
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
635 list1 (build_string (filename_out)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
637 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 /* cursor functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 not, signal an error. INSTANTIATOR is only used in the error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 message. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 unsigned int best_width, best_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 width, height, &best_width, &best_height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 /* this means that an X error of some sort occurred (we trap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 these so they're not fatal). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 if (width > best_width || height > best_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 error_with_frob (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 "pointer too large (%dx%d): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 "server requires %dx%d or smaller",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 width, height, best_width, best_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 Lisp_Object *background, XColor *xfg, XColor *xbg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 *foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 Fmake_color_instance (*foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 if (COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 xfg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 xfg->red = xfg->green = xfg->blue = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
682
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 *background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 Fmake_color_instance (*background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 if (COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 xbg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 xbg->red = xbg->green = xbg->blue = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 XColor xfg, xbg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 XIMAGE_INSTANCE_X_CURSOR (image_instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 /* color pixmap functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 /* Initialize an image instance from an XImage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 DEST_MASK specifies the mask of allowed image types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 PIXELS and NPIXELS specify an array of pixels that are used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 the image. These need to be kept around for the duration of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 image. When the image instance is freed, XFreeColors() will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 automatically be called on all the pixels specified here; thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 you should have allocated the pixels yourself using XAllocColor()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 or the like. The array passed in is used directly without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 being copied, so it should be heap data created with xmalloc().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 It will be freed using xfree() when the image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 destroyed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 If this fails, signal an error. INSTANTIATOR is only used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 in the error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 #### This should be able to handle conversion into `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 Use the same code as for `xpm'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
740 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 XImage *ximage,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 int dest_mask,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
743 Colormap cmap,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 unsigned long *pixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 int npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 Drawable d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
758 d = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 IMAGE_COLOR_PIXMAP_MASK);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
763
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 pixmap = XCreatePixmap (dpy, d, ximage->width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 ximage->height, ximage->depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 if (!pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 signal_simple_error ("Unable to create pixmap", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 gc = XCreateGC (dpy, pixmap, 0, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 if (!gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 XFreePixmap (dpy, pixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 signal_simple_error ("Unable to create GC", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
775
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 ximage->width, ximage->height);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
778
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
781 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 find_keyword_in_vector (instantiator, Q_file);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
785
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
787 IMAGE_INSTANCE_X_MASK (ii) = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
791 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
796 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
797 x_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
798 int width, int height,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
799 unsigned char *eimage,
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
800 int dest_mask,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
801 Lisp_Object instantiator,
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
802 Lisp_Object domain)
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
803 {
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
804 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
805 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
806 unsigned long *pixtbl = NULL;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
807 int npixels = 0;
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
808 XImage* ximage;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
809
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
810 ximage = convert_EImage_to_XImage (device, width, height, eimage,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
811 &pixtbl, &npixels);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
812 if (!ximage)
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
813 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
814 if (pixtbl) xfree (pixtbl);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
815 signal_image_error("EImage to XImage conversion failed", instantiator);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
816 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 392
diff changeset
817
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
818 /* Now create the pixmap and set up the image instance */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
819 init_image_instance_from_x_image (ii, ximage, dest_mask,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
820 cmap, pixtbl, npixels,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
821 instantiator);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 392
diff changeset
822
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
823 if (ximage)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
824 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
825 if (ximage->data)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
826 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
827 xfree (ximage->data);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
828 ximage->data = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
829 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
830 XDestroyImage (ximage);
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
831 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
832 }
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
833
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
834 int read_bitmap_data_from_file (CONST char *filename, unsigned int *width,
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
835 unsigned int *height, unsigned char **datap,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
836 int *x_hot, int *y_hot)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
838 return XmuReadBitmapDataFromFile (filename, width, height,
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
839 datap, x_hot, y_hot);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 /* Given inline data for a mono pixmap, create and return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 corresponding X object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 static Pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 /* Note that data is in ext-format! */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
848 CONST Extbyte *bits)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
850 return XCreatePixmapFromBitmapData (DEVICE_X_DISPLAY (XDEVICE(device)),
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
851 XtWindow (DEVICE_XT_APP_SHELL (XDEVICE (device))),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 /* Given inline data for a mono pixmap, initialize the given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 image instance accordingly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
860 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 /* Note that data is in ext-format! */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
863 CONST char *bits,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 Pixmap mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 Lisp_Object mask_filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 Screen *scr;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
876 Drawable draw;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
883 draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (device)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
905 x_initialize_pixmap_image_instance (ii, type);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
922 Dimension d = DEVICE_X_DEPTH (XDEVICE(device));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 unsigned long fg = BlackPixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 unsigned long bg = WhitePixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 Fmake_color_instance (foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 if (COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 if (!NILP (background) && !COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 Fmake_color_instance (background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 if (COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 /* We used to duplicate the pixels using XAllocColor(), to protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 against their getting freed. Just as easy to just store the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 color instances here and GC-protect them, so this doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 IMAGE_INSTANCE_X_PIXMAP (ii) =
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
949 XCreatePixmapFromBitmapData (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 fg, bg, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 case IMAGE_POINTER:
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
957 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 XColor fg_color, bg_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 Pixmap source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 check_pointer_sizes (scr, width, height, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 source =
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
964 XCreatePixmapFromBitmapData (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 generate_cursor_fg_bg (device, &foreground, &background,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 &fg_color, &bg_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 find_keyword_in_vector (instantiator, Q_hotspot_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 find_keyword_in_vector (instantiator, Q_hotspot_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (dpy, source, mask, &fg_color, &bg_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 int dest_mask, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 /* Note that data is in ext-format! */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1001 CONST char *bits)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1005 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 Pixmap mask = 0;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1007 CONST char *gcc_may_you_rot_in_hell;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 if (!NILP (mask_data))
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1010 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1011 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1012 gcc_may_you_rot_in_hell);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1013 mask =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1014 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1015 XINT (XCAR (mask_data)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1016 XINT (XCAR (XCDR (mask_data))),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1017 (CONST unsigned char *)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1018 gcc_may_you_rot_in_hell);
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
1019 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 init_image_instance_from_xbm_inline (ii, width, height, bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 instantiator, pointer_fg, pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 dest_mask, mask, mask_file);
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 /* Instantiate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 static void
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
1029 x_xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
1030 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
1031 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1034 CONST char *gcc_go_home;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1038 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1039 gcc_go_home);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 pointer_bg, dest_mask, XINT (XCAR (data)),
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1043 XINT (XCAR (XCDR (data))), gcc_go_home);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 * XPM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 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
1054 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 #if (XpmVersion >= 3) || defined(XpmExactColors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 # define XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 #ifndef XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 Your version of XPM is too old. You cannot compile with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 Upgrade to version 3.2g or better or compile with --with-xpm=no.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 #endif /* !XPM_DOES_BUFFERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 static XpmColorSymbol *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1066 Lisp_Object domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 Lisp_Object color_symbol_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 /* This function can GC */
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1070 Display *dpy = DEVICE_X_DISPLAY (XDEVICE(device));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1071 Colormap cmap = DEVICE_X_COLORMAP (XDEVICE(device));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 Lisp_Object results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 XpmColorSymbol *symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 GCPRO2 (results, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 /* We built up results to be (("name" . #<color>) ...) so that if an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 error happens we don't lose any malloc()ed data, or more importantly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 leave any pixels allocated in the server. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 LIST_LOOP (rest, color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 Lisp_Object cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 Lisp_Object name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 Lisp_Object value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 value =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 Fmake_color_instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 assert (COLOR_SPECIFIERP (value));
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1099 value = Fspecifier_instance (value, domain, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 results = noseeum_cons (noseeum_cons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 if (i == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1110 symbols = xnew_array (XpmColorSymbol, i);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 xpmattrs->valuemask |= XpmColorSymbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 xpmattrs->colorsymbols = symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 xpmattrs->numsymbols = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 while (--i >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 Lisp_Object cons = XCAR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 /* 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
1120 the pixel we were passed is later freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 if (! XAllocColor (dpy, cmap, &color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 abort (); /* it must be allocable since we're just duplicating it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1124 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 symbols [i].pixel = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 symbols [i].value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 cons = results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 results = XCDR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 return symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 }
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 xpm_free (XpmAttributes *xpmattrs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 /* Could conceivably lose if XpmXXX returned an error without first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 initializing this structure, if we didn't know that initializing it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 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
1141 multiple times, since it zeros slots as it frees them...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 XpmFreeAttributes (xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1145 static void
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1146 x_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1147 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1148 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 /* This function can GC */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1151 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1152 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 Screen *xs;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1156 Colormap cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1157 int depth;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1158 Visual *visual;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 XpmAttributes xpmattrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 XpmColorSymbol *color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 Q_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 int force_mono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 force_mono = (type != IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1188 #if 1
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1189 /* Although I haven't found it documented yet, it appears that pointers are
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1190 always colored via the default window colormap... Sigh. */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1191 if (type == IMAGE_POINTER)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1192 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1193 cmap = DefaultColormap(dpy, DefaultScreen(dpy));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1194 depth = DefaultDepthOfScreen (xs);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1195 visual = DefaultVisualOfScreen (xs);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1196 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1197 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1198 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1199 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1200 depth = DEVICE_X_DEPTH (XDEVICE(device));
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1201 visual = DEVICE_X_VISUAL (XDEVICE(device));
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1202 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1203 #else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1204 cmap = DEVICE_X_COLORMAP (XDEVICE(device));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1205 depth = DEVICE_X_DEPTH (XDEVICE(device));
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1206 visual = DEVICE_X_VISUAL (XDEVICE(device));
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1207 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 243
diff changeset
1208
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1209 x_initialize_pixmap_image_instance (ii, type);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1215 xzero (xpmattrs); /* want XpmInitAttributes() */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 xpmattrs.valuemask = XpmReturnPixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 /* Without this, we get a 1-bit version of the color image, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 isn't quite right. With this, we get the mono image, which might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 be very different looking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 xpmattrs.valuemask |= XpmColorKey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 xpmattrs.color_key = XPM_MONO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 xpmattrs.depth = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 xpmattrs.valuemask |= XpmDepth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 xpmattrs.closeness = 65535;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 xpmattrs.valuemask |= XpmCloseness;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1231 xpmattrs.depth = depth;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1232 xpmattrs.valuemask |= XpmDepth;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1233 xpmattrs.visual = visual;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1234 xpmattrs.valuemask |= XpmVisual;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1235 xpmattrs.colormap = cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1236 xpmattrs.valuemask |= XpmColormap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1238
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1239 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 color_symbol_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 result = XpmCreatePixmapFromBuffer (dpy,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1243 XtWindow(DEVICE_XT_APP_SHELL (XDEVICE(device))),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1244 (char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 &pixmap, &mask, &xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 if (color_symbols)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 xfree (color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 xpmattrs.numsymbols = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 case XpmSuccess:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 xpm_free (&xpmattrs);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1261 signal_image_error ("invalid XPM data", data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 case XpmColorFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 case XpmColorError:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 force_mono = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 signal_double_file_error ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 "out of memory", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 signal_double_file_error_2 ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 make_int (result), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 w = xpmattrs.width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 h = xpmattrs.height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 int npixels = xpmattrs.npixels;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1308 Pixel *pixels;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 if (npixels != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1312 pixels = xnew_array (Pixel, npixels);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1316 pixels = NULL;
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 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1319 IMAGE_INSTANCE_X_MASK (ii) = mask;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1320 IMAGE_INSTANCE_X_COLORMAP (ii) = cmap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1336 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 int npixels = xpmattrs.npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 Pixel *pixels = xpmattrs.pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 int xhot = 0, yhot = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 xhot = xpmattrs.x_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 yhot = xpmattrs.y_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 check_pointer_sizes (xs, w, h, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 /* If the loaded pixmap has colors allocated (meaning it came from an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 XPM file), then use those as the default colors for the cursor we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 create. Otherwise, default to pointer_fg and pointer_bg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 if (npixels >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 /* With an XBM file, it's obvious which bit is foreground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 and which is background, or rather, it's implicit: in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 an XBM file, a 1 bit is foreground, and a 0 bit is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 background.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1370
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 XCreatePixmapCursor() assumes this property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 pixmap it is called with as well; the `foreground'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 color argument is used for the 1 bits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 With an XPM file, it's tricker, since the elements of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 the pixmap don't represent FG and BG, but are actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 pixel values. So we need to figure out which of those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 pixels is the foreground color and which is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 background. We do it by comparing RGB and assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 that the darker color is the foreground. This works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 with the result of xbmtopbm|ppmtoxpm, at least.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1382
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 It might be nice if there was some way to tag the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 colors in the XPM file with whether they are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 foreground - perhaps with logical color names somehow?
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1386
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 Once we have decided which color is the foreground, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 need to ensure that that color corresponds to a `1' bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 in the Pixmap. The XPM library wrote into the (1-bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 pixmap with XPutPixel, which will ignore all but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 least significant bit.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1392
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 This means that a 1 bit in the image corresponds to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 `fg' only if `fg.pixel' is odd.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1395
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (This also means that the image will be all the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 color if both `fg' and `bg' are odd or even, but we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 safely assume that that won't happen if the XPM file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 sensible I think.)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1400
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 The desired result is that the image use `1' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 represent the foreground color, and `0' to represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 the background color. So, we may need to invert the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 image to accomplish this; we invert if fg is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 odd. (Remember that WhitePixel and BlackPixel are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 necessarily 1 and 0 respectively, though I think it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 might be safe to assume that one of them is always 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 and the other is always 0. We also pretty much need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 assume that one is even and the other is odd.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 fg.pixel = pixels[0]; /* pick a pixel at random. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 bg.pixel = fg.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 bg.pixel = pixels[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 if (fg.pixel != bg.pixel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 /* If (fg.pixel == bg.pixel) then probably something has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 gone wrong, but I don't think signalling an error would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 be appropriate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1425 XQueryColor (dpy, cmap, &fg);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1426 XQueryColor (dpy, cmap, &bg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 /* If the foreground is lighter than the background, swap them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (This occurs semi-randomly, depending on the ordering of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 color list in the XPM file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 + (fg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 + (bg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 if (fg_total > bg_total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 XColor swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 swap = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 fg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 bg = swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1445
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 (This occurs (only?) on servers with Black=0, White=1.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 if ((fg.pixel & 1) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 gcv.function = GXxor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 gcv.foreground = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
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 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1479
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 #endif /* HAVE_XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 * X-Face *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 #if defined(EXTERN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 /* This is about to get redefined! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 #undef EXTERN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 /* We have to define SYSV32 so that compface.h includes string.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 instead of strings.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 #define SYSV32
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1498 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1499 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1500 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 #include <compface.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1502 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1503 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1504 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 /* JMP_BUF cannot be used here because if it doesn't get defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 to jmp_buf we end up with a conflicting type error with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 definition in compface.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 extern jmp_buf comp_env;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 #undef SYSV32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 static void
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
1512 x_xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
1513 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
1514 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 int i, stattis;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1518 char *p, *bits, *bp;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1519 CONST char * volatile emsg = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1520 CONST char * volatile dstring;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1524 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 if ((p = strchr (dstring, ':')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 dstring = p + 1;
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 /* 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
1532 if (!(stattis = setjmp (comp_env)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 UnCompAll ((char *) dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 UnGenFace ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 switch (stattis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 case -2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 emsg = "uncompface: internal error";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 case -1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 emsg = "uncompface: insufficient or invalid data";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 emsg = "uncompface: excess data ignored";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 if (emsg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 signal_simple_error_2 (emsg, data, Qimage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 bp = bits = (char *) alloca (PIXELS / 8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 /* the compface library exports char F[], which uses a single byte per
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 pixel to represent a 48x48 bitmap. Yuck. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 for (i = 0, p = F; i < (PIXELS / 8); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 int n, b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 /* reverse the bit order of each byte... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 for (b = n = 0; b < 8; ++b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 n |= ((*p++) << b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 *bp++ = (char) n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 pointer_bg, dest_mask, 48, 48, bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 #endif /* HAVE_XFACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 /**********************************************************************
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1577 * Autodetect *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1581 autodetect_validate (Lisp_Object instantiator)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 static Lisp_Object
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1587 autodetect_normalize (Lisp_Object instantiator,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1588 Lisp_Object console_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 Lisp_Object filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 Lisp_Object data = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 GCPRO3 (filename, data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 RETURN_UNGCPRO (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 filename = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 if (!NILP (filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 /* #### Apparently some versions of XpmReadFileToData, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 called by pixmap_to_lisp_data, don't return an error value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 if the given file is not a valid XPM file. Instead, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 just seg fault. It is definitely caused by passing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 bitmap. To try and avoid this we check for bitmaps first. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1612
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 if (xhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 if (yhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 280
diff changeset
1627 alist = xbm_mask_file_munging (alist, filename, Qnil, console_type);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 data = pixmap_to_lisp_data (filename, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 alist = Fcons (Fcons (Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 evaluate_xpm_color_symbols ()),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 /* If we couldn't convert it, just put it back as it is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 We might try to further frob it later as a cursor-font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 specification. (We can't do that now because we don't know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 what dest-types it's going to be instantiated into.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 {
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1661 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 static int
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1668 autodetect_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1670 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1671 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1672 IMAGE_COLOR_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1673 IMAGE_POINTER_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1674 IMAGE_TEXT_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1678 autodetect_instantiate (Lisp_Object image_instance,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1679 Lisp_Object instantiator,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1680 Lisp_Object pointer_fg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1681 Lisp_Object pointer_bg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1682 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 int is_cursor_font = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 GCPRO3 (data, alist, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1695 CONST char *name_ext;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1696 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 if (XmuCursorNameToIndex (name_ext) != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 result = alist_to_tagged_vector (Qcursor_font, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 is_cursor_font = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 if (!is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 result = alist_to_tagged_vector (Qstring, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 if (is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 cursor_font_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1710 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 string_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1713 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 * Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 /* XmuCvtStringToCursor is bogus in the following ways:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 - 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
1732 sometimes return a "success" value, after triggering a BadPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 error. It then gives you a cursor that will itself generate BadCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 errors. So we install this error handler to catch/notice the X error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 and take that as meaning "couldn't convert."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 - 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
1738 an error message on stderr. You can't make it not do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 objects, or XPM files, or $XBMLANGPATH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 static int XLoadFont_got_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 XLoadFont_got_error = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 static Font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 safe_XLoadFont (Display *dpy, char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 Font font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 int (*old_handler) (Display *, XErrorEvent *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 XLoadFont_got_error = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 old_handler = XSetErrorHandler (XLoadFont_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 font = XLoadFont (dpy, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 XSetErrorHandler (old_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 if (XLoadFont_got_error) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 return font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1771 font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1779 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1783 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 Font source, mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 int source_char, mask_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 if (!STRINGP (data) ||
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1799 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 signal_simple_error ("Invalid font-glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1815 count = sscanf ((char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 "FONT %s %d %s %d %c",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 source_name, &source_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 mask_name, &mask_char, &dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 /* Allow "%s %d %d" as well... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 count = 4, mask_name[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 if (count != 2 && count != 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 signal_simple_error ("invalid cursor specification", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 source = safe_XLoadFont (dpy, source_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 if (! source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 signal_simple_error_2 ("couldn't load font",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 build_string (source_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 if (count == 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 else if (!mask_name[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 mask = source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 mask = safe_XLoadFont (dpy, mask_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 /* continuable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 build_string (mask_name), data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 mask_char = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1847 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 XUnloadFont (dpy, source);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 if (mask && mask != source) XUnloadFont (dpy, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 * Cursor-Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 cursor_font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1869 cursor_font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1877 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1881 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 int i;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1885 CONST char *name_ext;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1896 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 signal_simple_error ("Unrecognized cursor-font name", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1900 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 maybe_recolor_cursor (image_instance, foreground, background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 x_colorize_image_instance (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 Lisp_Object foreground, Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1915 struct Lisp_Image_Instance *p;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 p = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 /* Make sure there aren't two pointers to the same mask, causing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 it to get freed twice. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1925 IMAGE_INSTANCE_X_MASK (p) = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1934 Drawable draw = XtWindow(DEVICE_XT_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1935 Dimension d = DEVICE_X_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1936 Pixmap new = XCreatePixmap (dpy, draw,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 gcv.foreground = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 gcv.background = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 0, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 IMAGE_INSTANCE_X_PIXMAP (p) = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 }
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 /************************************************************************/
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1962 /* subwindow and widget support */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1965 /* unmap the image if it is a widget. This is used by redisplay via
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1966 redisplay_unmap_subwindows */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1967 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1968 x_unmap_subwindow (struct Lisp_Image_Instance *p)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1970 XUnmapWindow (DisplayOfScreen (IMAGE_INSTANCE_X_SUBWINDOW_SCREEN (p)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1971 IMAGE_INSTANCE_X_SUBWINDOW_ID (p));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1974 /* map the subwindow. This is used by redisplay via
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1975 redisplay_output_subwindow */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1977 x_map_subwindow (struct Lisp_Image_Instance *p, int x, int y)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1979 XMapWindow (DisplayOfScreen (IMAGE_INSTANCE_X_SUBWINDOW_SCREEN (p)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1980 IMAGE_INSTANCE_X_SUBWINDOW_ID (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1981 XMoveWindow (DisplayOfScreen (IMAGE_INSTANCE_X_SUBWINDOW_SCREEN (p)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1982 IMAGE_INSTANCE_X_SUBWINDOW_ID (p), x, y);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1985 /* instantiate and x type subwindow */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1986 static void
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1987 x_subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1988 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1989 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1991 /* This function can GC */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1992 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1993 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1994 Lisp_Object frame = FW_FRAME (domain);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1995 struct frame* f = XFRAME (frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 Screen *xs;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1998 Window pw, win;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 XSetWindowAttributes xswa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 Mask valueMask = 0;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2001 unsigned int w = IMAGE_INSTANCE_SUBWINDOW_WIDTH (ii),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2002 h = IMAGE_INSTANCE_SUBWINDOW_HEIGHT (ii);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2004 if (!DEVICE_X_P (XDEVICE (device)))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2005 signal_simple_error ("Not an X device", device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2007 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2008 xs = DefaultScreenOfDisplay (dpy);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2010 if (dest_mask & IMAGE_SUBWINDOW_MASK)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2011 IMAGE_INSTANCE_TYPE (ii) = IMAGE_SUBWINDOW;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2012 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2013 incompatible_image_types (instantiator, dest_mask,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2014 IMAGE_SUBWINDOW_MASK);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2015
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2018 ii->data = xnew_and_zero (struct x_subwindow_data);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2019
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2020 IMAGE_INSTANCE_X_SUBWINDOW_PARENT (ii) = pw;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2021 IMAGE_INSTANCE_X_SUBWINDOW_SCREEN (ii) = xs;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2023 xswa.backing_store = Always;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2024 valueMask |= CWBackingStore;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2025 xswa.colormap = DefaultColormapOfScreen (xs);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2026 valueMask |= CWColormap;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2027
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2028 win = XCreateWindow (dpy, pw, 0, 0, w, h, 0, CopyFromParent,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2029 InputOutput, CopyFromParent, valueMask,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2030 &xswa);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2031
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2032 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = (void*)win;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2035 #if 0
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2036 /* #### Should this function exist? If there's any doubt I'm not implementing it --andyp */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2037 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2040 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2041 (subwindow, property, data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 Atom property_atom;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2044 struct Lisp_Subwindow *sw;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 CHECK_STRING (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 (FRAME_DEVICE (XFRAME (sw->frame))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2055 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2057 PropModeReplace,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2058 XSTRING_DATA (data),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2059 XSTRING_LENGTH (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2061 return property;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 }
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2063 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2065 static void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2066 x_resize_subwindow (struct Lisp_Image_Instance* ii, int w, int h)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 392
diff changeset
2067 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2068 XResizeWindow (DisplayOfScreen (IMAGE_INSTANCE_X_SUBWINDOW_SCREEN (ii)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2069 IMAGE_INSTANCE_X_SUBWINDOW_ID (ii),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2070 w, h);
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2071 }
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2072
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 syms_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2081 #if 0
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2082 DEFSUBR (Fchange_subwindow_property);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
2083 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 console_type_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 /* image methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 CONSOLE_HAS_METHOD (x, print_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 CONSOLE_HAS_METHOD (x, finalize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 CONSOLE_HAS_METHOD (x, image_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 CONSOLE_HAS_METHOD (x, image_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 CONSOLE_HAS_METHOD (x, colorize_image_instance);
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2096 CONSOLE_HAS_METHOD (x, init_image_instance_from_eimage);
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
2097 CONSOLE_HAS_METHOD (x, locate_pixmap_file);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2098 CONSOLE_HAS_METHOD (x, unmap_subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2099 CONSOLE_HAS_METHOD (x, map_subwindow);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2100 CONSOLE_HAS_METHOD (x, resize_subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 image_instantiator_format_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2106 #ifdef HAVE_XPM
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2107 INITIALIZE_DEVICE_IIFORMAT (x, xpm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2108 IIFORMAT_HAS_DEVMETHOD (x, xpm, instantiate);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2109 #endif
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2110 INITIALIZE_DEVICE_IIFORMAT (x, xbm);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2111 IIFORMAT_HAS_DEVMETHOD (x, xbm, instantiate);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2112
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2113 INITIALIZE_DEVICE_IIFORMAT (x, subwindow);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
2114 IIFORMAT_HAS_DEVMETHOD (x, subwindow, instantiate);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2115
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 IIFORMAT_HAS_METHOD (cursor_font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 IIFORMAT_HAS_METHOD (font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 IIFORMAT_HAS_METHOD (font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 IIFORMAT_HAS_METHOD (font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 #ifdef HAVE_XFACE
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2137 INITIALIZE_DEVICE_IIFORMAT (x, xface);
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
2138 IIFORMAT_HAS_DEVMETHOD (x, xface, instantiate);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2139 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2141 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2142 "autodetect");
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2143
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2144 IIFORMAT_HAS_METHOD (autodetect, validate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2145 IIFORMAT_HAS_METHOD (autodetect, normalize);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2146 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2147 IIFORMAT_HAS_METHOD (autodetect, instantiate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2148
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2149 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 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
2157 If nil, this is initialized from the "*bitmapFilePath" resource.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 This is used by the `make-image-instance' function (however, note that if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 the environment variable XBMLANGPATH is set, it is consulted first).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 Vx_bitmap_file_path = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 complex_vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 #define BUILD_GLYPH_INST(variable, name) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 Fadd_spec_to_specifier \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 (GLYPH_IMAGE (XGLYPH (variable)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 vector3 (Qxbm, Q_data, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 list3 (make_int (name##_width), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 make_int (name##_height), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 make_ext_string (name##_bits, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 sizeof (name##_bits), \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2175 FORMAT_BINARY))), \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 Qglobal, Qx, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2181 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 #undef BUILD_GLYPH_INST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 }