annotate src/glyphs-x.c @ 357:4711e16a8e49 r21-1-8

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